diff --git a/corpus/expr/binary-expr.nu b/corpus/expr/binary-expr.nu index 73f738a..883994c 100644 --- a/corpus/expr/binary-expr.nu +++ b/corpus/expr/binary-expr.nu @@ -29,3 +29,18 @@ expr-002-preceedence (expr_binary (val_number) (val_number)))))) + +==== +expr-003-rhs-unquoted +==== + +'foo' == bar + +---- + +(nu_script + (pipeline + (pipe_element + (expr_binary + (val_string) + (val_string))))) diff --git a/grammar.js b/grammar.js index 885ecaf..85a2161 100644 --- a/grammar.js +++ b/grammar.js @@ -634,7 +634,10 @@ module.exports = grammar({ seq( field("lhs", $._expression), field("opr", opr), - field("rhs", $._expression), + field( + "rhs", + choice($._expression, alias($.unquoted, $.val_string)), + ), ), ), ), diff --git a/src/grammar.json b/src/grammar.json index 58cf326..4658976 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5525,8 +5525,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5575,8 +5589,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5617,8 +5645,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5659,8 +5701,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5717,8 +5773,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5767,8 +5837,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5809,8 +5893,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5842,8 +5940,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5875,8 +5987,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5908,8 +6034,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5941,8 +6081,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -5974,8 +6128,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] @@ -6007,8 +6175,22 @@ "type": "FIELD", "name": "rhs", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] } } ] diff --git a/src/parser.c b/src/parser.c index 4585dd7..07fb3a0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3870 -#define LARGE_STATE_COUNT 1055 +#define STATE_COUNT 4095 +#define LARGE_STATE_COUNT 1139 #define SYMBOL_COUNT 435 #define ALIAS_COUNT 0 #define TOKEN_COUNT 269 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 68 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 168 +#define PRODUCTION_ID_COUNT 169 enum { sym_identifier = 1, @@ -3303,94 +3303,95 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [77] = {.index = 129, .length = 2}, [78] = {.index = 131, .length = 6}, [79] = {.index = 137, .length = 3}, - [80] = {.index = 140, .length = 2}, - [81] = {.index = 142, .length = 1}, - [82] = {.index = 143, .length = 4}, - [83] = {.index = 147, .length = 4}, - [84] = {.index = 151, .length = 2}, - [85] = {.index = 153, .length = 4}, - [86] = {.index = 157, .length = 4}, - [87] = {.index = 161, .length = 1}, - [88] = {.index = 162, .length = 1}, - [89] = {.index = 163, .length = 1}, - [90] = {.index = 164, .length = 5}, - [91] = {.index = 169, .length = 5}, - [92] = {.index = 174, .length = 3}, - [93] = {.index = 177, .length = 2}, - [94] = {.index = 179, .length = 1}, - [95] = {.index = 180, .length = 4}, - [96] = {.index = 184, .length = 1}, - [97] = {.index = 185, .length = 2}, - [98] = {.index = 187, .length = 1}, - [99] = {.index = 188, .length = 2}, - [100] = {.index = 190, .length = 2}, + [80] = {.index = 137, .length = 3}, + [81] = {.index = 140, .length = 2}, + [82] = {.index = 142, .length = 1}, + [83] = {.index = 143, .length = 4}, + [84] = {.index = 147, .length = 4}, + [85] = {.index = 151, .length = 2}, + [86] = {.index = 153, .length = 4}, + [87] = {.index = 157, .length = 4}, + [88] = {.index = 161, .length = 1}, + [89] = {.index = 162, .length = 1}, + [90] = {.index = 163, .length = 1}, + [91] = {.index = 164, .length = 5}, + [92] = {.index = 169, .length = 5}, + [93] = {.index = 174, .length = 3}, + [94] = {.index = 177, .length = 2}, + [95] = {.index = 179, .length = 1}, + [96] = {.index = 180, .length = 4}, + [97] = {.index = 184, .length = 1}, + [98] = {.index = 185, .length = 2}, + [99] = {.index = 187, .length = 1}, + [100] = {.index = 188, .length = 2}, [101] = {.index = 190, .length = 2}, - [102] = {.index = 192, .length = 1}, - [103] = {.index = 193, .length = 2}, - [104] = {.index = 195, .length = 2}, - [105] = {.index = 197, .length = 3}, - [106] = {.index = 200, .length = 2}, - [107] = {.index = 202, .length = 1}, - [108] = {.index = 203, .length = 6}, - [109] = {.index = 137, .length = 3}, - [110] = {.index = 209, .length = 3}, - [111] = {.index = 203, .length = 6}, - [112] = {.index = 209, .length = 3}, - [113] = {.index = 212, .length = 2}, - [114] = {.index = 214, .length = 1}, - [115] = {.index = 215, .length = 2}, - [116] = {.index = 217, .length = 2}, - [117] = {.index = 219, .length = 4}, - [118] = {.index = 223, .length = 5}, - [119] = {.index = 228, .length = 5}, - [120] = {.index = 233, .length = 2}, - [121] = {.index = 235, .length = 5}, - [122] = {.index = 240, .length = 6}, - [123] = {.index = 246, .length = 3}, - [124] = {.index = 249, .length = 6}, - [125] = {.index = 255, .length = 3}, - [126] = {.index = 258, .length = 2}, - [127] = {.index = 260, .length = 5}, - [128] = {.index = 265, .length = 3}, - [129] = {.index = 268, .length = 3}, - [130] = {.index = 271, .length = 1}, - [131] = {.index = 272, .length = 4}, - [132] = {.index = 276, .length = 7}, - [133] = {.index = 283, .length = 4}, - [134] = {.index = 276, .length = 7}, - [135] = {.index = 283, .length = 4}, - [136] = {.index = 287, .length = 6}, - [137] = {.index = 293, .length = 1}, + [102] = {.index = 190, .length = 2}, + [103] = {.index = 192, .length = 1}, + [104] = {.index = 193, .length = 2}, + [105] = {.index = 195, .length = 2}, + [106] = {.index = 197, .length = 3}, + [107] = {.index = 200, .length = 2}, + [108] = {.index = 202, .length = 1}, + [109] = {.index = 203, .length = 6}, + [110] = {.index = 137, .length = 3}, + [111] = {.index = 209, .length = 3}, + [112] = {.index = 203, .length = 6}, + [113] = {.index = 209, .length = 3}, + [114] = {.index = 212, .length = 2}, + [115] = {.index = 214, .length = 1}, + [116] = {.index = 215, .length = 2}, + [117] = {.index = 217, .length = 2}, + [118] = {.index = 219, .length = 4}, + [119] = {.index = 223, .length = 5}, + [120] = {.index = 228, .length = 5}, + [121] = {.index = 233, .length = 2}, + [122] = {.index = 235, .length = 5}, + [123] = {.index = 240, .length = 6}, + [124] = {.index = 246, .length = 3}, + [125] = {.index = 249, .length = 6}, + [126] = {.index = 255, .length = 3}, + [127] = {.index = 258, .length = 2}, + [128] = {.index = 260, .length = 5}, + [129] = {.index = 265, .length = 3}, + [130] = {.index = 268, .length = 3}, + [131] = {.index = 271, .length = 1}, + [132] = {.index = 272, .length = 4}, + [133] = {.index = 276, .length = 7}, + [134] = {.index = 283, .length = 4}, + [135] = {.index = 276, .length = 7}, + [136] = {.index = 283, .length = 4}, + [137] = {.index = 287, .length = 6}, [138] = {.index = 293, .length = 1}, - [139] = {.index = 294, .length = 3}, - [140] = {.index = 297, .length = 1}, - [141] = {.index = 298, .length = 5}, - [142] = {.index = 303, .length = 5}, - [143] = {.index = 308, .length = 5}, - [144] = {.index = 313, .length = 2}, - [145] = {.index = 315, .length = 2}, - [146] = {.index = 317, .length = 4}, - [147] = {.index = 321, .length = 4}, - [148] = {.index = 325, .length = 8}, - [149] = {.index = 333, .length = 5}, - [150] = {.index = 325, .length = 8}, - [151] = {.index = 333, .length = 5}, - [152] = {.index = 338, .length = 1}, - [153] = {.index = 339, .length = 2}, - [154] = {.index = 341, .length = 1}, - [155] = {.index = 342, .length = 2}, - [156] = {.index = 344, .length = 2}, - [157] = {.index = 346, .length = 5}, - [158] = {.index = 351, .length = 5}, - [159] = {.index = 356, .length = 5}, - [160] = {.index = 361, .length = 5}, - [161] = {.index = 366, .length = 4}, - [162] = {.index = 370, .length = 5}, - [163] = {.index = 375, .length = 5}, - [164] = {.index = 380, .length = 5}, - [165] = {.index = 385, .length = 5}, - [166] = {.index = 390, .length = 6}, - [167] = {.index = 396, .length = 6}, + [139] = {.index = 293, .length = 1}, + [140] = {.index = 294, .length = 3}, + [141] = {.index = 297, .length = 1}, + [142] = {.index = 298, .length = 5}, + [143] = {.index = 303, .length = 5}, + [144] = {.index = 308, .length = 5}, + [145] = {.index = 313, .length = 2}, + [146] = {.index = 315, .length = 2}, + [147] = {.index = 317, .length = 4}, + [148] = {.index = 321, .length = 4}, + [149] = {.index = 325, .length = 8}, + [150] = {.index = 333, .length = 5}, + [151] = {.index = 325, .length = 8}, + [152] = {.index = 333, .length = 5}, + [153] = {.index = 338, .length = 1}, + [154] = {.index = 339, .length = 2}, + [155] = {.index = 341, .length = 1}, + [156] = {.index = 342, .length = 2}, + [157] = {.index = 344, .length = 2}, + [158] = {.index = 346, .length = 5}, + [159] = {.index = 351, .length = 5}, + [160] = {.index = 356, .length = 5}, + [161] = {.index = 361, .length = 5}, + [162] = {.index = 366, .length = 4}, + [163] = {.index = 370, .length = 5}, + [164] = {.index = 375, .length = 5}, + [165] = {.index = 380, .length = 5}, + [166] = {.index = 385, .length = 5}, + [167] = {.index = 390, .length = 6}, + [168] = {.index = 396, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3977,11 +3978,11 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [73] = { [0] = sym_val_string, }, - [100] = { + [80] = { [2] = sym_val_string, }, - [108] = { - [0] = sym_val_string, + [101] = { + [2] = sym_val_string, }, [109] = { [0] = sym_val_string, @@ -3989,19 +3990,22 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [110] = { [0] = sym_val_string, }, - [132] = { + [111] = { [0] = sym_val_string, }, [133] = { [0] = sym_val_string, }, - [138] = { + [134] = { + [0] = sym_val_string, + }, + [139] = { [0] = sym_identifier, }, - [148] = { + [149] = { [0] = sym_val_string, }, - [149] = { + [150] = { [0] = sym_val_string, }, }; @@ -4021,16 +4025,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 3, + [4] = 3, + [5] = 2, [6] = 2, [7] = 3, - [8] = 3, - [9] = 2, + [8] = 2, + [9] = 3, [10] = 2, [11] = 3, - [12] = 3, - [13] = 2, + [12] = 2, + [13] = 3, [14] = 2, [15] = 3, [16] = 2, @@ -4046,109 +4050,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [26] = 20, [27] = 20, [28] = 28, - [29] = 29, + [29] = 28, [30] = 28, - [31] = 28, + [31] = 31, [32] = 28, [33] = 28, [34] = 28, [35] = 28, [36] = 28, [37] = 37, - [38] = 38, + [38] = 37, [39] = 39, - [40] = 38, - [41] = 37, - [42] = 39, - [43] = 38, + [40] = 37, + [41] = 41, + [42] = 41, + [43] = 39, [44] = 37, - [45] = 38, + [45] = 41, [46] = 39, - [47] = 38, - [48] = 37, + [47] = 37, + [48] = 41, [49] = 39, - [50] = 38, - [51] = 37, + [50] = 37, + [51] = 41, [52] = 39, [53] = 37, - [54] = 39, - [55] = 37, - [56] = 39, - [57] = 39, - [58] = 38, + [54] = 41, + [55] = 39, + [56] = 37, + [57] = 41, + [58] = 39, [59] = 37, - [60] = 39, - [61] = 38, + [60] = 41, + [61] = 39, [62] = 37, - [63] = 39, + [63] = 41, [64] = 39, - [65] = 37, - [66] = 37, - [67] = 38, - [68] = 37, + [65] = 39, + [66] = 41, + [67] = 41, + [68] = 68, [69] = 39, [70] = 37, - [71] = 71, - [72] = 39, - [73] = 38, - [74] = 37, - [75] = 39, - [76] = 38, - [77] = 37, + [71] = 41, + [72] = 37, + [73] = 39, + [74] = 41, + [75] = 37, + [76] = 39, + [77] = 41, [78] = 37, - [79] = 39, - [80] = 38, - [81] = 37, + [79] = 41, + [80] = 37, + [81] = 39, [82] = 39, - [83] = 37, - [84] = 37, + [83] = 41, + [84] = 41, [85] = 39, - [86] = 37, - [87] = 39, - [88] = 71, - [89] = 39, - [90] = 38, - [91] = 37, - [92] = 38, - [93] = 38, - [94] = 37, - [95] = 37, + [86] = 41, + [87] = 37, + [88] = 39, + [89] = 41, + [90] = 39, + [91] = 41, + [92] = 39, + [93] = 68, + [94] = 41, + [95] = 41, [96] = 39, [97] = 39, - [98] = 39, - [99] = 38, - [100] = 37, - [101] = 39, - [102] = 37, + [98] = 41, + [99] = 41, + [100] = 39, + [101] = 41, + [102] = 39, [103] = 39, - [104] = 37, + [104] = 41, [105] = 105, - [106] = 105, - [107] = 107, + [106] = 106, + [107] = 105, [108] = 3, [109] = 2, [110] = 3, [111] = 2, - [112] = 2, - [113] = 3, - [114] = 114, - [115] = 114, - [116] = 2, - [117] = 3, - [118] = 2, + [112] = 3, + [113] = 113, + [114] = 2, + [115] = 113, + [116] = 3, + [117] = 2, + [118] = 3, [119] = 3, - [120] = 2, - [121] = 121, + [120] = 3, + [121] = 2, [122] = 2, - [123] = 2, - [124] = 3, - [125] = 125, - [126] = 3, - [127] = 2, - [128] = 3, - [129] = 3, - [130] = 2, - [131] = 3, + [123] = 123, + [124] = 2, + [125] = 3, + [126] = 126, + [127] = 3, + [128] = 2, + [129] = 2, + [130] = 3, + [131] = 2, [132] = 132, [133] = 133, [134] = 134, @@ -4161,90 +4165,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [141] = 141, [142] = 142, [143] = 143, - [144] = 144, - [145] = 133, - [146] = 146, + [144] = 142, + [145] = 145, + [146] = 134, [147] = 147, [148] = 148, [149] = 149, - [150] = 135, - [151] = 132, + [150] = 150, + [151] = 151, [152] = 152, - [153] = 153, + [153] = 141, [154] = 154, - [155] = 155, - [156] = 136, - [157] = 138, - [158] = 141, + [155] = 140, + [156] = 133, + [157] = 157, + [158] = 135, [159] = 159, - [160] = 137, + [160] = 160, [161] = 161, - [162] = 134, - [163] = 163, - [164] = 164, - [165] = 142, - [166] = 140, + [162] = 132, + [163] = 137, + [164] = 138, + [165] = 165, + [166] = 136, [167] = 139, - [168] = 143, - [169] = 136, - [170] = 144, - [171] = 171, - [172] = 133, - [173] = 138, + [168] = 135, + [169] = 160, + [170] = 154, + [171] = 134, + [172] = 136, + [173] = 139, [174] = 148, - [175] = 152, - [176] = 137, - [177] = 140, + [175] = 142, + [176] = 133, + [177] = 157, [178] = 159, - [179] = 134, - [180] = 180, - [181] = 135, - [182] = 146, - [183] = 139, - [184] = 163, - [185] = 164, - [186] = 161, - [187] = 153, - [188] = 188, - [189] = 132, - [190] = 141, - [191] = 155, - [192] = 142, - [193] = 149, - [194] = 154, - [195] = 147, - [196] = 134, + [179] = 138, + [180] = 143, + [181] = 147, + [182] = 152, + [183] = 141, + [184] = 184, + [185] = 145, + [186] = 140, + [187] = 187, + [188] = 161, + [189] = 165, + [190] = 149, + [191] = 191, + [192] = 150, + [193] = 137, + [194] = 151, + [195] = 132, + [196] = 196, [197] = 197, [198] = 198, - [199] = 138, + [199] = 199, [200] = 200, [201] = 201, - [202] = 180, + [202] = 202, [203] = 203, [204] = 204, - [205] = 205, + [205] = 142, [206] = 206, - [207] = 188, - [208] = 2, + [207] = 207, + [208] = 208, [209] = 209, - [210] = 210, + [210] = 147, [211] = 211, [212] = 212, [213] = 213, [214] = 214, [215] = 215, [216] = 216, - [217] = 217, - [218] = 141, + [217] = 136, + [218] = 137, [219] = 219, [220] = 220, - [221] = 221, - [222] = 222, - [223] = 144, - [224] = 224, - [225] = 155, - [226] = 161, - [227] = 153, + [221] = 139, + [222] = 143, + [223] = 159, + [224] = 141, + [225] = 225, + [226] = 145, + [227] = 227, [228] = 228, [229] = 229, [230] = 230, @@ -4252,631 +4256,631 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [232] = 232, [233] = 233, [234] = 234, - [235] = 171, + [235] = 235, [236] = 236, [237] = 237, - [238] = 133, - [239] = 154, + [238] = 238, + [239] = 138, [240] = 240, - [241] = 142, - [242] = 242, + [241] = 241, + [242] = 132, [243] = 243, - [244] = 136, - [245] = 245, - [246] = 140, - [247] = 247, - [248] = 248, - [249] = 249, + [244] = 244, + [245] = 133, + [246] = 135, + [247] = 150, + [248] = 187, + [249] = 191, [250] = 250, - [251] = 251, - [252] = 132, - [253] = 137, - [254] = 139, - [255] = 135, + [251] = 3, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, [256] = 256, - [257] = 248, - [258] = 229, - [259] = 153, - [260] = 203, - [261] = 215, - [262] = 201, - [263] = 222, - [264] = 247, - [265] = 211, - [266] = 206, - [267] = 154, - [268] = 200, - [269] = 224, - [270] = 205, - [271] = 228, - [272] = 188, - [273] = 204, - [274] = 232, - [275] = 213, - [276] = 234, - [277] = 220, - [278] = 144, - [279] = 251, - [280] = 212, - [281] = 161, - [282] = 230, - [283] = 197, - [284] = 180, - [285] = 171, - [286] = 250, - [287] = 233, - [288] = 198, - [289] = 256, - [290] = 214, - [291] = 155, - [292] = 217, - [293] = 245, - [294] = 242, - [295] = 237, - [296] = 216, - [297] = 231, - [298] = 221, - [299] = 209, - [300] = 236, - [301] = 240, - [302] = 219, - [303] = 210, - [304] = 2, - [305] = 243, - [306] = 249, - [307] = 198, - [308] = 236, - [309] = 256, - [310] = 250, - [311] = 249, - [312] = 243, - [313] = 240, - [314] = 233, - [315] = 232, - [316] = 228, - [317] = 224, - [318] = 245, - [319] = 219, - [320] = 216, - [321] = 200, - [322] = 201, - [323] = 203, - [324] = 213, - [325] = 180, - [326] = 210, - [327] = 171, - [328] = 234, - [329] = 220, - [330] = 217, - [331] = 2, - [332] = 209, - [333] = 221, - [334] = 231, - [335] = 222, - [336] = 242, - [337] = 229, - [338] = 247, - [339] = 188, - [340] = 204, - [341] = 205, - [342] = 206, - [343] = 211, - [344] = 212, - [345] = 345, - [346] = 197, - [347] = 215, - [348] = 237, - [349] = 214, - [350] = 230, - [351] = 251, - [352] = 248, - [353] = 353, - [354] = 354, - [355] = 230, - [356] = 356, - [357] = 248, - [358] = 212, - [359] = 220, - [360] = 211, - [361] = 206, - [362] = 362, - [363] = 363, - [364] = 242, - [365] = 365, - [366] = 243, - [367] = 367, - [368] = 368, - [369] = 234, - [370] = 370, - [371] = 213, - [372] = 2, - [373] = 373, - [374] = 214, - [375] = 251, - [376] = 203, - [377] = 201, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 245, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 217, - [387] = 200, - [388] = 388, - [389] = 389, - [390] = 224, - [391] = 391, - [392] = 345, - [393] = 393, - [394] = 394, - [395] = 237, - [396] = 236, - [397] = 215, - [398] = 216, - [399] = 210, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 229, - [405] = 209, - [406] = 247, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 140, + [264] = 264, + [265] = 265, + [266] = 134, + [267] = 184, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 270, + [272] = 227, + [273] = 236, + [274] = 234, + [275] = 198, + [276] = 201, + [277] = 238, + [278] = 199, + [279] = 200, + [280] = 237, + [281] = 231, + [282] = 197, + [283] = 235, + [284] = 240, + [285] = 243, + [286] = 147, + [287] = 241, + [288] = 184, + [289] = 250, + [290] = 252, + [291] = 253, + [292] = 254, + [293] = 255, + [294] = 256, + [295] = 3, + [296] = 265, + [297] = 143, + [298] = 159, + [299] = 225, + [300] = 268, + [301] = 202, + [302] = 269, + [303] = 233, + [304] = 264, + [305] = 196, + [306] = 203, + [307] = 262, + [308] = 204, + [309] = 261, + [310] = 214, + [311] = 207, + [312] = 260, + [313] = 191, + [314] = 206, + [315] = 208, + [316] = 209, + [317] = 150, + [318] = 259, + [319] = 211, + [320] = 212, + [321] = 229, + [322] = 213, + [323] = 258, + [324] = 228, + [325] = 187, + [326] = 230, + [327] = 215, + [328] = 216, + [329] = 244, + [330] = 232, + [331] = 145, + [332] = 257, + [333] = 219, + [334] = 220, + [335] = 253, + [336] = 235, + [337] = 241, + [338] = 197, + [339] = 227, + [340] = 244, + [341] = 214, + [342] = 265, + [343] = 199, + [344] = 200, + [345] = 268, + [346] = 201, + [347] = 269, + [348] = 270, + [349] = 233, + [350] = 264, + [351] = 262, + [352] = 261, + [353] = 260, + [354] = 259, + [355] = 229, + [356] = 258, + [357] = 196, + [358] = 203, + [359] = 204, + [360] = 257, + [361] = 225, + [362] = 256, + [363] = 207, + [364] = 208, + [365] = 209, + [366] = 255, + [367] = 211, + [368] = 212, + [369] = 213, + [370] = 254, + [371] = 371, + [372] = 215, + [373] = 216, + [374] = 3, + [375] = 252, + [376] = 219, + [377] = 220, + [378] = 250, + [379] = 187, + [380] = 243, + [381] = 240, + [382] = 191, + [383] = 238, + [384] = 237, + [385] = 236, + [386] = 234, + [387] = 232, + [388] = 230, + [389] = 228, + [390] = 206, + [391] = 184, + [392] = 231, + [393] = 202, + [394] = 198, + [395] = 196, + [396] = 200, + [397] = 236, + [398] = 237, + [399] = 238, + [400] = 240, + [401] = 243, + [402] = 250, + [403] = 252, + [404] = 253, + [405] = 254, + [406] = 255, [407] = 256, - [408] = 219, - [409] = 250, - [410] = 198, - [411] = 249, - [412] = 228, - [413] = 232, - [414] = 221, - [415] = 231, - [416] = 416, - [417] = 222, - [418] = 240, - [419] = 233, - [420] = 204, - [421] = 205, - [422] = 197, - [423] = 385, - [424] = 362, - [425] = 416, - [426] = 400, - [427] = 393, - [428] = 384, - [429] = 394, - [430] = 354, - [431] = 403, - [432] = 389, - [433] = 373, - [434] = 388, - [435] = 356, - [436] = 378, - [437] = 363, - [438] = 353, - [439] = 391, - [440] = 365, - [441] = 367, - [442] = 368, - [443] = 370, - [444] = 383, - [445] = 382, - [446] = 380, - [447] = 379, - [448] = 402, - [449] = 401, - [450] = 138, - [451] = 133, - [452] = 452, - [453] = 139, + [408] = 257, + [409] = 258, + [410] = 259, + [411] = 260, + [412] = 229, + [413] = 261, + [414] = 262, + [415] = 264, + [416] = 233, + [417] = 270, + [418] = 269, + [419] = 268, + [420] = 265, + [421] = 220, + [422] = 219, + [423] = 241, + [424] = 216, + [425] = 215, + [426] = 426, + [427] = 371, + [428] = 213, + [429] = 212, + [430] = 211, + [431] = 244, + [432] = 209, + [433] = 433, + [434] = 208, + [435] = 207, + [436] = 225, + [437] = 204, + [438] = 203, + [439] = 201, + [440] = 234, + [441] = 199, + [442] = 232, + [443] = 214, + [444] = 227, + [445] = 197, + [446] = 230, + [447] = 235, + [448] = 231, + [449] = 228, + [450] = 206, + [451] = 202, + [452] = 198, + [453] = 453, [454] = 454, - [455] = 137, - [456] = 140, - [457] = 134, - [458] = 135, - [459] = 141, - [460] = 454, + [455] = 455, + [456] = 3, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, [461] = 461, [462] = 462, [463] = 463, [464] = 464, - [465] = 452, + [465] = 465, [466] = 466, - [467] = 142, + [467] = 467, [468] = 468, - [469] = 461, - [470] = 462, - [471] = 132, - [472] = 136, - [473] = 132, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, [474] = 474, - [475] = 134, - [476] = 144, + [475] = 475, + [476] = 476, [477] = 477, [478] = 478, - [479] = 139, - [480] = 138, - [481] = 137, - [482] = 153, - [483] = 141, - [484] = 133, - [485] = 140, - [486] = 142, - [487] = 154, - [488] = 155, - [489] = 135, - [490] = 490, - [491] = 161, - [492] = 136, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 171, - [499] = 180, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 161, - [504] = 153, - [505] = 505, - [506] = 154, - [507] = 507, - [508] = 144, - [509] = 502, + [479] = 474, + [480] = 468, + [481] = 459, + [482] = 457, + [483] = 453, + [484] = 475, + [485] = 473, + [486] = 461, + [487] = 476, + [488] = 472, + [489] = 477, + [490] = 471, + [491] = 478, + [492] = 433, + [493] = 454, + [494] = 455, + [495] = 467, + [496] = 466, + [497] = 464, + [498] = 463, + [499] = 470, + [500] = 469, + [501] = 462, + [502] = 465, + [503] = 460, + [504] = 458, + [505] = 426, + [506] = 506, + [507] = 135, + [508] = 136, + [509] = 133, [510] = 510, - [511] = 155, - [512] = 188, - [513] = 237, - [514] = 514, - [515] = 219, - [516] = 216, - [517] = 210, - [518] = 215, - [519] = 214, - [520] = 520, - [521] = 245, - [522] = 507, - [523] = 236, - [524] = 197, - [525] = 525, - [526] = 526, - [527] = 212, - [528] = 248, - [529] = 211, - [530] = 206, - [531] = 209, - [532] = 154, - [533] = 221, - [534] = 155, - [535] = 535, - [536] = 140, - [537] = 505, - [538] = 231, - [539] = 242, - [540] = 188, - [541] = 205, - [542] = 137, - [543] = 138, - [544] = 213, - [545] = 222, - [546] = 198, - [547] = 247, - [548] = 256, - [549] = 549, - [550] = 229, - [551] = 217, - [552] = 220, - [553] = 250, - [554] = 234, - [555] = 230, - [556] = 497, - [557] = 249, - [558] = 2, - [559] = 243, - [560] = 240, - [561] = 233, - [562] = 232, - [563] = 171, - [564] = 228, - [565] = 224, - [566] = 180, - [567] = 200, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 137, + [515] = 139, + [516] = 138, + [517] = 517, + [518] = 510, + [519] = 134, + [520] = 513, + [521] = 506, + [522] = 522, + [523] = 132, + [524] = 524, + [525] = 141, + [526] = 140, + [527] = 517, + [528] = 142, + [529] = 140, + [530] = 530, + [531] = 531, + [532] = 139, + [533] = 533, + [534] = 133, + [535] = 141, + [536] = 536, + [537] = 143, + [538] = 538, + [539] = 142, + [540] = 135, + [541] = 541, + [542] = 150, + [543] = 543, + [544] = 137, + [545] = 159, + [546] = 546, + [547] = 145, + [548] = 136, + [549] = 134, + [550] = 147, + [551] = 132, + [552] = 138, + [553] = 143, + [554] = 554, + [555] = 555, + [556] = 145, + [557] = 159, + [558] = 558, + [559] = 187, + [560] = 150, + [561] = 147, + [562] = 562, + [563] = 191, + [564] = 184, + [565] = 565, + [566] = 565, + [567] = 567, [568] = 568, - [569] = 201, - [570] = 204, - [571] = 203, - [572] = 572, - [573] = 133, - [574] = 251, - [575] = 575, - [576] = 520, - [577] = 137, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 219, - [582] = 582, - [583] = 248, - [584] = 584, - [585] = 197, - [586] = 140, - [587] = 587, - [588] = 242, - [589] = 222, - [590] = 590, + [569] = 196, + [570] = 244, + [571] = 253, + [572] = 229, + [573] = 252, + [574] = 250, + [575] = 139, + [576] = 243, + [577] = 240, + [578] = 238, + [579] = 237, + [580] = 3, + [581] = 236, + [582] = 234, + [583] = 206, + [584] = 232, + [585] = 230, + [586] = 228, + [587] = 257, + [588] = 256, + [589] = 202, + [590] = 198, [591] = 591, - [592] = 231, - [593] = 221, - [594] = 594, - [595] = 216, - [596] = 215, - [597] = 154, - [598] = 214, - [599] = 599, - [600] = 230, - [601] = 525, - [602] = 212, - [603] = 603, - [604] = 211, - [605] = 206, - [606] = 138, - [607] = 607, - [608] = 526, - [609] = 205, - [610] = 204, - [611] = 155, - [612] = 198, - [613] = 613, - [614] = 209, - [615] = 615, - [616] = 616, - [617] = 229, - [618] = 217, - [619] = 245, - [620] = 620, - [621] = 2, - [622] = 622, - [623] = 251, - [624] = 220, - [625] = 234, - [626] = 626, - [627] = 514, - [628] = 628, - [629] = 629, - [630] = 549, - [631] = 154, - [632] = 155, - [633] = 237, - [634] = 213, - [635] = 635, - [636] = 236, - [637] = 637, - [638] = 133, - [639] = 639, - [640] = 640, - [641] = 210, - [642] = 642, + [592] = 258, + [593] = 259, + [594] = 260, + [595] = 141, + [596] = 261, + [597] = 262, + [598] = 241, + [599] = 264, + [600] = 233, + [601] = 270, + [602] = 225, + [603] = 269, + [604] = 268, + [605] = 214, + [606] = 265, + [607] = 184, + [608] = 201, + [609] = 609, + [610] = 562, + [611] = 191, + [612] = 187, + [613] = 235, + [614] = 220, + [615] = 145, + [616] = 254, + [617] = 617, + [618] = 132, + [619] = 147, + [620] = 197, + [621] = 621, + [622] = 227, + [623] = 199, + [624] = 219, + [625] = 216, + [626] = 215, + [627] = 558, + [628] = 213, + [629] = 212, + [630] = 200, + [631] = 631, + [632] = 632, + [633] = 567, + [634] = 211, + [635] = 231, + [636] = 209, + [637] = 208, + [638] = 638, + [639] = 207, + [640] = 138, + [641] = 204, + [642] = 203, [643] = 643, - [644] = 153, - [645] = 203, - [646] = 201, - [647] = 200, - [648] = 224, - [649] = 228, - [650] = 232, - [651] = 233, - [652] = 568, - [653] = 247, - [654] = 240, - [655] = 161, - [656] = 243, - [657] = 249, - [658] = 250, - [659] = 256, - [660] = 660, - [661] = 587, - [662] = 590, - [663] = 584, - [664] = 161, - [665] = 591, - [666] = 153, - [667] = 594, - [668] = 620, - [669] = 155, - [670] = 582, - [671] = 154, - [672] = 580, - [673] = 579, - [674] = 575, - [675] = 578, - [676] = 629, - [677] = 188, - [678] = 171, - [679] = 599, - [680] = 639, - [681] = 642, - [682] = 626, - [683] = 622, - [684] = 660, - [685] = 607, - [686] = 643, - [687] = 615, - [688] = 616, - [689] = 613, - [690] = 628, - [691] = 640, - [692] = 637, - [693] = 635, - [694] = 180, - [695] = 603, - [696] = 209, - [697] = 697, - [698] = 180, - [699] = 138, - [700] = 660, - [701] = 171, - [702] = 702, - [703] = 136, - [704] = 704, - [705] = 188, - [706] = 137, - [707] = 697, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 155, - [712] = 140, - [713] = 245, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 132, - [719] = 154, - [720] = 720, - [721] = 133, - [722] = 704, - [723] = 660, - [724] = 724, - [725] = 245, - [726] = 209, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 704, - [731] = 697, - [732] = 732, - [733] = 702, - [734] = 724, - [735] = 709, - [736] = 724, - [737] = 154, - [738] = 155, - [739] = 140, - [740] = 724, - [741] = 741, - [742] = 138, - [743] = 720, - [744] = 717, + [644] = 255, + [645] = 207, + [646] = 265, + [647] = 212, + [648] = 211, + [649] = 3, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 139, + [654] = 209, + [655] = 208, + [656] = 258, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 225, + [661] = 204, + [662] = 145, + [663] = 203, + [664] = 196, + [665] = 257, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 213, + [673] = 215, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 216, + [680] = 621, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 609, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 241, + [693] = 220, + [694] = 147, + [695] = 219, + [696] = 201, + [697] = 138, + [698] = 200, + [699] = 199, + [700] = 214, + [701] = 227, + [702] = 132, + [703] = 197, + [704] = 235, + [705] = 259, + [706] = 260, + [707] = 229, + [708] = 617, + [709] = 261, + [710] = 262, + [711] = 264, + [712] = 233, + [713] = 270, + [714] = 269, + [715] = 268, + [716] = 147, + [717] = 228, + [718] = 230, + [719] = 145, + [720] = 232, + [721] = 234, + [722] = 236, + [723] = 237, + [724] = 632, + [725] = 631, + [726] = 238, + [727] = 240, + [728] = 243, + [729] = 250, + [730] = 143, + [731] = 643, + [732] = 252, + [733] = 198, + [734] = 202, + [735] = 141, + [736] = 159, + [737] = 244, + [738] = 253, + [739] = 254, + [740] = 231, + [741] = 255, + [742] = 206, + [743] = 256, + [744] = 690, [745] = 745, - [746] = 710, - [747] = 161, - [748] = 153, - [749] = 749, - [750] = 715, - [751] = 751, - [752] = 752, - [753] = 132, - [754] = 133, - [755] = 704, - [756] = 136, - [757] = 714, - [758] = 717, - [759] = 697, - [760] = 717, - [761] = 137, - [762] = 708, - [763] = 716, - [764] = 660, - [765] = 153, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 749, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 171, - [780] = 780, - [781] = 717, - [782] = 782, - [783] = 783, - [784] = 752, + [746] = 681, + [747] = 682, + [748] = 666, + [749] = 667, + [750] = 683, + [751] = 745, + [752] = 684, + [753] = 147, + [754] = 685, + [755] = 187, + [756] = 191, + [757] = 688, + [758] = 145, + [759] = 689, + [760] = 691, + [761] = 651, + [762] = 678, + [763] = 184, + [764] = 677, + [765] = 675, + [766] = 674, + [767] = 671, + [768] = 659, + [769] = 670, + [770] = 676, + [771] = 668, + [772] = 658, + [773] = 687, + [774] = 657, + [775] = 669, + [776] = 650, + [777] = 159, + [778] = 143, + [779] = 652, + [780] = 140, + [781] = 781, + [782] = 191, + [783] = 187, + [784] = 784, [785] = 785, - [786] = 786, - [787] = 704, - [788] = 717, - [789] = 724, - [790] = 790, + [786] = 745, + [787] = 787, + [788] = 231, + [789] = 789, + [790] = 147, [791] = 791, - [792] = 697, - [793] = 180, - [794] = 724, - [795] = 795, - [796] = 702, - [797] = 209, + [792] = 792, + [793] = 244, + [794] = 145, + [795] = 792, + [796] = 184, + [797] = 797, [798] = 798, - [799] = 799, - [800] = 800, + [799] = 798, + [800] = 142, [801] = 801, [802] = 802, - [803] = 727, - [804] = 804, - [805] = 161, + [803] = 141, + [804] = 139, + [805] = 745, [806] = 806, - [807] = 807, - [808] = 717, - [809] = 809, - [810] = 810, - [811] = 660, - [812] = 188, - [813] = 813, + [807] = 138, + [808] = 132, + [809] = 801, + [810] = 132, + [811] = 801, + [812] = 140, + [813] = 801, [814] = 814, - [815] = 724, - [816] = 816, - [817] = 251, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 768, - [822] = 806, - [823] = 823, - [824] = 809, + [815] = 138, + [816] = 802, + [817] = 142, + [818] = 139, + [819] = 806, + [820] = 792, + [821] = 821, + [822] = 822, + [823] = 798, + [824] = 141, [825] = 825, - [826] = 783, - [827] = 697, - [828] = 769, - [829] = 766, - [830] = 704, - [831] = 767, - [832] = 832, - [833] = 222, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 231, + [830] = 791, + [831] = 802, + [832] = 802, + [833] = 787, [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 230, - [841] = 841, - [842] = 724, - [843] = 245, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, + [835] = 785, + [836] = 784, + [837] = 792, + [838] = 244, + [839] = 781, + [840] = 745, + [841] = 797, + [842] = 159, + [843] = 143, + [844] = 798, + [845] = 789, + [846] = 145, + [847] = 147, [848] = 848, [849] = 849, [850] = 850, [851] = 851, [852] = 852, [853] = 853, - [854] = 799, - [855] = 786, + [854] = 801, + [855] = 855, [856] = 856, - [857] = 798, + [857] = 802, [858] = 858, - [859] = 859, + [859] = 834, [860] = 860, [861] = 861, [862] = 862, @@ -4888,567 +4892,567 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 871, + [871] = 814, [872] = 872, [873] = 873, [874] = 874, [875] = 875, - [876] = 876, - [877] = 877, - [878] = 771, - [879] = 180, - [880] = 251, - [881] = 773, - [882] = 776, - [883] = 883, - [884] = 780, + [876] = 143, + [877] = 187, + [878] = 231, + [879] = 159, + [880] = 191, + [881] = 229, + [882] = 882, + [883] = 802, + [884] = 781, [885] = 885, - [886] = 886, - [887] = 887, + [886] = 792, + [887] = 241, [888] = 888, - [889] = 171, - [890] = 785, - [891] = 891, + [889] = 798, + [890] = 802, + [891] = 801, [892] = 892, [893] = 893, - [894] = 894, - [895] = 814, - [896] = 791, - [897] = 810, - [898] = 813, - [899] = 717, - [900] = 702, - [901] = 800, + [894] = 801, + [895] = 745, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 184, + [901] = 826, [902] = 902, - [903] = 795, + [903] = 903, [904] = 904, [905] = 905, - [906] = 906, - [907] = 907, + [906] = 792, + [907] = 798, [908] = 908, [909] = 909, - [910] = 775, - [911] = 911, + [910] = 801, + [911] = 214, [912] = 912, - [913] = 777, - [914] = 774, - [915] = 772, + [913] = 913, + [914] = 850, + [915] = 915, [916] = 916, - [917] = 778, - [918] = 209, - [919] = 919, - [920] = 807, - [921] = 921, + [917] = 917, + [918] = 225, + [919] = 899, + [920] = 920, + [921] = 244, [922] = 922, - [923] = 923, - [924] = 924, + [923] = 852, + [924] = 897, [925] = 925, [926] = 926, [927] = 927, [928] = 928, - [929] = 188, + [929] = 929, [930] = 930, [931] = 931, - [932] = 816, - [933] = 933, - [934] = 934, + [932] = 932, + [933] = 231, + [934] = 864, [935] = 935, - [936] = 848, - [937] = 865, - [938] = 245, - [939] = 845, - [940] = 927, - [941] = 849, - [942] = 850, - [943] = 874, - [944] = 872, - [945] = 222, - [946] = 902, - [947] = 870, - [948] = 869, - [949] = 868, - [950] = 871, - [951] = 230, - [952] = 851, - [953] = 923, - [954] = 906, - [955] = 955, - [956] = 861, - [957] = 154, - [958] = 819, - [959] = 928, - [960] = 934, - [961] = 836, - [962] = 834, - [963] = 818, - [964] = 832, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 867, + [944] = 944, + [945] = 781, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 849, + [950] = 858, + [951] = 184, + [952] = 888, + [953] = 802, + [954] = 868, + [955] = 898, + [956] = 229, + [957] = 957, + [958] = 958, + [959] = 862, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 860, + [964] = 861, [965] = 965, - [966] = 933, - [967] = 930, - [968] = 823, - [969] = 926, - [970] = 825, - [971] = 866, - [972] = 873, - [973] = 860, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 191, [974] = 974, - [975] = 867, - [976] = 919, - [977] = 916, - [978] = 820, - [979] = 837, - [980] = 935, - [981] = 981, - [982] = 912, - [983] = 883, - [984] = 904, - [985] = 838, - [986] = 911, - [987] = 858, - [988] = 853, - [989] = 909, - [990] = 908, - [991] = 885, - [992] = 839, - [993] = 841, - [994] = 852, - [995] = 859, - [996] = 847, - [997] = 907, - [998] = 998, - [999] = 876, - [1000] = 921, - [1001] = 862, - [1002] = 863, - [1003] = 877, - [1004] = 416, - [1005] = 886, - [1006] = 887, - [1007] = 155, - [1008] = 925, - [1009] = 888, - [1010] = 894, - [1011] = 875, - [1012] = 924, - [1013] = 922, - [1014] = 891, - [1015] = 892, - [1016] = 893, - [1017] = 864, - [1018] = 856, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 851, + [979] = 893, + [980] = 855, + [981] = 873, + [982] = 982, + [983] = 856, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 882, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 241, + [999] = 999, + [1000] = 1000, + [1001] = 872, + [1002] = 187, + [1003] = 1003, + [1004] = 1004, + [1005] = 874, + [1006] = 1006, + [1007] = 863, + [1008] = 1008, + [1009] = 870, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 869, + [1014] = 1014, + [1015] = 1015, + [1016] = 866, + [1017] = 1017, + [1018] = 1018, + [1019] = 865, + [1020] = 1014, + [1021] = 957, + [1022] = 920, + [1023] = 997, + [1024] = 961, + [1025] = 991, [1026] = 1026, - [1027] = 139, - [1028] = 134, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 416, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, + [1027] = 990, + [1028] = 987, + [1029] = 939, + [1030] = 905, + [1031] = 909, + [1032] = 993, + [1033] = 994, + [1034] = 942, + [1035] = 1000, + [1036] = 912, + [1037] = 917, + [1038] = 426, [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 138, - [1043] = 1043, - [1044] = 137, - [1045] = 1045, + [1040] = 903, + [1041] = 225, + [1042] = 958, + [1043] = 1018, + [1044] = 962, + [1045] = 922, [1046] = 1046, - [1047] = 1047, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 140, - [1053] = 1053, - [1054] = 1054, - [1055] = 140, - [1056] = 1056, - [1057] = 133, - [1058] = 133, - [1059] = 1059, - [1060] = 134, - [1061] = 135, - [1062] = 139, - [1063] = 142, - [1064] = 141, - [1065] = 161, - [1066] = 153, - [1067] = 141, - [1068] = 142, - [1069] = 136, - [1070] = 132, - [1071] = 132, - [1072] = 1072, - [1073] = 137, - [1074] = 136, - [1075] = 135, - [1076] = 138, - [1077] = 153, - [1078] = 144, - [1079] = 154, - [1080] = 251, - [1081] = 161, - [1082] = 155, - [1083] = 180, - [1084] = 171, - [1085] = 245, - [1086] = 144, - [1087] = 1087, - [1088] = 1088, - [1089] = 363, - [1090] = 368, - [1091] = 370, - [1092] = 378, - [1093] = 379, - [1094] = 1094, - [1095] = 380, - [1096] = 382, - [1097] = 383, - [1098] = 384, - [1099] = 1094, - [1100] = 385, - [1101] = 354, - [1102] = 389, - [1103] = 391, - [1104] = 393, - [1105] = 394, - [1106] = 1094, - [1107] = 402, - [1108] = 403, - [1109] = 401, - [1110] = 188, - [1111] = 373, - [1112] = 1094, - [1113] = 188, - [1114] = 1094, - [1115] = 1094, - [1116] = 1094, - [1117] = 1094, - [1118] = 221, - [1119] = 1094, - [1120] = 1094, - [1121] = 1094, - [1122] = 1094, - [1123] = 1094, - [1124] = 212, - [1125] = 1094, - [1126] = 1094, - [1127] = 367, - [1128] = 365, - [1129] = 1094, - [1130] = 353, - [1131] = 362, - [1132] = 180, - [1133] = 1094, - [1134] = 171, - [1135] = 356, + [1047] = 940, + [1048] = 938, + [1049] = 937, + [1050] = 936, + [1051] = 999, + [1052] = 244, + [1053] = 935, + [1054] = 1017, + [1055] = 1055, + [1056] = 982, + [1057] = 1010, + [1058] = 1008, + [1059] = 972, + [1060] = 1060, + [1061] = 970, + [1062] = 214, + [1063] = 995, + [1064] = 969, + [1065] = 996, + [1066] = 1006, + [1067] = 948, + [1068] = 944, + [1069] = 1004, + [1070] = 984, + [1071] = 976, + [1072] = 902, + [1073] = 908, + [1074] = 915, + [1075] = 932, + [1076] = 947, + [1077] = 965, + [1078] = 975, + [1079] = 966, + [1080] = 1015, + [1081] = 960, + [1082] = 1011, + [1083] = 929, + [1084] = 145, + [1085] = 986, + [1086] = 989, + [1087] = 988, + [1088] = 928, + [1089] = 927, + [1090] = 977, + [1091] = 904, + [1092] = 147, + [1093] = 971, + [1094] = 913, + [1095] = 1012, + [1096] = 916, + [1097] = 925, + [1098] = 946, + [1099] = 926, + [1100] = 974, + [1101] = 967, + [1102] = 968, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 138, + [1107] = 1107, + [1108] = 139, + [1109] = 132, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 426, + [1130] = 1130, + [1131] = 134, + [1132] = 1132, + [1133] = 135, + [1134] = 1134, + [1135] = 1135, [1136] = 1136, - [1137] = 388, - [1138] = 1094, - [1139] = 249, - [1140] = 209, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 234, - [1145] = 220, - [1146] = 217, - [1147] = 229, - [1148] = 401, - [1149] = 1142, - [1150] = 198, - [1151] = 204, - [1152] = 205, - [1153] = 206, - [1154] = 211, - [1155] = 403, - [1156] = 402, - [1157] = 230, - [1158] = 214, - [1159] = 215, - [1160] = 216, - [1161] = 219, - [1162] = 231, - [1163] = 245, - [1164] = 394, - [1165] = 393, - [1166] = 391, - [1167] = 222, - [1168] = 242, - [1169] = 197, - [1170] = 389, - [1171] = 354, - [1172] = 385, - [1173] = 384, - [1174] = 248, - [1175] = 383, - [1176] = 382, - [1177] = 380, - [1178] = 379, - [1179] = 378, - [1180] = 370, - [1181] = 368, - [1182] = 367, - [1183] = 365, - [1184] = 353, - [1185] = 363, - [1186] = 362, - [1187] = 356, - [1188] = 388, - [1189] = 373, - [1190] = 209, - [1191] = 210, - [1192] = 251, - [1193] = 1193, - [1194] = 247, - [1195] = 256, - [1196] = 250, - [1197] = 249, - [1198] = 243, - [1199] = 240, - [1200] = 233, - [1201] = 232, - [1202] = 228, - [1203] = 224, - [1204] = 200, - [1205] = 201, - [1206] = 203, - [1207] = 222, - [1208] = 230, - [1209] = 248, - [1210] = 197, - [1211] = 242, - [1212] = 231, - [1213] = 221, - [1214] = 236, - [1215] = 219, - [1216] = 216, - [1217] = 215, - [1218] = 214, - [1219] = 212, - [1220] = 2, - [1221] = 211, - [1222] = 206, - [1223] = 205, - [1224] = 204, - [1225] = 1141, - [1226] = 198, - [1227] = 229, - [1228] = 237, + [1137] = 1137, + [1138] = 1138, + [1139] = 136, + [1140] = 139, + [1141] = 141, + [1142] = 141, + [1143] = 142, + [1144] = 140, + [1145] = 133, + [1146] = 142, + [1147] = 132, + [1148] = 137, + [1149] = 133, + [1150] = 1150, + [1151] = 1151, + [1152] = 136, + [1153] = 137, + [1154] = 140, + [1155] = 134, + [1156] = 159, + [1157] = 143, + [1158] = 135, + [1159] = 1159, + [1160] = 138, + [1161] = 191, + [1162] = 143, + [1163] = 159, + [1164] = 1164, + [1165] = 244, + [1166] = 150, + [1167] = 241, + [1168] = 145, + [1169] = 147, + [1170] = 150, + [1171] = 187, + [1172] = 1172, + [1173] = 1173, + [1174] = 471, + [1175] = 184, + [1176] = 187, + [1177] = 1173, + [1178] = 1173, + [1179] = 1173, + [1180] = 207, + [1181] = 1173, + [1182] = 1173, + [1183] = 1173, + [1184] = 1173, + [1185] = 200, + [1186] = 1173, + [1187] = 453, + [1188] = 454, + [1189] = 455, + [1190] = 458, + [1191] = 460, + [1192] = 462, + [1193] = 463, + [1194] = 464, + [1195] = 466, + [1196] = 467, + [1197] = 468, + [1198] = 191, + [1199] = 472, + [1200] = 473, + [1201] = 475, + [1202] = 1173, + [1203] = 476, + [1204] = 477, + [1205] = 1173, + [1206] = 478, + [1207] = 459, + [1208] = 1173, + [1209] = 1173, + [1210] = 1210, + [1211] = 1173, + [1212] = 457, + [1213] = 1173, + [1214] = 1173, + [1215] = 433, + [1216] = 474, + [1217] = 470, + [1218] = 469, + [1219] = 465, + [1220] = 184, + [1221] = 1173, + [1222] = 1173, + [1223] = 231, + [1224] = 478, + [1225] = 230, + [1226] = 232, + [1227] = 234, + [1228] = 236, [1229] = 237, - [1230] = 236, - [1231] = 210, - [1232] = 217, - [1233] = 220, - [1234] = 234, - [1235] = 213, - [1236] = 203, - [1237] = 201, - [1238] = 200, - [1239] = 213, - [1240] = 224, - [1241] = 228, - [1242] = 232, - [1243] = 233, - [1244] = 240, - [1245] = 243, - [1246] = 250, - [1247] = 247, - [1248] = 256, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1250, - [1254] = 1254, - [1255] = 1251, - [1256] = 1254, - [1257] = 1252, - [1258] = 1258, - [1259] = 1258, - [1260] = 1258, - [1261] = 1261, - [1262] = 1261, - [1263] = 1261, - [1264] = 1261, - [1265] = 1261, - [1266] = 1258, - [1267] = 1261, - [1268] = 1258, - [1269] = 1261, - [1270] = 1258, - [1271] = 1261, - [1272] = 1258, - [1273] = 1258, - [1274] = 1261, - [1275] = 1261, - [1276] = 1258, - [1277] = 1277, - [1278] = 1258, - [1279] = 1261, - [1280] = 1258, - [1281] = 1261, - [1282] = 1258, - [1283] = 1283, - [1284] = 1261, - [1285] = 1261, - [1286] = 1286, - [1287] = 1261, - [1288] = 1258, - [1289] = 1258, - [1290] = 1261, - [1291] = 1258, - [1292] = 1258, - [1293] = 1258, - [1294] = 1261, - [1295] = 1261, - [1296] = 1258, - [1297] = 1261, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1300, - [1331] = 1301, - [1332] = 1302, - [1333] = 1303, - [1334] = 1304, - [1335] = 1305, - [1336] = 1306, - [1337] = 1307, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1299, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1313, - [1357] = 1314, - [1358] = 1315, - [1359] = 1316, - [1360] = 1317, - [1361] = 1318, - [1362] = 1319, - [1363] = 1320, - [1364] = 1321, - [1365] = 1322, - [1366] = 1323, - [1367] = 1328, - [1368] = 1327, - [1369] = 1324, - [1370] = 1339, + [1230] = 238, + [1231] = 240, + [1232] = 243, + [1233] = 250, + [1234] = 252, + [1235] = 253, + [1236] = 254, + [1237] = 255, + [1238] = 256, + [1239] = 257, + [1240] = 258, + [1241] = 259, + [1242] = 260, + [1243] = 261, + [1244] = 262, + [1245] = 264, + [1246] = 233, + [1247] = 270, + [1248] = 269, + [1249] = 268, + [1250] = 208, + [1251] = 214, + [1252] = 209, + [1253] = 240, + [1254] = 238, + [1255] = 211, + [1256] = 212, + [1257] = 213, + [1258] = 215, + [1259] = 202, + [1260] = 198, + [1261] = 216, + [1262] = 219, + [1263] = 237, + [1264] = 200, + [1265] = 220, + [1266] = 265, + [1267] = 453, + [1268] = 236, + [1269] = 454, + [1270] = 1270, + [1271] = 228, + [1272] = 455, + [1273] = 458, + [1274] = 241, + [1275] = 460, + [1276] = 462, + [1277] = 463, + [1278] = 1278, + [1279] = 464, + [1280] = 466, + [1281] = 265, + [1282] = 467, + [1283] = 234, + [1284] = 468, + [1285] = 471, + [1286] = 472, + [1287] = 473, + [1288] = 475, + [1289] = 235, + [1290] = 476, + [1291] = 477, + [1292] = 1292, + [1293] = 474, + [1294] = 232, + [1295] = 1292, + [1296] = 197, + [1297] = 255, + [1298] = 268, + [1299] = 227, + [1300] = 214, + [1301] = 231, + [1302] = 470, + [1303] = 469, + [1304] = 465, + [1305] = 199, + [1306] = 207, + [1307] = 230, + [1308] = 269, + [1309] = 270, + [1310] = 233, + [1311] = 201, + [1312] = 196, + [1313] = 203, + [1314] = 204, + [1315] = 225, + [1316] = 228, + [1317] = 225, + [1318] = 459, + [1319] = 457, + [1320] = 206, + [1321] = 264, + [1322] = 202, + [1323] = 229, + [1324] = 204, + [1325] = 208, + [1326] = 209, + [1327] = 203, + [1328] = 211, + [1329] = 212, + [1330] = 198, + [1331] = 213, + [1332] = 196, + [1333] = 433, + [1334] = 1270, + [1335] = 262, + [1336] = 261, + [1337] = 260, + [1338] = 206, + [1339] = 215, + [1340] = 216, + [1341] = 219, + [1342] = 220, + [1343] = 259, + [1344] = 258, + [1345] = 257, + [1346] = 3, + [1347] = 256, + [1348] = 243, + [1349] = 254, + [1350] = 253, + [1351] = 201, + [1352] = 1352, + [1353] = 229, + [1354] = 252, + [1355] = 244, + [1356] = 235, + [1357] = 197, + [1358] = 227, + [1359] = 199, + [1360] = 250, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1363, + [1366] = 1366, + [1367] = 1364, + [1368] = 1366, + [1369] = 1362, + [1370] = 1370, [1371] = 1371, - [1372] = 1340, - [1373] = 1341, - [1374] = 1349, - [1375] = 1375, - [1376] = 1376, - [1377] = 1351, + [1372] = 1370, + [1373] = 1371, + [1374] = 1371, + [1375] = 1371, + [1376] = 1370, + [1377] = 1370, [1378] = 1378, - [1379] = 1329, - [1380] = 1326, - [1381] = 1353, - [1382] = 1325, - [1383] = 1355, - [1384] = 1354, - [1385] = 1298, - [1386] = 1371, - [1387] = 1387, - [1388] = 1387, - [1389] = 1389, - [1390] = 1390, - [1391] = 1375, - [1392] = 1342, - [1393] = 1343, - [1394] = 1394, - [1395] = 1344, - [1396] = 1345, - [1397] = 1346, - [1398] = 1347, - [1399] = 1348, - [1400] = 1350, - [1401] = 1401, - [1402] = 1376, - [1403] = 1378, - [1404] = 1404, - [1405] = 1389, - [1406] = 1390, - [1407] = 1338, - [1408] = 1408, - [1409] = 1409, - [1410] = 1408, - [1411] = 1409, + [1379] = 1379, + [1380] = 1371, + [1381] = 1371, + [1382] = 1370, + [1383] = 1371, + [1384] = 1370, + [1385] = 1370, + [1386] = 1370, + [1387] = 1370, + [1388] = 1371, + [1389] = 1371, + [1390] = 1371, + [1391] = 1370, + [1392] = 1370, + [1393] = 1371, + [1394] = 1370, + [1395] = 1371, + [1396] = 1371, + [1397] = 1371, + [1398] = 1370, + [1399] = 1399, + [1400] = 1370, + [1401] = 1371, + [1402] = 1371, + [1403] = 1371, + [1404] = 1370, + [1405] = 1370, + [1406] = 1370, + [1407] = 1370, + [1408] = 1371, + [1409] = 1370, + [1410] = 1410, + [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1404, + [1414] = 1410, [1415] = 1415, - [1416] = 1412, + [1416] = 1416, [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1308, - [1421] = 1309, - [1422] = 1310, - [1423] = 1401, - [1424] = 1419, - [1425] = 1394, - [1426] = 1418, - [1427] = 1417, - [1428] = 1428, + [1420] = 1411, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1417, + [1427] = 1427, + [1428] = 1419, [1429] = 1429, - [1430] = 1428, - [1431] = 1429, + [1430] = 1423, + [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, @@ -5460,2433 +5464,2658 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1432, - [1444] = 1433, - [1445] = 1434, - [1446] = 1435, - [1447] = 1436, - [1448] = 1437, - [1449] = 1438, - [1450] = 1439, - [1451] = 1440, - [1452] = 1441, - [1453] = 1442, - [1454] = 1415, - [1455] = 1413, + [1443] = 1443, + [1444] = 1444, + [1445] = 1425, + [1446] = 1446, + [1447] = 1446, + [1448] = 1448, + [1449] = 1448, + [1450] = 1450, + [1451] = 1422, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, - [1457] = 1457, - [1458] = 1456, - [1459] = 1456, - [1460] = 1456, - [1461] = 1461, - [1462] = 1461, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, + [1457] = 1412, + [1458] = 1458, + [1459] = 1410, + [1460] = 1416, + [1461] = 1412, + [1462] = 1462, + [1463] = 1410, + [1464] = 1448, + [1465] = 1416, [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1465, + [1467] = 1418, + [1468] = 1446, + [1469] = 1469, [1470] = 1470, [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1461, + [1475] = 1475, [1476] = 1476, - [1477] = 1463, - [1478] = 1464, + [1477] = 1477, + [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1470, - [1482] = 1471, - [1483] = 1472, - [1484] = 1473, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1474, - [1489] = 1461, - [1490] = 1490, - [1491] = 1476, - [1492] = 1463, - [1493] = 1464, - [1494] = 1466, - [1495] = 1467, - [1496] = 1468, - [1497] = 1467, - [1498] = 1468, - [1499] = 1465, - [1500] = 1476, - [1501] = 1470, - [1502] = 1471, - [1503] = 1472, - [1504] = 1466, - [1505] = 1473, - [1506] = 1474, - [1507] = 1464, - [1508] = 1461, - [1509] = 1463, - [1510] = 1476, - [1511] = 1476, - [1512] = 1461, - [1513] = 1474, - [1514] = 1473, - [1515] = 1472, - [1516] = 1471, - [1517] = 1470, - [1518] = 1466, - [1519] = 1467, - [1520] = 1465, - [1521] = 1468, - [1522] = 1522, - [1523] = 1468, - [1524] = 1463, - [1525] = 1467, - [1526] = 1473, - [1527] = 1527, - [1528] = 1464, - [1529] = 1463, - [1530] = 1476, - [1531] = 1465, - [1532] = 1461, - [1533] = 1474, - [1534] = 1473, - [1535] = 1461, - [1536] = 1472, - [1537] = 1471, - [1538] = 1470, - [1539] = 1465, - [1540] = 1468, - [1541] = 1467, - [1542] = 1542, - [1543] = 1466, - [1544] = 1464, - [1545] = 1466, - [1546] = 1487, - [1547] = 1466, - [1548] = 1542, - [1549] = 1464, - [1550] = 1463, - [1551] = 1467, - [1552] = 1468, - [1553] = 1461, - [1554] = 1474, - [1555] = 1473, - [1556] = 1472, - [1557] = 1471, - [1558] = 1470, - [1559] = 1465, - [1560] = 1464, - [1561] = 1470, - [1562] = 1463, - [1563] = 1465, - [1564] = 1468, - [1565] = 1467, - [1566] = 1476, - [1567] = 1476, - [1568] = 1461, - [1569] = 1461, - [1570] = 1471, - [1571] = 1474, - [1572] = 1473, - [1573] = 1474, - [1574] = 1470, - [1575] = 1463, - [1576] = 1472, - [1577] = 1471, - [1578] = 1470, - [1579] = 1466, - [1580] = 1465, - [1581] = 1464, - [1582] = 1471, - [1583] = 1472, - [1584] = 1468, - [1585] = 1471, - [1586] = 1470, - [1587] = 1463, - [1588] = 1476, - [1589] = 1467, - [1590] = 1474, - [1591] = 1472, - [1592] = 1473, - [1593] = 1593, - [1594] = 1466, - [1595] = 1465, - [1596] = 1474, - [1597] = 1468, - [1598] = 1472, - [1599] = 1473, - [1600] = 1479, - [1601] = 1480, - [1602] = 1472, - [1603] = 1471, - [1604] = 1522, - [1605] = 1470, - [1606] = 1465, - [1607] = 1464, - [1608] = 1463, - [1609] = 1476, - [1610] = 1473, - [1611] = 1474, - [1612] = 1473, - [1613] = 1472, - [1614] = 1471, - [1615] = 1470, - [1616] = 1465, - [1617] = 1468, - [1618] = 1467, - [1619] = 1466, - [1620] = 1527, - [1621] = 1473, - [1622] = 1474, - [1623] = 1468, - [1624] = 1467, - [1625] = 1467, - [1626] = 1461, - [1627] = 1466, - [1628] = 1474, - [1629] = 1464, - [1630] = 1461, - [1631] = 1463, - [1632] = 1476, - [1633] = 1476, - [1634] = 1461, - [1635] = 1476, - [1636] = 1466, - [1637] = 1463, - [1638] = 1464, - [1639] = 1464, - [1640] = 1472, - [1641] = 1463, - [1642] = 1490, - [1643] = 1476, - [1644] = 1466, - [1645] = 1464, - [1646] = 1466, - [1647] = 1467, - [1648] = 1474, - [1649] = 1468, - [1650] = 1465, - [1651] = 1470, - [1652] = 1473, - [1653] = 1471, - [1654] = 1471, - [1655] = 1472, - [1656] = 1473, - [1657] = 1474, - [1658] = 1472, - [1659] = 1471, - [1660] = 1470, - [1661] = 1461, - [1662] = 1476, - [1663] = 1463, - [1664] = 1470, - [1665] = 1465, - [1666] = 1464, - [1667] = 1466, - [1668] = 1468, - [1669] = 1467, - [1670] = 1466, - [1671] = 1464, - [1672] = 1463, - [1673] = 1476, - [1674] = 1461, - [1675] = 1465, - [1676] = 1468, - [1677] = 1474, - [1678] = 1473, - [1679] = 1472, - [1680] = 1467, - [1681] = 1468, - [1682] = 1465, - [1683] = 1467, - [1684] = 1471, - [1685] = 1470, - [1686] = 144, - [1687] = 138, - [1688] = 139, - [1689] = 132, - [1690] = 142, - [1691] = 135, - [1692] = 141, - [1693] = 133, - [1694] = 144, - [1695] = 140, - [1696] = 136, - [1697] = 134, - [1698] = 137, - [1699] = 144, - [1700] = 154, - [1701] = 132, - [1702] = 133, - [1703] = 134, - [1704] = 142, - [1705] = 137, - [1706] = 141, - [1707] = 144, - [1708] = 135, - [1709] = 136, - [1710] = 139, - [1711] = 144, - [1712] = 161, - [1713] = 153, - [1714] = 138, - [1715] = 144, - [1716] = 140, - [1717] = 155, - [1718] = 161, - [1719] = 144, - [1720] = 660, - [1721] = 144, - [1722] = 155, - [1723] = 154, - [1724] = 188, - [1725] = 180, - [1726] = 171, - [1727] = 153, - [1728] = 138, - [1729] = 188, - [1730] = 229, - [1731] = 209, - [1732] = 1732, - [1733] = 206, - [1734] = 198, - [1735] = 155, - [1736] = 204, - [1737] = 205, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 704, - [1742] = 144, - [1743] = 212, - [1744] = 216, - [1745] = 215, - [1746] = 154, - [1747] = 1747, - [1748] = 231, - [1749] = 221, - [1750] = 171, - [1751] = 217, - [1752] = 1752, - [1753] = 769, - [1754] = 697, - [1755] = 660, - [1756] = 251, - [1757] = 214, - [1758] = 220, - [1759] = 219, - [1760] = 248, - [1761] = 234, - [1762] = 211, - [1763] = 1763, - [1764] = 197, - [1765] = 137, - [1766] = 140, - [1767] = 230, - [1768] = 135, - [1769] = 242, - [1770] = 2, - [1771] = 222, - [1772] = 180, - [1773] = 245, - [1774] = 212, - [1775] = 219, - [1776] = 697, + [1481] = 1481, + [1482] = 1418, + [1483] = 1483, + [1484] = 1411, + [1485] = 1425, + [1486] = 1411, + [1487] = 1422, + [1488] = 1424, + [1489] = 1417, + [1490] = 1419, + [1491] = 1491, + [1492] = 1423, + [1493] = 1422, + [1494] = 1425, + [1495] = 1423, + [1496] = 1446, + [1497] = 1497, + [1498] = 1448, + [1499] = 1419, + [1500] = 1417, + [1501] = 1424, + [1502] = 1424, + [1503] = 1422, + [1504] = 1411, + [1505] = 1417, + [1506] = 1419, + [1507] = 1423, + [1508] = 1418, + [1509] = 1416, + [1510] = 1410, + [1511] = 1425, + [1512] = 1412, + [1513] = 1432, + [1514] = 1410, + [1515] = 1412, + [1516] = 1416, + [1517] = 1446, + [1518] = 1418, + [1519] = 1411, + [1520] = 1411, + [1521] = 1418, + [1522] = 1422, + [1523] = 1523, + [1524] = 1424, + [1525] = 1525, + [1526] = 1417, + [1527] = 1433, + [1528] = 1419, + [1529] = 1416, + [1530] = 1423, + [1531] = 1434, + [1532] = 1425, + [1533] = 1435, + [1534] = 1446, + [1535] = 1436, + [1536] = 1448, + [1537] = 1437, + [1538] = 1538, + [1539] = 1539, + [1540] = 1448, + [1541] = 1410, + [1542] = 1438, + [1543] = 1412, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1439, + [1548] = 1412, + [1549] = 1452, + [1550] = 1440, + [1551] = 1448, + [1552] = 1552, + [1553] = 1441, + [1554] = 1442, + [1555] = 1412, + [1556] = 1446, + [1557] = 1443, + [1558] = 1412, + [1559] = 1453, + [1560] = 1410, + [1561] = 1425, + [1562] = 1423, + [1563] = 1419, + [1564] = 1412, + [1565] = 1417, + [1566] = 1448, + [1567] = 1410, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1416, + [1572] = 1572, + [1573] = 1418, + [1574] = 1411, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1422, + [1579] = 1579, + [1580] = 1580, + [1581] = 1424, + [1582] = 1417, + [1583] = 1583, + [1584] = 1419, + [1585] = 1585, + [1586] = 1416, + [1587] = 1423, + [1588] = 1425, + [1589] = 1580, + [1590] = 1454, + [1591] = 1446, + [1592] = 1444, + [1593] = 1568, + [1594] = 1594, + [1595] = 1569, + [1596] = 1570, + [1597] = 1572, + [1598] = 1598, + [1599] = 1575, + [1600] = 1576, + [1601] = 1601, + [1602] = 1577, + [1603] = 1455, + [1604] = 1424, + [1605] = 1456, + [1606] = 1422, + [1607] = 1579, + [1608] = 1608, + [1609] = 1458, + [1610] = 1523, + [1611] = 1410, + [1612] = 1583, + [1613] = 1525, + [1614] = 1411, + [1615] = 1538, + [1616] = 1418, + [1617] = 1416, + [1618] = 1416, + [1619] = 1446, + [1620] = 1620, + [1621] = 1418, + [1622] = 1539, + [1623] = 1425, + [1624] = 1544, + [1625] = 1410, + [1626] = 1545, + [1627] = 1546, + [1628] = 1423, + [1629] = 1419, + [1630] = 1630, + [1631] = 1631, + [1632] = 1585, + [1633] = 1448, + [1634] = 1446, + [1635] = 1425, + [1636] = 1423, + [1637] = 1419, + [1638] = 1417, + [1639] = 1424, + [1640] = 1422, + [1641] = 1411, + [1642] = 1418, + [1643] = 1416, + [1644] = 1410, + [1645] = 1412, + [1646] = 1417, + [1647] = 1411, + [1648] = 1422, + [1649] = 1608, + [1650] = 1620, + [1651] = 1448, + [1652] = 1630, + [1653] = 1469, + [1654] = 1631, + [1655] = 1655, + [1656] = 1656, + [1657] = 1448, + [1658] = 1658, + [1659] = 1448, + [1660] = 1446, + [1661] = 1470, + [1662] = 1425, + [1663] = 1471, + [1664] = 1655, + [1665] = 1423, + [1666] = 1666, + [1667] = 1656, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1422, + [1672] = 1658, + [1673] = 1418, + [1674] = 1424, + [1675] = 1446, + [1676] = 1472, + [1677] = 1473, + [1678] = 1474, + [1679] = 1425, + [1680] = 1411, + [1681] = 1423, + [1682] = 1666, + [1683] = 1668, + [1684] = 1669, + [1685] = 1685, + [1686] = 1419, + [1687] = 1418, + [1688] = 1417, + [1689] = 1476, + [1690] = 1477, + [1691] = 1424, + [1692] = 1416, + [1693] = 1419, + [1694] = 1670, + [1695] = 1424, + [1696] = 1422, + [1697] = 1411, + [1698] = 1418, + [1699] = 1685, + [1700] = 1417, + [1701] = 1478, + [1702] = 1424, + [1703] = 1422, + [1704] = 1422, + [1705] = 1424, + [1706] = 1416, + [1707] = 1410, + [1708] = 1417, + [1709] = 1411, + [1710] = 1419, + [1711] = 1418, + [1712] = 1479, + [1713] = 1594, + [1714] = 1450, + [1715] = 1423, + [1716] = 1425, + [1717] = 1431, + [1718] = 1429, + [1719] = 1427, + [1720] = 1421, + [1721] = 1415, + [1722] = 1424, + [1723] = 1446, + [1724] = 1413, + [1725] = 1552, + [1726] = 1462, + [1727] = 1466, + [1728] = 1483, + [1729] = 1410, + [1730] = 1422, + [1731] = 1412, + [1732] = 1424, + [1733] = 1491, + [1734] = 1497, + [1735] = 1448, + [1736] = 1416, + [1737] = 1412, + [1738] = 1410, + [1739] = 1412, + [1740] = 1410, + [1741] = 1417, + [1742] = 1448, + [1743] = 1412, + [1744] = 1446, + [1745] = 1745, + [1746] = 1416, + [1747] = 1418, + [1748] = 1411, + [1749] = 1411, + [1750] = 1418, + [1751] = 1416, + [1752] = 1425, + [1753] = 1422, + [1754] = 1424, + [1755] = 1417, + [1756] = 1475, + [1757] = 1423, + [1758] = 1758, + [1759] = 1419, + [1760] = 1423, + [1761] = 1425, + [1762] = 1412, + [1763] = 1448, + [1764] = 1446, + [1765] = 1448, + [1766] = 1419, + [1767] = 1423, + [1768] = 1425, + [1769] = 1419, + [1770] = 1480, + [1771] = 1417, + [1772] = 1446, + [1773] = 1481, + [1774] = 1598, + [1775] = 1601, + [1776] = 1776, [1777] = 1777, - [1778] = 1778, - [1779] = 1752, - [1780] = 138, - [1781] = 245, - [1782] = 155, - [1783] = 211, + [1778] = 1776, + [1779] = 1776, + [1780] = 1776, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, [1784] = 1784, - [1785] = 229, - [1786] = 230, - [1787] = 1739, - [1788] = 1732, - [1789] = 1763, - [1790] = 769, - [1791] = 154, - [1792] = 155, - [1793] = 144, - [1794] = 137, - [1795] = 140, - [1796] = 251, + [1785] = 1785, + [1786] = 1786, + [1787] = 1785, + [1788] = 1782, + [1789] = 1789, + [1790] = 1783, + [1791] = 1789, + [1792] = 1792, + [1793] = 1793, + [1794] = 1792, + [1795] = 1793, + [1796] = 1784, [1797] = 1797, - [1798] = 206, - [1799] = 1738, - [1800] = 704, - [1801] = 214, - [1802] = 215, - [1803] = 221, - [1804] = 231, - [1805] = 216, - [1806] = 161, - [1807] = 153, - [1808] = 1747, - [1809] = 133, - [1810] = 1740, - [1811] = 220, - [1812] = 205, - [1813] = 204, - [1814] = 198, - [1815] = 209, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 222, - [1820] = 1820, - [1821] = 217, - [1822] = 234, - [1823] = 248, - [1824] = 197, - [1825] = 242, - [1826] = 2, - [1827] = 154, - [1828] = 140, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 153, - [1833] = 138, - [1834] = 140, - [1835] = 155, - [1836] = 133, - [1837] = 1837, - [1838] = 138, - [1839] = 135, - [1840] = 1840, - [1841] = 171, - [1842] = 180, - [1843] = 161, - [1844] = 1844, - [1845] = 154, - [1846] = 137, - [1847] = 137, - [1848] = 135, - [1849] = 188, - [1850] = 140, - [1851] = 138, - [1852] = 135, - [1853] = 154, - [1854] = 1854, - [1855] = 155, - [1856] = 1856, - [1857] = 137, - [1858] = 1858, - [1859] = 134, - [1860] = 171, - [1861] = 153, - [1862] = 139, - [1863] = 141, - [1864] = 138, - [1865] = 137, - [1866] = 180, - [1867] = 154, - [1868] = 1868, - [1869] = 161, - [1870] = 137, - [1871] = 154, - [1872] = 231, - [1873] = 155, - [1874] = 135, - [1875] = 135, - [1876] = 1876, - [1877] = 140, - [1878] = 137, - [1879] = 236, - [1880] = 138, - [1881] = 140, - [1882] = 133, - [1883] = 140, - [1884] = 132, - [1885] = 153, - [1886] = 136, - [1887] = 161, - [1888] = 155, - [1889] = 142, - [1890] = 138, - [1891] = 138, - [1892] = 153, - [1893] = 154, - [1894] = 245, - [1895] = 188, - [1896] = 154, - [1897] = 1897, - [1898] = 171, - [1899] = 153, - [1900] = 133, - [1901] = 138, - [1902] = 180, - [1903] = 155, - [1904] = 161, - [1905] = 153, - [1906] = 161, - [1907] = 137, - [1908] = 137, - [1909] = 135, - [1910] = 154, - [1911] = 161, - [1912] = 153, - [1913] = 155, - [1914] = 140, - [1915] = 171, - [1916] = 155, - [1917] = 1917, - [1918] = 154, - [1919] = 161, - [1920] = 180, + [1798] = 150, + [1799] = 141, + [1800] = 137, + [1801] = 132, + [1802] = 135, + [1803] = 142, + [1804] = 133, + [1805] = 136, + [1806] = 139, + [1807] = 138, + [1808] = 134, + [1809] = 140, + [1810] = 150, + [1811] = 135, + [1812] = 134, + [1813] = 159, + [1814] = 143, + [1815] = 150, + [1816] = 138, + [1817] = 142, + [1818] = 139, + [1819] = 150, + [1820] = 132, + [1821] = 141, + [1822] = 150, + [1823] = 137, + [1824] = 136, + [1825] = 150, + [1826] = 147, + [1827] = 140, + [1828] = 133, + [1829] = 145, + [1830] = 187, + [1831] = 150, + [1832] = 159, + [1833] = 143, + [1834] = 191, + [1835] = 745, + [1836] = 147, + [1837] = 145, + [1838] = 184, + [1839] = 150, + [1840] = 3, + [1841] = 201, + [1842] = 199, + [1843] = 219, + [1844] = 220, + [1845] = 214, + [1846] = 1846, + [1847] = 227, + [1848] = 1848, + [1849] = 207, + [1850] = 197, + [1851] = 208, + [1852] = 225, + [1853] = 235, + [1854] = 231, + [1855] = 204, + [1856] = 209, + [1857] = 1857, + [1858] = 145, + [1859] = 203, + [1860] = 200, + [1861] = 196, + [1862] = 1862, + [1863] = 139, + [1864] = 244, + [1865] = 1865, + [1866] = 187, + [1867] = 241, + [1868] = 798, + [1869] = 229, + [1870] = 184, + [1871] = 745, + [1872] = 133, + [1873] = 1873, + [1874] = 213, + [1875] = 792, + [1876] = 138, + [1877] = 147, + [1878] = 212, + [1879] = 191, + [1880] = 1880, + [1881] = 132, + [1882] = 211, + [1883] = 216, + [1884] = 150, + [1885] = 215, + [1886] = 216, + [1887] = 1880, + [1888] = 147, + [1889] = 215, + [1890] = 145, + [1891] = 200, + [1892] = 139, + [1893] = 1893, + [1894] = 203, + [1895] = 199, + [1896] = 1896, + [1897] = 225, + [1898] = 209, + [1899] = 1899, + [1900] = 145, + [1901] = 1901, + [1902] = 196, + [1903] = 244, + [1904] = 798, + [1905] = 201, + [1906] = 147, + [1907] = 214, + [1908] = 229, + [1909] = 235, + [1910] = 1846, + [1911] = 1873, + [1912] = 1912, + [1913] = 207, + [1914] = 1914, + [1915] = 150, + [1916] = 241, + [1917] = 231, + [1918] = 227, + [1919] = 197, + [1920] = 3, [1921] = 1921, - [1922] = 140, - [1923] = 155, - [1924] = 140, - [1925] = 154, - [1926] = 134, - [1927] = 137, - [1928] = 133, - [1929] = 135, - [1930] = 1930, - [1931] = 180, + [1922] = 1848, + [1923] = 1923, + [1924] = 159, + [1925] = 211, + [1926] = 212, + [1927] = 1865, + [1928] = 141, + [1929] = 1857, + [1930] = 792, + [1931] = 208, [1932] = 138, - [1933] = 171, - [1934] = 154, - [1935] = 133, - [1936] = 1917, - [1937] = 180, - [1938] = 132, - [1939] = 155, - [1940] = 1940, - [1941] = 236, - [1942] = 153, - [1943] = 171, - [1944] = 188, + [1933] = 213, + [1934] = 1862, + [1935] = 132, + [1936] = 220, + [1937] = 204, + [1938] = 219, + [1939] = 143, + [1940] = 132, + [1941] = 139, + [1942] = 187, + [1943] = 133, + [1944] = 1944, [1945] = 138, - [1946] = 142, - [1947] = 140, - [1948] = 155, - [1949] = 1940, - [1950] = 171, - [1951] = 141, - [1952] = 231, - [1953] = 136, - [1954] = 137, - [1955] = 140, - [1956] = 137, - [1957] = 135, - [1958] = 161, - [1959] = 1930, - [1960] = 139, - [1961] = 180, - [1962] = 153, - [1963] = 180, - [1964] = 161, - [1965] = 245, - [1966] = 138, - [1967] = 171, - [1968] = 231, - [1969] = 133, - [1970] = 724, - [1971] = 161, - [1972] = 1972, - [1973] = 141, - [1974] = 153, - [1975] = 231, - [1976] = 135, - [1977] = 133, - [1978] = 248, - [1979] = 197, - [1980] = 242, - [1981] = 236, - [1982] = 245, - [1983] = 221, - [1984] = 142, - [1985] = 219, - [1986] = 216, - [1987] = 215, - [1988] = 214, - [1989] = 132, - [1990] = 237, - [1991] = 133, - [1992] = 140, - [1993] = 137, - [1994] = 134, - [1995] = 210, - [1996] = 212, - [1997] = 211, - [1998] = 206, - [1999] = 138, - [2000] = 155, - [2001] = 236, - [2002] = 209, - [2003] = 205, - [2004] = 204, - [2005] = 198, - [2006] = 141, - [2007] = 236, - [2008] = 140, - [2009] = 136, - [2010] = 139, - [2011] = 154, - [2012] = 229, - [2013] = 217, - [2014] = 153, - [2015] = 161, - [2016] = 138, - [2017] = 137, - [2018] = 2018, - [2019] = 2019, - [2020] = 717, - [2021] = 247, - [2022] = 256, - [2023] = 250, - [2024] = 132, - [2025] = 249, - [2026] = 139, - [2027] = 138, - [2028] = 140, - [2029] = 220, - [2030] = 234, - [2031] = 243, - [2032] = 240, - [2033] = 233, - [2034] = 232, - [2035] = 228, - [2036] = 224, - [2037] = 200, - [2038] = 137, - [2039] = 201, - [2040] = 203, - [2041] = 139, - [2042] = 141, - [2043] = 134, - [2044] = 154, - [2045] = 231, - [2046] = 161, - [2047] = 153, - [2048] = 213, - [2049] = 137, - [2050] = 142, - [2051] = 136, - [2052] = 134, - [2053] = 230, - [2054] = 2054, - [2055] = 135, - [2056] = 222, - [2057] = 155, - [2058] = 251, - [2059] = 146, - [2060] = 171, - [2061] = 188, - [2062] = 140, - [2063] = 136, - [2064] = 161, - [2065] = 660, - [2066] = 153, - [2067] = 132, - [2068] = 2, - [2069] = 135, - [2070] = 147, - [2071] = 180, - [2072] = 143, - [2073] = 142, - [2074] = 148, - [2075] = 154, - [2076] = 163, - [2077] = 155, - [2078] = 152, - [2079] = 164, - [2080] = 180, - [2081] = 138, - [2082] = 135, - [2083] = 159, - [2084] = 171, - [2085] = 2085, - [2086] = 2086, - [2087] = 149, - [2088] = 231, - [2089] = 161, - [2090] = 171, - [2091] = 164, - [2092] = 171, - [2093] = 180, - [2094] = 155, - [2095] = 188, - [2096] = 142, - [2097] = 149, - [2098] = 724, - [2099] = 159, - [2100] = 153, - [2101] = 2085, - [2102] = 163, - [2103] = 704, - [2104] = 141, - [2105] = 143, - [2106] = 2106, - [2107] = 137, + [1946] = 139, + [1947] = 1947, + [1948] = 191, + [1949] = 1949, + [1950] = 141, + [1951] = 1951, + [1952] = 145, + [1953] = 1953, + [1954] = 143, + [1955] = 159, + [1956] = 138, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 147, + [1961] = 132, + [1962] = 145, + [1963] = 132, + [1964] = 202, + [1965] = 145, + [1966] = 1966, + [1967] = 133, + [1968] = 139, + [1969] = 139, + [1970] = 1970, + [1971] = 138, + [1972] = 134, + [1973] = 140, + [1974] = 145, + [1975] = 1975, + [1976] = 133, + [1977] = 191, + [1978] = 1978, + [1979] = 147, + [1980] = 147, + [1981] = 1981, + [1982] = 133, + [1983] = 184, + [1984] = 1984, + [1985] = 138, + [1986] = 143, + [1987] = 159, + [1988] = 132, + [1989] = 1989, + [1990] = 132, + [1991] = 1991, + [1992] = 137, + [1993] = 1993, + [1994] = 187, + [1995] = 199, + [1996] = 143, + [1997] = 136, + [1998] = 159, + [1999] = 1999, + [2000] = 142, + [2001] = 138, + [2002] = 147, + [2003] = 138, + [2004] = 141, + [2005] = 139, + [2006] = 133, + [2007] = 139, + [2008] = 132, + [2009] = 135, + [2010] = 147, + [2011] = 143, + [2012] = 159, + [2013] = 159, + [2014] = 143, + [2015] = 2015, + [2016] = 145, + [2017] = 132, + [2018] = 138, + [2019] = 147, + [2020] = 184, + [2021] = 145, + [2022] = 145, + [2023] = 147, + [2024] = 139, + [2025] = 147, + [2026] = 145, + [2027] = 2027, + [2028] = 133, + [2029] = 244, + [2030] = 191, + [2031] = 132, + [2032] = 191, + [2033] = 138, + [2034] = 187, + [2035] = 143, + [2036] = 159, + [2037] = 139, + [2038] = 141, + [2039] = 143, + [2040] = 159, + [2041] = 187, + [2042] = 2042, + [2043] = 132, + [2044] = 143, + [2045] = 139, + [2046] = 140, + [2047] = 133, + [2048] = 187, + [2049] = 2042, + [2050] = 191, + [2051] = 184, + [2052] = 138, + [2053] = 141, + [2054] = 137, + [2055] = 132, + [2056] = 132, + [2057] = 159, + [2058] = 2058, + [2059] = 199, + [2060] = 191, + [2061] = 136, + [2062] = 138, + [2063] = 244, + [2064] = 142, + [2065] = 147, + [2066] = 2066, + [2067] = 187, + [2068] = 145, + [2069] = 2066, + [2070] = 135, + [2071] = 187, + [2072] = 139, + [2073] = 134, + [2074] = 147, + [2075] = 138, + [2076] = 191, + [2077] = 141, + [2078] = 187, + [2079] = 145, + [2080] = 133, + [2081] = 202, + [2082] = 159, + [2083] = 139, + [2084] = 2058, + [2085] = 143, + [2086] = 191, + [2087] = 201, + [2088] = 202, + [2089] = 199, + [2090] = 140, + [2091] = 145, + [2092] = 133, + [2093] = 134, + [2094] = 147, + [2095] = 137, + [2096] = 187, + [2097] = 191, + [2098] = 138, + [2099] = 136, + [2100] = 198, + [2101] = 145, + [2102] = 132, + [2103] = 149, + [2104] = 134, + [2105] = 137, + [2106] = 206, + [2107] = 244, [2108] = 152, - [2109] = 2109, - [2110] = 2110, - [2111] = 154, - [2112] = 161, - [2113] = 697, - [2114] = 138, - [2115] = 133, - [2116] = 154, - [2117] = 148, - [2118] = 2118, - [2119] = 2119, - [2120] = 180, - [2121] = 155, - [2122] = 236, - [2123] = 2123, - [2124] = 2119, - [2125] = 147, - [2126] = 717, - [2127] = 146, - [2128] = 2086, - [2129] = 161, - [2130] = 135, - [2131] = 153, - [2132] = 132, - [2133] = 154, - [2134] = 155, - [2135] = 139, - [2136] = 2136, - [2137] = 2137, - [2138] = 140, - [2139] = 188, - [2140] = 134, - [2141] = 2141, - [2142] = 245, - [2143] = 180, - [2144] = 702, - [2145] = 171, - [2146] = 153, - [2147] = 154, - [2148] = 180, - [2149] = 660, - [2150] = 2150, - [2151] = 155, - [2152] = 136, - [2153] = 161, - [2154] = 153, - [2155] = 209, - [2156] = 171, - [2157] = 135, - [2158] = 233, - [2159] = 231, - [2160] = 209, - [2161] = 211, - [2162] = 197, - [2163] = 171, - [2164] = 704, - [2165] = 248, - [2166] = 206, - [2167] = 237, - [2168] = 180, - [2169] = 221, - [2170] = 697, - [2171] = 132, - [2172] = 180, - [2173] = 180, - [2174] = 219, - [2175] = 133, - [2176] = 222, - [2177] = 210, - [2178] = 236, - [2179] = 171, - [2180] = 247, - [2181] = 256, - [2182] = 250, - [2183] = 2118, - [2184] = 2184, - [2185] = 234, - [2186] = 249, - [2187] = 243, - [2188] = 138, - [2189] = 134, - [2190] = 240, - [2191] = 220, - [2192] = 2137, - [2193] = 171, - [2194] = 242, - [2195] = 2195, - [2196] = 232, - [2197] = 228, - [2198] = 216, - [2199] = 702, - [2200] = 180, - [2201] = 141, - [2202] = 217, - [2203] = 229, - [2204] = 224, - [2205] = 200, - [2206] = 215, - [2207] = 171, - [2208] = 198, - [2209] = 214, - [2210] = 204, - [2211] = 2, - [2212] = 251, - [2213] = 205, - [2214] = 201, - [2215] = 203, - [2216] = 209, - [2217] = 139, - [2218] = 188, - [2219] = 188, - [2220] = 137, - [2221] = 142, - [2222] = 2222, - [2223] = 212, - [2224] = 213, - [2225] = 136, - [2226] = 153, - [2227] = 161, - [2228] = 140, - [2229] = 245, - [2230] = 188, - [2231] = 230, - [2232] = 245, - [2233] = 188, - [2234] = 221, - [2235] = 219, - [2236] = 242, - [2237] = 197, - [2238] = 219, - [2239] = 248, - [2240] = 234, - [2241] = 220, - [2242] = 217, - [2243] = 229, - [2244] = 188, - [2245] = 136, - [2246] = 198, - [2247] = 245, - [2248] = 204, - [2249] = 205, - [2250] = 206, - [2251] = 211, - [2252] = 245, - [2253] = 212, - [2254] = 132, - [2255] = 216, - [2256] = 215, - [2257] = 214, - [2258] = 214, - [2259] = 2259, - [2260] = 215, - [2261] = 216, - [2262] = 210, - [2263] = 154, - [2264] = 212, - [2265] = 213, - [2266] = 211, - [2267] = 206, - [2268] = 221, - [2269] = 242, - [2270] = 197, - [2271] = 248, - [2272] = 251, - [2273] = 247, - [2274] = 256, - [2275] = 2, - [2276] = 133, - [2277] = 250, - [2278] = 236, - [2279] = 249, - [2280] = 243, - [2281] = 240, - [2282] = 155, - [2283] = 237, - [2284] = 232, - [2285] = 228, - [2286] = 224, - [2287] = 200, - [2288] = 201, - [2289] = 205, - [2290] = 203, - [2291] = 153, - [2292] = 161, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 248, - [2297] = 209, - [2298] = 2298, + [2109] = 202, + [2110] = 135, + [2111] = 228, + [2112] = 148, + [2113] = 230, + [2114] = 232, + [2115] = 234, + [2116] = 165, + [2117] = 236, + [2118] = 237, + [2119] = 3, + [2120] = 147, + [2121] = 160, + [2122] = 238, + [2123] = 240, + [2124] = 135, + [2125] = 154, + [2126] = 243, + [2127] = 151, + [2128] = 231, + [2129] = 250, + [2130] = 133, + [2131] = 252, + [2132] = 253, + [2133] = 254, + [2134] = 802, + [2135] = 255, + [2136] = 141, + [2137] = 187, + [2138] = 159, + [2139] = 143, + [2140] = 141, + [2141] = 161, + [2142] = 256, + [2143] = 191, + [2144] = 2144, + [2145] = 257, + [2146] = 184, + [2147] = 241, + [2148] = 214, + [2149] = 258, + [2150] = 259, + [2151] = 2151, + [2152] = 260, + [2153] = 225, + [2154] = 261, + [2155] = 262, + [2156] = 132, + [2157] = 264, + [2158] = 229, + [2159] = 233, + [2160] = 270, + [2161] = 269, + [2162] = 268, + [2163] = 138, + [2164] = 136, + [2165] = 143, + [2166] = 199, + [2167] = 199, + [2168] = 265, + [2169] = 136, + [2170] = 137, + [2171] = 159, + [2172] = 147, + [2173] = 133, + [2174] = 139, + [2175] = 235, + [2176] = 197, + [2177] = 141, + [2178] = 159, + [2179] = 140, + [2180] = 227, + [2181] = 801, + [2182] = 200, + [2183] = 138, + [2184] = 196, + [2185] = 143, + [2186] = 157, + [2187] = 135, + [2188] = 203, + [2189] = 204, + [2190] = 142, + [2191] = 207, + [2192] = 208, + [2193] = 209, + [2194] = 139, + [2195] = 133, + [2196] = 211, + [2197] = 212, + [2198] = 142, + [2199] = 142, + [2200] = 2200, + [2201] = 213, + [2202] = 140, + [2203] = 215, + [2204] = 216, + [2205] = 202, + [2206] = 139, + [2207] = 145, + [2208] = 132, + [2209] = 134, + [2210] = 138, + [2211] = 132, + [2212] = 745, + [2213] = 219, + [2214] = 220, + [2215] = 2215, + [2216] = 139, + [2217] = 159, + [2218] = 143, + [2219] = 138, + [2220] = 142, + [2221] = 2221, + [2222] = 159, + [2223] = 191, + [2224] = 147, + [2225] = 139, + [2226] = 133, + [2227] = 143, + [2228] = 145, + [2229] = 792, + [2230] = 134, + [2231] = 2231, + [2232] = 231, + [2233] = 184, + [2234] = 2234, + [2235] = 801, + [2236] = 152, + [2237] = 187, + [2238] = 148, + [2239] = 2144, + [2240] = 165, + [2241] = 132, + [2242] = 137, + [2243] = 2151, + [2244] = 149, + [2245] = 143, + [2246] = 147, + [2247] = 159, + [2248] = 160, + [2249] = 798, + [2250] = 143, + [2251] = 781, + [2252] = 154, + [2253] = 187, + [2254] = 145, + [2255] = 147, + [2256] = 191, + [2257] = 199, + [2258] = 745, + [2259] = 141, + [2260] = 136, + [2261] = 145, + [2262] = 151, + [2263] = 2263, + [2264] = 184, + [2265] = 161, + [2266] = 140, + [2267] = 187, + [2268] = 2263, + [2269] = 187, + [2270] = 2270, + [2271] = 159, + [2272] = 191, + [2273] = 802, + [2274] = 202, + [2275] = 191, + [2276] = 145, + [2277] = 147, + [2278] = 143, + [2279] = 159, + [2280] = 135, + [2281] = 157, + [2282] = 244, + [2283] = 269, + [2284] = 264, + [2285] = 262, + [2286] = 244, + [2287] = 211, + [2288] = 2221, + [2289] = 212, + [2290] = 261, + [2291] = 191, + [2292] = 213, + [2293] = 215, + [2294] = 260, + [2295] = 216, + [2296] = 229, + [2297] = 259, + [2298] = 159, [2299] = 135, - [2300] = 230, - [2301] = 233, - [2302] = 2302, - [2303] = 234, - [2304] = 220, - [2305] = 251, - [2306] = 217, - [2307] = 204, - [2308] = 198, - [2309] = 229, - [2310] = 198, - [2311] = 229, - [2312] = 217, - [2313] = 204, - [2314] = 205, - [2315] = 251, - [2316] = 220, - [2317] = 234, - [2318] = 142, - [2319] = 251, - [2320] = 222, - [2321] = 213, - [2322] = 206, - [2323] = 211, - [2324] = 138, - [2325] = 212, - [2326] = 231, - [2327] = 141, - [2328] = 230, - [2329] = 214, - [2330] = 215, - [2331] = 203, - [2332] = 201, - [2333] = 200, - [2334] = 216, - [2335] = 209, - [2336] = 224, - [2337] = 228, - [2338] = 232, - [2339] = 233, - [2340] = 240, - [2341] = 139, - [2342] = 219, - [2343] = 237, - [2344] = 137, - [2345] = 213, - [2346] = 243, - [2347] = 247, - [2348] = 140, - [2349] = 134, - [2350] = 171, - [2351] = 2, - [2352] = 2352, - [2353] = 221, - [2354] = 210, - [2355] = 256, - [2356] = 209, - [2357] = 250, - [2358] = 2259, - [2359] = 222, - [2360] = 210, - [2361] = 242, - [2362] = 2362, - [2363] = 230, - [2364] = 197, - [2365] = 237, - [2366] = 245, - [2367] = 222, + [2300] = 258, + [2301] = 225, + [2302] = 184, + [2303] = 781, + [2304] = 208, + [2305] = 219, + [2306] = 220, + [2307] = 207, + [2308] = 792, + [2309] = 2231, + [2310] = 257, + [2311] = 214, + [2312] = 139, + [2313] = 256, + [2314] = 204, + [2315] = 231, + [2316] = 235, + [2317] = 196, + [2318] = 137, + [2319] = 191, + [2320] = 134, + [2321] = 255, + [2322] = 187, + [2323] = 202, + [2324] = 265, + [2325] = 138, + [2326] = 184, + [2327] = 142, + [2328] = 209, + [2329] = 254, + [2330] = 253, + [2331] = 252, + [2332] = 268, + [2333] = 250, + [2334] = 187, + [2335] = 798, + [2336] = 201, + [2337] = 206, + [2338] = 136, + [2339] = 184, + [2340] = 244, + [2341] = 187, + [2342] = 243, + [2343] = 3, + [2344] = 141, + [2345] = 132, + [2346] = 191, + [2347] = 197, + [2348] = 228, + [2349] = 199, + [2350] = 230, + [2351] = 203, + [2352] = 232, + [2353] = 133, + [2354] = 2354, + [2355] = 234, + [2356] = 198, + [2357] = 187, + [2358] = 241, + [2359] = 227, + [2360] = 231, + [2361] = 191, + [2362] = 236, + [2363] = 140, + [2364] = 237, + [2365] = 238, + [2366] = 2366, + [2367] = 240, [2368] = 2368, - [2369] = 2369, - [2370] = 2293, - [2371] = 2294, - [2372] = 2295, - [2373] = 2352, - [2374] = 247, - [2375] = 256, - [2376] = 250, - [2377] = 249, - [2378] = 243, - [2379] = 240, - [2380] = 233, - [2381] = 232, - [2382] = 228, - [2383] = 224, - [2384] = 200, - [2385] = 201, - [2386] = 203, - [2387] = 249, - [2388] = 2362, - [2389] = 2368, - [2390] = 180, - [2391] = 2369, - [2392] = 204, + [2369] = 200, + [2370] = 233, + [2371] = 270, + [2372] = 143, + [2373] = 232, + [2374] = 200, + [2375] = 244, + [2376] = 138, + [2377] = 139, + [2378] = 231, + [2379] = 133, + [2380] = 244, + [2381] = 241, + [2382] = 231, + [2383] = 244, + [2384] = 214, + [2385] = 132, + [2386] = 225, + [2387] = 229, + [2388] = 214, + [2389] = 2389, + [2390] = 198, + [2391] = 2391, + [2392] = 2392, [2393] = 2393, [2394] = 2394, - [2395] = 248, - [2396] = 197, - [2397] = 171, - [2398] = 242, - [2399] = 2399, - [2400] = 2298, - [2401] = 222, - [2402] = 209, - [2403] = 221, - [2404] = 180, - [2405] = 219, - [2406] = 2406, - [2407] = 1072, - [2408] = 2408, - [2409] = 216, - [2410] = 215, - [2411] = 214, - [2412] = 230, - [2413] = 212, - [2414] = 211, - [2415] = 206, - [2416] = 205, - [2417] = 198, - [2418] = 345, - [2419] = 229, - [2420] = 217, - [2421] = 2421, - [2422] = 220, - [2423] = 234, - [2424] = 213, - [2425] = 2425, - [2426] = 203, - [2427] = 201, - [2428] = 200, - [2429] = 224, - [2430] = 228, - [2431] = 232, - [2432] = 2432, - [2433] = 2433, - [2434] = 233, - [2435] = 240, - [2436] = 2436, - [2437] = 243, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 249, - [2442] = 250, - [2443] = 256, - [2444] = 247, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 210, - [2452] = 155, - [2453] = 2453, - [2454] = 2454, - [2455] = 154, - [2456] = 2456, - [2457] = 2457, - [2458] = 237, - [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 188, - [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2481, - [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 245, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, + [2395] = 206, + [2396] = 225, + [2397] = 2397, + [2398] = 228, + [2399] = 230, + [2400] = 234, + [2401] = 236, + [2402] = 229, + [2403] = 237, + [2404] = 145, + [2405] = 238, + [2406] = 240, + [2407] = 243, + [2408] = 250, + [2409] = 252, + [2410] = 241, + [2411] = 2411, + [2412] = 253, + [2413] = 254, + [2414] = 235, + [2415] = 202, + [2416] = 197, + [2417] = 256, + [2418] = 257, + [2419] = 227, + [2420] = 258, + [2421] = 259, + [2422] = 200, + [2423] = 260, + [2424] = 261, + [2425] = 262, + [2426] = 201, + [2427] = 264, + [2428] = 233, + [2429] = 270, + [2430] = 269, + [2431] = 268, + [2432] = 159, + [2433] = 143, + [2434] = 265, + [2435] = 2435, + [2436] = 196, + [2437] = 203, + [2438] = 204, + [2439] = 142, + [2440] = 207, + [2441] = 208, + [2442] = 209, + [2443] = 211, + [2444] = 212, + [2445] = 3, + [2446] = 220, + [2447] = 213, + [2448] = 219, + [2449] = 140, + [2450] = 184, + [2451] = 255, + [2452] = 215, + [2453] = 216, + [2454] = 216, + [2455] = 215, + [2456] = 219, + [2457] = 220, + [2458] = 235, + [2459] = 197, + [2460] = 227, + [2461] = 213, + [2462] = 212, + [2463] = 211, + [2464] = 209, + [2465] = 208, + [2466] = 207, + [2467] = 225, + [2468] = 204, + [2469] = 201, + [2470] = 203, + [2471] = 196, + [2472] = 201, + [2473] = 200, + [2474] = 231, + [2475] = 214, + [2476] = 227, + [2477] = 197, + [2478] = 235, + [2479] = 141, + [2480] = 229, + [2481] = 2411, + [2482] = 196, + [2483] = 184, + [2484] = 203, + [2485] = 204, + [2486] = 241, + [2487] = 207, + [2488] = 208, + [2489] = 209, + [2490] = 2393, + [2491] = 211, + [2492] = 212, + [2493] = 213, + [2494] = 198, + [2495] = 2392, + [2496] = 2435, + [2497] = 215, + [2498] = 216, [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 2508, - [2509] = 2509, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 2522, + [2500] = 2397, + [2501] = 241, + [2502] = 219, + [2503] = 220, + [2504] = 137, + [2505] = 2391, + [2506] = 206, + [2507] = 265, + [2508] = 199, + [2509] = 136, + [2510] = 268, + [2511] = 3, + [2512] = 269, + [2513] = 270, + [2514] = 233, + [2515] = 264, + [2516] = 262, + [2517] = 261, + [2518] = 260, + [2519] = 259, + [2520] = 258, + [2521] = 257, + [2522] = 256, [2523] = 2523, - [2524] = 2524, - [2525] = 2496, - [2526] = 2445, - [2527] = 2494, - [2528] = 2516, - [2529] = 2522, - [2530] = 2492, - [2531] = 2491, - [2532] = 219, - [2533] = 2518, - [2534] = 2513, - [2535] = 2519, - [2536] = 203, - [2537] = 201, - [2538] = 200, - [2539] = 224, - [2540] = 228, - [2541] = 2514, - [2542] = 232, - [2543] = 233, - [2544] = 240, - [2545] = 243, - [2546] = 249, - [2547] = 250, - [2548] = 221, - [2549] = 256, - [2550] = 247, - [2551] = 2489, - [2552] = 2487, - [2553] = 2520, - [2554] = 2521, - [2555] = 216, - [2556] = 2486, - [2557] = 2523, - [2558] = 2497, - [2559] = 2498, - [2560] = 2499, - [2561] = 2517, - [2562] = 215, - [2563] = 2393, - [2564] = 2485, - [2565] = 2483, - [2566] = 2481, - [2567] = 213, - [2568] = 2478, - [2569] = 214, - [2570] = 2436, - [2571] = 2515, - [2572] = 245, - [2573] = 2524, - [2574] = 2408, - [2575] = 234, - [2576] = 206, - [2577] = 220, - [2578] = 251, - [2579] = 237, - [2580] = 2394, - [2581] = 217, - [2582] = 211, - [2583] = 229, - [2584] = 2474, - [2585] = 205, - [2586] = 2462, - [2587] = 2463, - [2588] = 2466, - [2589] = 2467, - [2590] = 2399, - [2591] = 2460, - [2592] = 2468, - [2593] = 2469, - [2594] = 2470, - [2595] = 204, - [2596] = 2472, - [2597] = 210, + [2524] = 255, + [2525] = 254, + [2526] = 228, + [2527] = 230, + [2528] = 232, + [2529] = 234, + [2530] = 236, + [2531] = 237, + [2532] = 238, + [2533] = 240, + [2534] = 243, + [2535] = 250, + [2536] = 252, + [2537] = 253, + [2538] = 254, + [2539] = 255, + [2540] = 256, + [2541] = 257, + [2542] = 258, + [2543] = 259, + [2544] = 260, + [2545] = 261, + [2546] = 262, + [2547] = 264, + [2548] = 233, + [2549] = 270, + [2550] = 269, + [2551] = 268, + [2552] = 253, + [2553] = 252, + [2554] = 250, + [2555] = 191, + [2556] = 243, + [2557] = 147, + [2558] = 240, + [2559] = 238, + [2560] = 265, + [2561] = 237, + [2562] = 236, + [2563] = 234, + [2564] = 187, + [2565] = 232, + [2566] = 230, + [2567] = 228, + [2568] = 135, + [2569] = 2499, + [2570] = 206, + [2571] = 134, + [2572] = 2394, + [2573] = 198, + [2574] = 2574, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, + [2579] = 2579, + [2580] = 2580, + [2581] = 2581, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, + [2588] = 2389, + [2589] = 2589, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, + [2595] = 2595, + [2596] = 2596, + [2597] = 2597, [2598] = 2598, - [2599] = 2477, + [2599] = 2599, [2600] = 2600, - [2601] = 198, - [2602] = 2512, - [2603] = 209, - [2604] = 222, + [2601] = 2601, + [2602] = 2602, + [2603] = 2603, + [2604] = 2604, [2605] = 2605, - [2606] = 212, - [2607] = 242, - [2608] = 248, - [2609] = 2500, - [2610] = 2501, - [2611] = 2421, - [2612] = 2425, - [2613] = 2488, - [2614] = 2432, - [2615] = 2502, - [2616] = 2433, - [2617] = 2503, - [2618] = 2438, - [2619] = 197, - [2620] = 2439, - [2621] = 2504, - [2622] = 2440, - [2623] = 2505, - [2624] = 2493, - [2625] = 2506, - [2626] = 2446, - [2627] = 717, - [2628] = 2447, - [2629] = 2507, - [2630] = 2448, - [2631] = 2482, - [2632] = 2449, - [2633] = 2450, - [2634] = 2480, - [2635] = 2453, - [2636] = 2508, - [2637] = 2454, - [2638] = 2509, - [2639] = 2456, - [2640] = 345, - [2641] = 2457, - [2642] = 2479, - [2643] = 2459, - [2644] = 2510, - [2645] = 2461, - [2646] = 2511, - [2647] = 2464, + [2606] = 2606, + [2607] = 2607, + [2608] = 2608, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 2629, + [2630] = 198, + [2631] = 2631, + [2632] = 2632, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 206, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 228, [2648] = 230, - [2649] = 2465, - [2650] = 2495, - [2651] = 2471, - [2652] = 2476, - [2653] = 2475, - [2654] = 200, - [2655] = 234, - [2656] = 214, + [2649] = 2649, + [2650] = 234, + [2651] = 236, + [2652] = 237, + [2653] = 238, + [2654] = 229, + [2655] = 240, + [2656] = 243, [2657] = 250, - [2658] = 212, - [2659] = 219, - [2660] = 211, - [2661] = 213, - [2662] = 206, - [2663] = 2663, - [2664] = 221, - [2665] = 205, - [2666] = 2666, - [2667] = 204, - [2668] = 251, - [2669] = 203, - [2670] = 198, - [2671] = 2671, - [2672] = 215, - [2673] = 2673, - [2674] = 230, - [2675] = 237, - [2676] = 210, - [2677] = 247, - [2678] = 229, - [2679] = 242, - [2680] = 217, + [2658] = 252, + [2659] = 253, + [2660] = 254, + [2661] = 255, + [2662] = 256, + [2663] = 257, + [2664] = 258, + [2665] = 259, + [2666] = 260, + [2667] = 261, + [2668] = 262, + [2669] = 264, + [2670] = 244, + [2671] = 233, + [2672] = 270, + [2673] = 269, + [2674] = 268, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, + [2678] = 2678, + [2679] = 265, + [2680] = 2680, [2681] = 2681, - [2682] = 220, - [2683] = 245, - [2684] = 197, - [2685] = 201, - [2686] = 248, - [2687] = 228, - [2688] = 216, - [2689] = 224, - [2690] = 222, - [2691] = 232, - [2692] = 233, - [2693] = 240, - [2694] = 243, - [2695] = 2695, - [2696] = 256, - [2697] = 249, - [2698] = 209, - [2699] = 2699, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 1143, - [2704] = 2700, - [2705] = 660, - [2706] = 2700, - [2707] = 2699, - [2708] = 2700, + [2682] = 2682, + [2683] = 2683, + [2684] = 2684, + [2685] = 2685, + [2686] = 2686, + [2687] = 2687, + [2688] = 220, + [2689] = 219, + [2690] = 216, + [2691] = 215, + [2692] = 371, + [2693] = 232, + [2694] = 212, + [2695] = 211, + [2696] = 209, + [2697] = 208, + [2698] = 207, + [2699] = 225, + [2700] = 204, + [2701] = 203, + [2702] = 196, + [2703] = 2703, + [2704] = 2704, + [2705] = 1159, + [2706] = 184, + [2707] = 213, + [2708] = 235, [2709] = 2709, - [2710] = 2709, - [2711] = 697, - [2712] = 704, - [2713] = 2123, - [2714] = 155, - [2715] = 251, - [2716] = 2716, - [2717] = 2717, - [2718] = 154, - [2719] = 2719, - [2720] = 2719, - [2721] = 2019, - [2722] = 2018, + [2710] = 197, + [2711] = 187, + [2712] = 227, + [2713] = 214, + [2714] = 231, + [2715] = 2715, + [2716] = 201, + [2717] = 200, + [2718] = 191, + [2719] = 145, + [2720] = 147, + [2721] = 203, + [2722] = 2607, [2723] = 2723, - [2724] = 2723, - [2725] = 2136, - [2726] = 2141, - [2727] = 2727, - [2728] = 2110, - [2729] = 2109, - [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2733, - [2735] = 2735, - [2736] = 2736, - [2737] = 2732, - [2738] = 2723, - [2739] = 2735, - [2740] = 2150, - [2741] = 2735, - [2742] = 2732, - [2743] = 2733, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2749, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2753, - [2756] = 2754, - [2757] = 2757, - [2758] = 2758, - [2759] = 2758, - [2760] = 2753, - [2761] = 2761, - [2762] = 2754, - [2763] = 2757, - [2764] = 2764, - [2765] = 2764, - [2766] = 2753, - [2767] = 2767, - [2768] = 2754, - [2769] = 2769, - [2770] = 2757, - [2771] = 2754, - [2772] = 2753, - [2773] = 2754, - [2774] = 2757, - [2775] = 2757, - [2776] = 2776, - [2777] = 2754, - [2778] = 2753, - [2779] = 2758, - [2780] = 2753, - [2781] = 2754, - [2782] = 2757, - [2783] = 2783, - [2784] = 2784, - [2785] = 2753, - [2786] = 2751, - [2787] = 2753, - [2788] = 2757, - [2789] = 2749, - [2790] = 2764, - [2791] = 2754, - [2792] = 2754, - [2793] = 2793, - [2794] = 2794, - [2795] = 2751, - [2796] = 2757, - [2797] = 2749, - [2798] = 2753, - [2799] = 2754, - [2800] = 2757, - [2801] = 2757, - [2802] = 2764, - [2803] = 2751, - [2804] = 2753, - [2805] = 2805, - [2806] = 2757, - [2807] = 2807, - [2808] = 2757, - [2809] = 2754, - [2810] = 2753, - [2811] = 2754, - [2812] = 2757, - [2813] = 2758, - [2814] = 2753, - [2815] = 2754, - [2816] = 2757, - [2817] = 2753, - [2818] = 2754, - [2819] = 2757, - [2820] = 2757, - [2821] = 2821, - [2822] = 2753, - [2823] = 2754, - [2824] = 2753, - [2825] = 2757, - [2826] = 2753, - [2827] = 2753, - [2828] = 2757, - [2829] = 767, - [2830] = 767, - [2831] = 2831, - [2832] = 2832, - [2833] = 766, - [2834] = 766, - [2835] = 626, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2838, - [2840] = 616, - [2841] = 2841, - [2842] = 2836, - [2843] = 2838, - [2844] = 2844, - [2845] = 2845, - [2846] = 2846, - [2847] = 2838, - [2848] = 2848, - [2849] = 2849, - [2850] = 2837, - [2851] = 2838, - [2852] = 2838, - [2853] = 2838, - [2854] = 2838, - [2855] = 640, - [2856] = 613, - [2857] = 607, - [2858] = 594, - [2859] = 2838, - [2860] = 591, - [2861] = 590, - [2862] = 587, - [2863] = 584, - [2864] = 582, - [2865] = 580, - [2866] = 2838, - [2867] = 2838, - [2868] = 579, - [2869] = 575, - [2870] = 578, - [2871] = 639, - [2872] = 642, - [2873] = 643, - [2874] = 2838, - [2875] = 2838, - [2876] = 637, - [2877] = 635, - [2878] = 628, - [2879] = 2838, - [2880] = 603, - [2881] = 2881, - [2882] = 599, - [2883] = 2838, - [2884] = 2838, - [2885] = 615, - [2886] = 620, - [2887] = 622, - [2888] = 2838, - [2889] = 2838, - [2890] = 2849, - [2891] = 2838, - [2892] = 2892, - [2893] = 2848, - [2894] = 629, - [2895] = 2838, - [2896] = 2896, - [2897] = 643, - [2898] = 2898, - [2899] = 591, - [2900] = 2900, - [2901] = 2901, - [2902] = 2902, - [2903] = 590, - [2904] = 587, + [2724] = 227, + [2725] = 2608, + [2726] = 2627, + [2727] = 2625, + [2728] = 2584, + [2729] = 2585, + [2730] = 225, + [2731] = 2586, + [2732] = 2616, + [2733] = 2615, + [2734] = 2587, + [2735] = 2614, + [2736] = 2606, + [2737] = 2589, + [2738] = 229, + [2739] = 2626, + [2740] = 2590, + [2741] = 371, + [2742] = 2591, + [2743] = 2592, + [2744] = 2629, + [2745] = 214, + [2746] = 2605, + [2747] = 2685, + [2748] = 2593, + [2749] = 2628, + [2750] = 2604, + [2751] = 2594, + [2752] = 2595, + [2753] = 2613, + [2754] = 2596, + [2755] = 2597, + [2756] = 2684, + [2757] = 2612, + [2758] = 264, + [2759] = 262, + [2760] = 211, + [2761] = 2577, + [2762] = 2603, + [2763] = 209, + [2764] = 208, + [2765] = 2602, + [2766] = 2683, + [2767] = 2623, + [2768] = 212, + [2769] = 2682, + [2770] = 261, + [2771] = 260, + [2772] = 2601, + [2773] = 259, + [2774] = 258, + [2775] = 2681, + [2776] = 265, + [2777] = 2611, + [2778] = 2680, + [2779] = 2610, + [2780] = 2678, + [2781] = 2621, + [2782] = 257, + [2783] = 256, + [2784] = 255, + [2785] = 254, + [2786] = 213, + [2787] = 206, + [2788] = 2583, + [2789] = 253, + [2790] = 2675, + [2791] = 252, + [2792] = 2600, + [2793] = 2599, + [2794] = 250, + [2795] = 243, + [2796] = 240, + [2797] = 238, + [2798] = 244, + [2799] = 2598, + [2800] = 2677, + [2801] = 236, + [2802] = 200, + [2803] = 234, + [2804] = 2635, + [2805] = 2676, + [2806] = 232, + [2807] = 230, + [2808] = 2582, + [2809] = 228, + [2810] = 2631, + [2811] = 2609, + [2812] = 2581, + [2813] = 2620, + [2814] = 196, + [2815] = 231, + [2816] = 204, + [2817] = 2632, + [2818] = 2633, + [2819] = 2619, + [2820] = 2574, + [2821] = 2709, + [2822] = 2634, + [2823] = 2644, + [2824] = 216, + [2825] = 2646, + [2826] = 2637, + [2827] = 2638, + [2828] = 2639, + [2829] = 801, + [2830] = 2640, + [2831] = 198, + [2832] = 197, + [2833] = 2641, + [2834] = 207, + [2835] = 2642, + [2836] = 2643, + [2837] = 2649, + [2838] = 2686, + [2839] = 233, + [2840] = 2840, + [2841] = 215, + [2842] = 2842, + [2843] = 2617, + [2844] = 2703, + [2845] = 2624, + [2846] = 2575, + [2847] = 201, + [2848] = 2715, + [2849] = 237, + [2850] = 268, + [2851] = 2576, + [2852] = 235, + [2853] = 270, + [2854] = 269, + [2855] = 2578, + [2856] = 2687, + [2857] = 241, + [2858] = 2645, + [2859] = 219, + [2860] = 2580, + [2861] = 220, + [2862] = 2618, + [2863] = 2579, + [2864] = 214, + [2865] = 243, + [2866] = 207, + [2867] = 2867, + [2868] = 254, + [2869] = 270, + [2870] = 2870, + [2871] = 208, + [2872] = 2872, + [2873] = 233, + [2874] = 253, + [2875] = 204, + [2876] = 264, + [2877] = 252, + [2878] = 209, + [2879] = 200, + [2880] = 258, + [2881] = 244, + [2882] = 196, + [2883] = 262, + [2884] = 2884, + [2885] = 261, + [2886] = 197, + [2887] = 265, + [2888] = 255, + [2889] = 268, + [2890] = 260, + [2891] = 2891, + [2892] = 250, + [2893] = 234, + [2894] = 211, + [2895] = 240, + [2896] = 201, + [2897] = 238, + [2898] = 212, + [2899] = 198, + [2900] = 259, + [2901] = 229, + [2902] = 203, + [2903] = 237, + [2904] = 236, [2905] = 2905, - [2906] = 584, - [2907] = 582, - [2908] = 580, - [2909] = 579, - [2910] = 660, - [2911] = 575, - [2912] = 607, - [2913] = 642, - [2914] = 2914, - [2915] = 613, - [2916] = 594, - [2917] = 640, - [2918] = 637, - [2919] = 635, - [2920] = 628, - [2921] = 2921, - [2922] = 2922, - [2923] = 603, - [2924] = 615, - [2925] = 616, + [2906] = 206, + [2907] = 220, + [2908] = 213, + [2909] = 219, + [2910] = 257, + [2911] = 256, + [2912] = 231, + [2913] = 225, + [2914] = 269, + [2915] = 215, + [2916] = 235, + [2917] = 216, + [2918] = 228, + [2919] = 241, + [2920] = 230, + [2921] = 227, + [2922] = 232, + [2923] = 745, + [2924] = 2924, + [2925] = 2924, [2926] = 2926, [2927] = 2927, - [2928] = 620, - [2929] = 2927, - [2930] = 622, - [2931] = 626, - [2932] = 629, - [2933] = 639, - [2934] = 2934, - [2935] = 2935, - [2936] = 578, - [2937] = 2937, + [2928] = 2926, + [2929] = 2929, + [2930] = 2924, + [2931] = 2924, + [2932] = 1278, + [2933] = 2933, + [2934] = 798, + [2935] = 792, + [2936] = 2933, + [2937] = 147, [2938] = 2938, - [2939] = 599, - [2940] = 2937, - [2941] = 2941, + [2939] = 145, + [2940] = 2940, + [2941] = 241, [2942] = 2942, - [2943] = 2943, + [2943] = 2942, [2944] = 2944, [2945] = 2945, [2946] = 2946, - [2947] = 2947, + [2947] = 2944, [2948] = 2948, [2949] = 2949, [2950] = 2950, - [2951] = 2944, - [2952] = 2947, - [2953] = 2944, - [2954] = 2954, - [2955] = 2955, - [2956] = 2956, - [2957] = 2957, + [2951] = 2951, + [2952] = 2945, + [2953] = 2949, + [2954] = 2945, + [2955] = 2944, + [2956] = 2946, + [2957] = 2946, [2958] = 2958, - [2959] = 2959, + [2959] = 2949, [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2963, - [2964] = 2964, - [2965] = 2941, - [2966] = 2966, + [2963] = 1957, + [2964] = 1958, + [2965] = 2965, + [2966] = 2965, [2967] = 2967, [2968] = 2968, - [2969] = 2969, - [2970] = 2963, + [2969] = 2967, + [2970] = 2968, [2971] = 2971, - [2972] = 2943, - [2973] = 2973, - [2974] = 2945, - [2975] = 2942, - [2976] = 2956, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2946, - [2984] = 704, - [2985] = 2985, - [2986] = 137, - [2987] = 2973, - [2988] = 2988, - [2989] = 2971, - [2990] = 2990, + [2972] = 2965, + [2973] = 2968, + [2974] = 2968, + [2975] = 2968, + [2976] = 2965, + [2977] = 2967, + [2978] = 2967, + [2979] = 2965, + [2980] = 2967, + [2981] = 1978, + [2982] = 2967, + [2983] = 1993, + [2984] = 2984, + [2985] = 2967, + [2986] = 2968, + [2987] = 2968, + [2988] = 2967, + [2989] = 2965, + [2990] = 2965, [2991] = 2991, - [2992] = 2977, - [2993] = 697, - [2994] = 2959, - [2995] = 138, - [2996] = 660, - [2997] = 2948, - [2998] = 2982, - [2999] = 2980, - [3000] = 2985, - [3001] = 140, - [3002] = 2991, - [3003] = 2954, - [3004] = 2949, - [3005] = 2958, - [3006] = 2957, - [3007] = 2944, - [3008] = 2961, - [3009] = 3009, - [3010] = 3010, - [3011] = 2955, - [3012] = 3012, + [2992] = 2965, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2967, + [2997] = 2967, + [2998] = 2998, + [2999] = 2999, + [3000] = 2965, + [3001] = 3001, + [3002] = 2968, + [3003] = 3003, + [3004] = 2991, + [3005] = 2968, + [3006] = 2965, + [3007] = 2971, + [3008] = 2984, + [3009] = 2968, + [3010] = 2968, + [3011] = 2967, + [3012] = 2965, [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3012, - [3017] = 3012, - [3018] = 3018, - [3019] = 3014, - [3020] = 3020, - [3021] = 3014, + [3014] = 2968, + [3015] = 2967, + [3016] = 3016, + [3017] = 2968, + [3018] = 2965, + [3019] = 2967, + [3020] = 2995, + [3021] = 2991, [3022] = 3022, - [3023] = 660, - [3024] = 3020, - [3025] = 3025, - [3026] = 3026, - [3027] = 3014, - [3028] = 697, - [3029] = 3014, - [3030] = 3030, - [3031] = 3031, - [3032] = 3012, - [3033] = 3014, - [3034] = 3012, - [3035] = 154, - [3036] = 3014, - [3037] = 3014, - [3038] = 3038, - [3039] = 3014, - [3040] = 3040, - [3041] = 3012, - [3042] = 3042, - [3043] = 3031, - [3044] = 3014, - [3045] = 3012, + [3023] = 2984, + [3024] = 2968, + [3025] = 1984, + [3026] = 1989, + [3027] = 2971, + [3028] = 2967, + [3029] = 3029, + [3030] = 2984, + [3031] = 2965, + [3032] = 2965, + [3033] = 2967, + [3034] = 2968, + [3035] = 2991, + [3036] = 1966, + [3037] = 3037, + [3038] = 2968, + [3039] = 2971, + [3040] = 2270, + [3041] = 2965, + [3042] = 2968, + [3043] = 2967, + [3044] = 2995, + [3045] = 3045, [3046] = 3046, [3047] = 3047, - [3048] = 3012, - [3049] = 3049, - [3050] = 3012, - [3051] = 3014, - [3052] = 3014, - [3053] = 3053, - [3054] = 3012, - [3055] = 3038, - [3056] = 3014, - [3057] = 752, - [3058] = 3014, - [3059] = 704, - [3060] = 3012, - [3061] = 660, - [3062] = 3062, - [3063] = 3012, - [3064] = 3012, - [3065] = 3065, - [3066] = 251, - [3067] = 514, - [3068] = 3012, - [3069] = 3012, - [3070] = 3014, - [3071] = 749, - [3072] = 3014, - [3073] = 3012, - [3074] = 3014, - [3075] = 3012, - [3076] = 3012, - [3077] = 3014, - [3078] = 3078, - [3079] = 155, - [3080] = 3080, - [3081] = 3081, + [3048] = 2968, + [3049] = 2965, + [3050] = 2967, + [3051] = 2967, + [3052] = 2995, + [3053] = 860, + [3054] = 3054, + [3055] = 860, + [3056] = 861, + [3057] = 2270, + [3058] = 861, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3061, + [3063] = 3061, + [3064] = 3061, + [3065] = 3061, + [3066] = 3066, + [3067] = 3061, + [3068] = 3061, + [3069] = 3069, + [3070] = 3061, + [3071] = 3061, + [3072] = 3072, + [3073] = 3061, + [3074] = 3061, + [3075] = 3061, + [3076] = 3076, + [3077] = 3077, + [3078] = 3060, + [3079] = 3079, + [3080] = 3061, + [3081] = 3069, [3082] = 3082, - [3083] = 3083, - [3084] = 3083, - [3085] = 3085, - [3086] = 3086, - [3087] = 133, - [3088] = 3088, + [3083] = 3061, + [3084] = 3084, + [3085] = 3061, + [3086] = 3076, + [3087] = 3061, + [3088] = 669, [3089] = 3089, - [3090] = 3090, - [3091] = 3091, - [3092] = 3092, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, - [3099] = 3099, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 134, - [3106] = 139, - [3107] = 3096, - [3108] = 3108, - [3109] = 3109, - [3110] = 3109, - [3111] = 3085, - [3112] = 3026, - [3113] = 3091, - [3114] = 3114, - [3115] = 3025, - [3116] = 3022, - [3117] = 3089, - [3118] = 3118, - [3119] = 3083, - [3120] = 3120, - [3121] = 3121, + [3090] = 3061, + [3091] = 3061, + [3092] = 3061, + [3093] = 691, + [3094] = 690, + [3095] = 3066, + [3096] = 689, + [3097] = 3061, + [3098] = 688, + [3099] = 687, + [3100] = 685, + [3101] = 677, + [3102] = 676, + [3103] = 668, + [3104] = 667, + [3105] = 666, + [3106] = 659, + [3107] = 658, + [3108] = 657, + [3109] = 652, + [3110] = 651, + [3111] = 650, + [3112] = 684, + [3113] = 683, + [3114] = 670, + [3115] = 671, + [3116] = 674, + [3117] = 675, + [3118] = 678, + [3119] = 681, + [3120] = 682, + [3121] = 682, [3122] = 3122, - [3123] = 3123, - [3124] = 704, - [3125] = 3121, + [3123] = 688, + [3124] = 3124, + [3125] = 3125, [3126] = 3126, [3127] = 3127, - [3128] = 3128, - [3129] = 752, - [3130] = 697, - [3131] = 3131, - [3132] = 3121, - [3133] = 3121, - [3134] = 3121, - [3135] = 3121, - [3136] = 3136, - [3137] = 3121, - [3138] = 3121, - [3139] = 3121, - [3140] = 3121, - [3141] = 3121, - [3142] = 3096, - [3143] = 3121, - [3144] = 3096, - [3145] = 3121, - [3146] = 3096, + [3128] = 745, + [3129] = 3129, + [3130] = 691, + [3131] = 690, + [3132] = 689, + [3133] = 687, + [3134] = 685, + [3135] = 684, + [3136] = 683, + [3137] = 681, + [3138] = 3124, + [3139] = 678, + [3140] = 675, + [3141] = 3122, + [3142] = 3142, + [3143] = 674, + [3144] = 3144, + [3145] = 671, + [3146] = 3146, [3147] = 3147, - [3148] = 3121, - [3149] = 3149, - [3150] = 3096, - [3151] = 3096, - [3152] = 3121, - [3153] = 3096, - [3154] = 3121, - [3155] = 3096, - [3156] = 3109, - [3157] = 3121, - [3158] = 3158, + [3148] = 670, + [3149] = 669, + [3150] = 650, + [3151] = 3151, + [3152] = 651, + [3153] = 652, + [3154] = 3154, + [3155] = 3155, + [3156] = 657, + [3157] = 3157, + [3158] = 658, [3159] = 3159, - [3160] = 3096, - [3161] = 3121, - [3162] = 3096, - [3163] = 3121, - [3164] = 3083, - [3165] = 3165, - [3166] = 3109, - [3167] = 3096, - [3168] = 3083, - [3169] = 3121, - [3170] = 3121, - [3171] = 3083, - [3172] = 3109, - [3173] = 3096, - [3174] = 3121, - [3175] = 3109, - [3176] = 3096, - [3177] = 3121, - [3178] = 3083, - [3179] = 3109, - [3180] = 3096, + [3160] = 659, + [3161] = 666, + [3162] = 667, + [3163] = 668, + [3164] = 676, + [3165] = 677, + [3166] = 3166, + [3167] = 3167, + [3168] = 138, + [3169] = 3169, + [3170] = 139, + [3171] = 3171, + [3172] = 3171, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 3180, [3181] = 3181, - [3182] = 3182, - [3183] = 745, + [3182] = 3169, + [3183] = 3174, [3184] = 3184, - [3185] = 749, - [3186] = 3186, - [3187] = 3187, + [3185] = 3185, + [3186] = 3181, + [3187] = 132, [3188] = 3188, [3189] = 3189, [3190] = 3190, [3191] = 3191, [3192] = 3192, - [3193] = 3121, - [3194] = 3194, - [3195] = 3096, - [3196] = 3083, - [3197] = 3109, - [3198] = 3096, - [3199] = 3121, - [3200] = 3109, - [3201] = 3083, - [3202] = 3109, - [3203] = 3096, + [3193] = 3193, + [3194] = 3188, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3201, + [3202] = 3173, + [3203] = 3203, [3204] = 3204, - [3205] = 861, + [3205] = 3195, [3206] = 3206, [3207] = 3207, - [3208] = 3208, - [3209] = 3083, - [3210] = 3121, - [3211] = 3121, - [3212] = 3121, - [3213] = 3083, + [3208] = 3204, + [3209] = 3197, + [3210] = 3210, + [3211] = 3198, + [3212] = 3199, + [3213] = 3213, [3214] = 3214, - [3215] = 3109, - [3216] = 3096, - [3217] = 3217, - [3218] = 3083, - [3219] = 3078, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3223, - [3224] = 3224, + [3215] = 745, + [3216] = 3200, + [3217] = 3191, + [3218] = 798, + [3219] = 3169, + [3220] = 3175, + [3221] = 3206, + [3222] = 3180, + [3223] = 3169, + [3224] = 3185, [3225] = 3225, - [3226] = 3226, - [3227] = 3227, + [3226] = 3189, + [3227] = 3166, [3228] = 3228, - [3229] = 3229, - [3230] = 3230, - [3231] = 3100, - [3232] = 3096, - [3233] = 660, - [3234] = 3234, - [3235] = 3235, - [3236] = 3121, - [3237] = 3109, - [3238] = 3083, - [3239] = 3109, + [3229] = 3210, + [3230] = 3167, + [3231] = 3190, + [3232] = 3232, + [3233] = 3233, + [3234] = 3201, + [3235] = 792, + [3236] = 3232, + [3237] = 3237, + [3238] = 3238, + [3239] = 3239, [3240] = 3240, - [3241] = 3096, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3083, + [3241] = 834, + [3242] = 3239, + [3243] = 3237, + [3244] = 3239, + [3245] = 3239, + [3246] = 3246, [3247] = 3247, - [3248] = 3121, - [3249] = 3249, + [3248] = 3240, + [3249] = 3240, [3250] = 3250, - [3251] = 3251, - [3252] = 3121, - [3253] = 3083, - [3254] = 3254, - [3255] = 3109, + [3251] = 3240, + [3252] = 3239, + [3253] = 792, + [3254] = 3239, + [3255] = 3247, [3256] = 3256, [3257] = 3257, - [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 3096, + [3258] = 3240, + [3259] = 3240, + [3260] = 798, + [3261] = 3261, [3262] = 3262, - [3263] = 3263, + [3263] = 3239, [3264] = 3264, - [3265] = 3265, - [3266] = 3266, - [3267] = 3013, - [3268] = 3268, - [3269] = 3096, - [3270] = 3270, - [3271] = 3271, - [3272] = 3109, - [3273] = 3273, - [3274] = 3109, - [3275] = 3275, - [3276] = 860, - [3277] = 3015, - [3278] = 3278, - [3279] = 3104, - [3280] = 3121, - [3281] = 3083, - [3282] = 3083, - [3283] = 3103, - [3284] = 3121, - [3285] = 3285, + [3265] = 147, + [3266] = 145, + [3267] = 3240, + [3268] = 3239, + [3269] = 241, + [3270] = 3240, + [3271] = 745, + [3272] = 3272, + [3273] = 3239, + [3274] = 3240, + [3275] = 3240, + [3276] = 3240, + [3277] = 621, + [3278] = 3239, + [3279] = 3279, + [3280] = 3280, + [3281] = 3239, + [3282] = 826, + [3283] = 3239, + [3284] = 3239, + [3285] = 3240, [3286] = 3286, - [3287] = 3109, - [3288] = 3288, - [3289] = 3289, - [3290] = 3083, - [3291] = 3291, + [3287] = 3240, + [3288] = 3264, + [3289] = 3239, + [3290] = 3290, + [3291] = 3240, [3292] = 3292, [3293] = 3293, - [3294] = 3096, + [3294] = 3294, [3295] = 3295, - [3296] = 3296, - [3297] = 3109, - [3298] = 3121, - [3299] = 3299, + [3296] = 745, + [3297] = 3239, + [3298] = 3240, + [3299] = 3239, [3300] = 3300, [3301] = 3301, - [3302] = 3121, - [3303] = 3303, - [3304] = 3304, - [3305] = 3096, - [3306] = 3096, - [3307] = 3221, - [3308] = 3270, + [3302] = 3240, + [3303] = 3240, + [3304] = 3239, + [3305] = 3305, + [3306] = 3240, + [3307] = 3239, + [3308] = 3308, [3309] = 3309, - [3310] = 3090, - [3311] = 3118, - [3312] = 3088, - [3313] = 3114, - [3314] = 3120, - [3315] = 3293, - [3316] = 3123, - [3317] = 3317, - [3318] = 3291, - [3319] = 3319, - [3320] = 3320, - [3321] = 3136, - [3322] = 3322, + [3310] = 798, + [3311] = 3311, + [3312] = 3312, + [3313] = 3313, + [3314] = 3314, + [3315] = 3315, + [3316] = 3316, + [3317] = 792, + [3318] = 825, + [3319] = 3308, + [3320] = 141, + [3321] = 3308, + [3322] = 3308, [3323] = 3323, - [3324] = 3324, - [3325] = 3325, - [3326] = 3268, - [3327] = 3327, - [3328] = 3266, + [3324] = 134, + [3325] = 135, + [3326] = 3315, + [3327] = 3314, + [3328] = 3314, [3329] = 3329, - [3330] = 3264, - [3331] = 3331, - [3332] = 3165, - [3333] = 3234, - [3334] = 3262, - [3335] = 3247, + [3330] = 826, + [3331] = 3315, + [3332] = 3329, + [3333] = 3329, + [3334] = 3308, + [3335] = 3308, [3336] = 3336, - [3337] = 3337, - [3338] = 3295, - [3339] = 3095, + [3337] = 3314, + [3338] = 3338, + [3339] = 3305, [3340] = 3340, - [3341] = 3260, - [3342] = 3319, - [3343] = 3331, - [3344] = 3344, - [3345] = 3319, + [3341] = 3280, + [3342] = 3290, + [3343] = 3343, + [3344] = 3314, + [3345] = 3315, [3346] = 3346, - [3347] = 3258, - [3348] = 3348, - [3349] = 3349, - [3350] = 3327, - [3351] = 3256, - [3352] = 3325, + [3347] = 3308, + [3348] = 3329, + [3349] = 3314, + [3350] = 3350, + [3351] = 3351, + [3352] = 3352, [3353] = 3353, - [3354] = 3309, - [3355] = 3325, - [3356] = 3319, - [3357] = 3327, - [3358] = 3240, - [3359] = 3230, - [3360] = 3228, - [3361] = 3331, - [3362] = 3098, - [3363] = 3227, - [3364] = 3327, - [3365] = 3325, - [3366] = 3346, - [3367] = 3122, - [3368] = 3319, - [3369] = 3319, - [3370] = 3370, - [3371] = 3327, - [3372] = 3226, - [3373] = 3309, - [3374] = 3374, - [3375] = 3375, - [3376] = 3376, - [3377] = 3377, + [3354] = 3354, + [3355] = 3355, + [3356] = 3356, + [3357] = 3315, + [3358] = 3308, + [3359] = 3359, + [3360] = 3308, + [3361] = 3308, + [3362] = 3301, + [3363] = 3329, + [3364] = 3364, + [3365] = 3308, + [3366] = 3308, + [3367] = 3315, + [3368] = 3314, + [3369] = 3369, + [3370] = 3329, + [3371] = 3371, + [3372] = 3372, + [3373] = 3308, + [3374] = 3315, + [3375] = 3308, + [3376] = 3314, + [3377] = 3308, [3378] = 3378, [3379] = 3379, - [3380] = 3319, - [3381] = 3108, - [3382] = 3254, - [3383] = 3325, - [3384] = 3319, - [3385] = 3325, - [3386] = 3325, - [3387] = 3325, - [3388] = 3331, - [3389] = 3319, - [3390] = 3325, - [3391] = 3319, - [3392] = 3327, - [3393] = 3325, - [3394] = 3319, - [3395] = 3325, - [3396] = 3331, - [3397] = 3375, - [3398] = 3319, + [3380] = 3380, + [3381] = 3381, + [3382] = 3329, + [3383] = 3315, + [3384] = 3384, + [3385] = 3314, + [3386] = 3386, + [3387] = 3308, + [3388] = 3388, + [3389] = 3389, + [3390] = 3314, + [3391] = 3308, + [3392] = 3308, + [3393] = 3393, + [3394] = 3315, + [3395] = 3395, + [3396] = 3308, + [3397] = 3315, + [3398] = 3329, [3399] = 3399, - [3400] = 3325, - [3401] = 3319, - [3402] = 3327, - [3403] = 3331, - [3404] = 3325, - [3405] = 3374, - [3406] = 3325, - [3407] = 3319, - [3408] = 3325, - [3409] = 3319, + [3400] = 3400, + [3401] = 3401, + [3402] = 3329, + [3403] = 3403, + [3404] = 3404, + [3405] = 3405, + [3406] = 3308, + [3407] = 3315, + [3408] = 3408, + [3409] = 3308, [3410] = 3410, - [3411] = 3325, - [3412] = 3319, - [3413] = 3325, - [3414] = 3319, - [3415] = 3319, - [3416] = 3309, - [3417] = 3325, - [3418] = 3319, - [3419] = 3102, - [3420] = 3325, - [3421] = 3319, - [3422] = 3325, - [3423] = 3325, - [3424] = 3319, - [3425] = 3101, - [3426] = 3325, - [3427] = 3327, - [3428] = 3319, - [3429] = 3331, - [3430] = 3325, - [3431] = 3331, - [3432] = 3319, - [3433] = 3319, - [3434] = 3099, - [3435] = 3325, - [3436] = 3319, - [3437] = 3097, - [3438] = 3325, - [3439] = 3190, - [3440] = 3325, - [3441] = 3319, - [3442] = 3377, - [3443] = 3325, - [3444] = 3319, - [3445] = 3204, - [3446] = 3331, - [3447] = 3149, - [3448] = 3206, - [3449] = 3207, - [3450] = 3319, - [3451] = 3376, - [3452] = 3271, - [3453] = 3325, - [3454] = 3319, - [3455] = 3182, - [3456] = 3319, - [3457] = 3325, - [3458] = 3325, - [3459] = 3214, - [3460] = 3319, - [3461] = 3327, - [3462] = 3374, - [3463] = 3325, - [3464] = 3319, - [3465] = 3331, - [3466] = 3325, + [3411] = 3329, + [3412] = 3314, + [3413] = 3329, + [3414] = 745, + [3415] = 3369, + [3416] = 3371, + [3417] = 3417, + [3418] = 3372, + [3419] = 3329, + [3420] = 3314, + [3421] = 3314, + [3422] = 3315, + [3423] = 3314, + [3424] = 3308, + [3425] = 3425, + [3426] = 3329, + [3427] = 3314, + [3428] = 995, + [3429] = 3329, + [3430] = 3314, + [3431] = 3308, + [3432] = 3315, + [3433] = 3433, + [3434] = 3434, + [3435] = 3315, + [3436] = 3308, + [3437] = 3308, + [3438] = 3438, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3442, + [3443] = 3308, + [3444] = 834, + [3445] = 3445, + [3446] = 3314, + [3447] = 3308, + [3448] = 3308, + [3449] = 3314, + [3450] = 3308, + [3451] = 3315, + [3452] = 3405, + [3453] = 3314, + [3454] = 3329, + [3455] = 3364, + [3456] = 3308, + [3457] = 3314, + [3458] = 3329, + [3459] = 3314, + [3460] = 3292, + [3461] = 3461, + [3462] = 3462, + [3463] = 3238, + [3464] = 3315, + [3465] = 3308, + [3466] = 3308, [3467] = 3467, [3468] = 3468, - [3469] = 3184, - [3470] = 3325, - [3471] = 3229, - [3472] = 3319, - [3473] = 3217, - [3474] = 3186, - [3475] = 3331, - [3476] = 3327, - [3477] = 3296, - [3478] = 3299, - [3479] = 3301, - [3480] = 3325, - [3481] = 3188, - [3482] = 3223, - [3483] = 3225, - [3484] = 3319, - [3485] = 3399, - [3486] = 3325, - [3487] = 3327, - [3488] = 3319, - [3489] = 3235, - [3490] = 3331, - [3491] = 3325, - [3492] = 3327, - [3493] = 3192, - [3494] = 3327, - [3495] = 3327, - [3496] = 3325, - [3497] = 3181, - [3498] = 3319, - [3499] = 3331, - [3500] = 3300, - [3501] = 3242, - [3502] = 3304, - [3503] = 3243, - [3504] = 3289, - [3505] = 3159, - [3506] = 3288, - [3507] = 3410, - [3508] = 3285, - [3509] = 3331, - [3510] = 3292, - [3511] = 3286, - [3512] = 3259, - [3513] = 3327, - [3514] = 3319, - [3515] = 3194, - [3516] = 3244, - [3517] = 3147, - [3518] = 3319, - [3519] = 3224, - [3520] = 3245, - [3521] = 3257, - [3522] = 3325, - [3523] = 3249, - [3524] = 3222, - [3525] = 3325, - [3526] = 3467, - [3527] = 3250, - [3528] = 3468, - [3529] = 3327, - [3530] = 3374, - [3531] = 3319, - [3532] = 3331, - [3533] = 3331, - [3534] = 3273, + [3469] = 3469, + [3470] = 3470, + [3471] = 3471, + [3472] = 3472, + [3473] = 3473, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3314, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3329, + [3486] = 3314, + [3487] = 3487, + [3488] = 3488, + [3489] = 3400, + [3490] = 3315, + [3491] = 3491, + [3492] = 3308, + [3493] = 3493, + [3494] = 3494, + [3495] = 3495, + [3496] = 3496, + [3497] = 3497, + [3498] = 3498, + [3499] = 3499, + [3500] = 3500, + [3501] = 3501, + [3502] = 3502, + [3503] = 3314, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3329, + [3508] = 3308, + [3509] = 3509, + [3510] = 3510, + [3511] = 996, + [3512] = 3315, + [3513] = 3314, + [3514] = 3308, + [3515] = 3515, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, + [3519] = 3519, + [3520] = 3520, + [3521] = 3521, + [3522] = 3522, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, + [3529] = 3314, + [3530] = 3530, + [3531] = 3531, + [3532] = 3532, + [3533] = 3445, + [3534] = 3534, [3535] = 3535, - [3536] = 3536, - [3537] = 3331, - [3538] = 3319, - [3539] = 3220, - [3540] = 3327, - [3541] = 3251, - [3542] = 3275, - [3543] = 3263, - [3544] = 3378, - [3545] = 3331, - [3546] = 3278, - [3547] = 3327, - [3548] = 3325, - [3549] = 3265, - [3550] = 3550, - [3551] = 3353, - [3552] = 3317, - [3553] = 3553, - [3554] = 3554, - [3555] = 3550, - [3556] = 3556, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, - [3560] = 3560, - [3561] = 3561, - [3562] = 3562, - [3563] = 3561, - [3564] = 3564, - [3565] = 3550, - [3566] = 3550, - [3567] = 3567, - [3568] = 3550, - [3569] = 3550, - [3570] = 3561, - [3571] = 3550, - [3572] = 3572, - [3573] = 3550, + [3536] = 3532, + [3537] = 3537, + [3538] = 3538, + [3539] = 3523, + [3540] = 3522, + [3541] = 3521, + [3542] = 3542, + [3543] = 3532, + [3544] = 3537, + [3545] = 3520, + [3546] = 3519, + [3547] = 3518, + [3548] = 3537, + [3549] = 3517, + [3550] = 3516, + [3551] = 3515, + [3552] = 3552, + [3553] = 3510, + [3554] = 3552, + [3555] = 3312, + [3556] = 3552, + [3557] = 3509, + [3558] = 3535, + [3559] = 3506, + [3560] = 3505, + [3561] = 3504, + [3562] = 3502, + [3563] = 3501, + [3564] = 3500, + [3565] = 3535, + [3566] = 3532, + [3567] = 3499, + [3568] = 3532, + [3569] = 3569, + [3570] = 3531, + [3571] = 3535, + [3572] = 3525, + [3573] = 3573, [3574] = 3574, - [3575] = 3348, - [3576] = 3561, - [3577] = 2744, - [3578] = 3578, - [3579] = 3561, - [3580] = 3561, - [3581] = 3581, + [3575] = 3575, + [3576] = 3535, + [3577] = 3313, + [3578] = 3526, + [3579] = 3479, + [3580] = 3528, + [3581] = 3530, [3582] = 3582, - [3583] = 3583, - [3584] = 709, - [3585] = 3535, - [3586] = 3561, - [3587] = 3587, - [3588] = 3588, - [3589] = 3536, - [3590] = 3550, - [3591] = 3591, + [3583] = 3537, + [3584] = 3584, + [3585] = 3524, + [3586] = 3497, + [3587] = 3552, + [3588] = 3496, + [3589] = 3323, + [3590] = 3590, + [3591] = 3433, [3592] = 3592, - [3593] = 3550, - [3594] = 3561, - [3595] = 3550, - [3596] = 3550, - [3597] = 3597, - [3598] = 3598, - [3599] = 3561, - [3600] = 3600, - [3601] = 3370, - [3602] = 3602, - [3603] = 3550, - [3604] = 3604, - [3605] = 3561, - [3606] = 3550, - [3607] = 3561, - [3608] = 3561, - [3609] = 3550, - [3610] = 3610, - [3611] = 3340, - [3612] = 3561, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3561, - [3617] = 3550, - [3618] = 3561, - [3619] = 3322, - [3620] = 3561, - [3621] = 3621, - [3622] = 3622, - [3623] = 3623, - [3624] = 3349, - [3625] = 3550, - [3626] = 3344, - [3627] = 3550, - [3628] = 3336, - [3629] = 3613, - [3630] = 3329, - [3631] = 3561, - [3632] = 846, - [3633] = 3633, - [3634] = 3561, - [3635] = 3324, - [3636] = 3636, - [3637] = 3637, - [3638] = 3638, - [3639] = 3639, - [3640] = 3639, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 3644, - [3645] = 3645, - [3646] = 660, - [3647] = 3647, - [3648] = 3639, - [3649] = 3649, - [3650] = 3650, - [3651] = 3643, - [3652] = 3652, - [3653] = 3643, - [3654] = 3654, - [3655] = 3649, - [3656] = 3652, - [3657] = 3657, - [3658] = 3658, - [3659] = 3658, - [3660] = 3660, - [3661] = 3660, - [3662] = 3647, - [3663] = 3663, - [3664] = 3657, - [3665] = 877, - [3666] = 873, - [3667] = 3667, - [3668] = 876, - [3669] = 866, - [3670] = 3663, - [3671] = 3644, - [3672] = 3639, - [3673] = 3673, - [3674] = 3674, - [3675] = 3643, - [3676] = 3650, - [3677] = 3677, - [3678] = 3678, - [3679] = 3645, - [3680] = 3674, - [3681] = 3681, - [3682] = 3681, - [3683] = 3638, - [3684] = 3642, - [3685] = 3654, - [3686] = 3678, - [3687] = 3641, - [3688] = 3688, - [3689] = 3689, + [3593] = 3495, + [3594] = 3594, + [3595] = 3552, + [3596] = 3494, + [3597] = 3493, + [3598] = 3488, + [3599] = 3537, + [3600] = 3538, + [3601] = 3532, + [3602] = 3487, + [3603] = 3484, + [3604] = 3535, + [3605] = 3552, + [3606] = 3535, + [3607] = 3483, + [3608] = 3608, + [3609] = 3482, + [3610] = 3582, + [3611] = 3480, + [3612] = 3612, + [3613] = 3532, + [3614] = 3537, + [3615] = 3478, + [3616] = 3532, + [3617] = 3537, + [3618] = 3537, + [3619] = 3534, + [3620] = 3476, + [3621] = 3475, + [3622] = 3552, + [3623] = 3474, + [3624] = 3532, + [3625] = 3535, + [3626] = 3532, + [3627] = 3535, + [3628] = 3535, + [3629] = 3532, + [3630] = 3535, + [3631] = 3552, + [3632] = 3532, + [3633] = 3608, + [3634] = 3535, + [3635] = 3532, + [3636] = 3537, + [3637] = 3535, + [3638] = 3532, + [3639] = 3532, + [3640] = 3535, + [3641] = 3535, + [3642] = 3532, + [3643] = 3535, + [3644] = 3535, + [3645] = 3532, + [3646] = 3442, + [3647] = 3535, + [3648] = 3532, + [3649] = 3441, + [3650] = 3440, + [3651] = 3439, + [3652] = 3532, + [3653] = 3537, + [3654] = 3535, + [3655] = 3532, + [3656] = 3535, + [3657] = 3552, + [3658] = 3532, + [3659] = 3535, + [3660] = 3438, + [3661] = 3661, + [3662] = 3662, + [3663] = 3434, + [3664] = 3379, + [3665] = 3425, + [3666] = 3346, + [3667] = 3404, + [3668] = 3403, + [3669] = 3532, + [3670] = 3670, + [3671] = 3399, + [3672] = 3389, + [3673] = 3386, + [3674] = 3384, + [3675] = 3381, + [3676] = 3535, + [3677] = 3380, + [3678] = 3535, + [3679] = 3378, + [3680] = 3532, + [3681] = 3535, + [3682] = 3608, + [3683] = 3532, + [3684] = 3532, + [3685] = 3535, + [3686] = 3359, + [3687] = 3537, + [3688] = 3532, + [3689] = 3535, [3690] = 3690, - [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3695, - [3696] = 3696, - [3697] = 3693, - [3698] = 3693, + [3691] = 3552, + [3692] = 3532, + [3693] = 3356, + [3694] = 3535, + [3695] = 3408, + [3696] = 3410, + [3697] = 3355, + [3698] = 3698, [3699] = 3699, - [3700] = 3699, + [3700] = 3700, [3701] = 3701, - [3702] = 3701, - [3703] = 3694, - [3704] = 3694, - [3705] = 3694, - [3706] = 3701, - [3707] = 3699, - [3708] = 3693, - [3709] = 3693, - [3710] = 3710, - [3711] = 3693, - [3712] = 704, + [3702] = 3532, + [3703] = 3535, + [3704] = 3532, + [3705] = 3535, + [3706] = 3354, + [3707] = 3707, + [3708] = 3708, + [3709] = 3709, + [3710] = 3535, + [3711] = 3532, + [3712] = 3351, [3713] = 3713, - [3714] = 3693, - [3715] = 3694, - [3716] = 3716, - [3717] = 3717, - [3718] = 3718, - [3719] = 3719, - [3720] = 3689, - [3721] = 3721, - [3722] = 3693, - [3723] = 3694, - [3724] = 3724, - [3725] = 3719, - [3726] = 3726, - [3727] = 3727, - [3728] = 3728, - [3729] = 3693, - [3730] = 3694, - [3731] = 3694, - [3732] = 3732, - [3733] = 3693, - [3734] = 3693, - [3735] = 3735, - [3736] = 3736, - [3737] = 3694, - [3738] = 3694, - [3739] = 3701, - [3740] = 3740, - [3741] = 3741, - [3742] = 3742, - [3743] = 3743, - [3744] = 3701, - [3745] = 3694, - [3746] = 3746, - [3747] = 3747, - [3748] = 3689, - [3749] = 3749, - [3750] = 3694, - [3751] = 3751, - [3752] = 3693, - [3753] = 3753, - [3754] = 3689, - [3755] = 3755, - [3756] = 3690, - [3757] = 3701, - [3758] = 3758, - [3759] = 3689, - [3760] = 3760, - [3761] = 3692, - [3762] = 3693, - [3763] = 3699, - [3764] = 3689, - [3765] = 3765, - [3766] = 3766, - [3767] = 3693, - [3768] = 3699, - [3769] = 3689, - [3770] = 3770, - [3771] = 3693, - [3772] = 3694, - [3773] = 3773, - [3774] = 3689, - [3775] = 3694, - [3776] = 3699, - [3777] = 3693, - [3778] = 3751, - [3779] = 3779, - [3780] = 3694, - [3781] = 3693, - [3782] = 3782, + [3714] = 3535, + [3715] = 3715, + [3716] = 3532, + [3717] = 3532, + [3718] = 3535, + [3719] = 3350, + [3720] = 3532, + [3721] = 3537, + [3722] = 3535, + [3723] = 3352, + [3724] = 3532, + [3725] = 3552, + [3726] = 3473, + [3727] = 3535, + [3728] = 3552, + [3729] = 3537, + [3730] = 3730, + [3731] = 3532, + [3732] = 3472, + [3733] = 3552, + [3734] = 3468, + [3735] = 3535, + [3736] = 3471, + [3737] = 3343, + [3738] = 3470, + [3739] = 3538, + [3740] = 3552, + [3741] = 3469, + [3742] = 3552, + [3743] = 3537, + [3744] = 3535, + [3745] = 3532, + [3746] = 3690, + [3747] = 3477, + [3748] = 3569, + [3749] = 3715, + [3750] = 3535, + [3751] = 3532, + [3752] = 3535, + [3753] = 3467, + [3754] = 3608, + [3755] = 3537, + [3756] = 3462, + [3757] = 3461, + [3758] = 3552, + [3759] = 3552, + [3760] = 3537, + [3761] = 3542, + [3762] = 3532, + [3763] = 3535, + [3764] = 3532, + [3765] = 3538, + [3766] = 3552, + [3767] = 3537, + [3768] = 3537, + [3769] = 3584, + [3770] = 3532, + [3771] = 3527, + [3772] = 3612, + [3773] = 3535, + [3774] = 3730, + [3775] = 3775, + [3776] = 3776, + [3777] = 3699, + [3778] = 3778, + [3779] = 3778, + [3780] = 3778, + [3781] = 3778, + [3782] = 3701, [3783] = 3783, - [3784] = 3689, - [3785] = 3701, - [3786] = 3766, - [3787] = 697, - [3788] = 3693, - [3789] = 3689, - [3790] = 3693, - [3791] = 3694, - [3792] = 3701, - [3793] = 3689, - [3794] = 3689, - [3795] = 3699, - [3796] = 3693, - [3797] = 3797, - [3798] = 3699, - [3799] = 3689, - [3800] = 3701, - [3801] = 3693, - [3802] = 3802, - [3803] = 3701, - [3804] = 3689, - [3805] = 3694, - [3806] = 3694, - [3807] = 3699, - [3808] = 3701, - [3809] = 3689, - [3810] = 3810, - [3811] = 3782, + [3784] = 3778, + [3785] = 3785, + [3786] = 3786, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3778, + [3792] = 3783, + [3793] = 785, + [3794] = 3778, + [3795] = 3783, + [3796] = 3796, + [3797] = 3778, + [3798] = 3783, + [3799] = 3783, + [3800] = 930, + [3801] = 3783, + [3802] = 3783, + [3803] = 3803, + [3804] = 3804, + [3805] = 3778, + [3806] = 3778, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3590, + [3811] = 3778, [3812] = 3812, - [3813] = 3693, - [3814] = 3689, + [3813] = 3783, + [3814] = 3783, [3815] = 3815, - [3816] = 3732, - [3817] = 3701, - [3818] = 3694, - [3819] = 3689, - [3820] = 3701, - [3821] = 3699, + [3816] = 3816, + [3817] = 3594, + [3818] = 3783, + [3819] = 3819, + [3820] = 3778, + [3821] = 3592, [3822] = 3822, - [3823] = 3689, - [3824] = 3824, - [3825] = 3693, + [3823] = 3778, + [3824] = 3783, + [3825] = 3778, [3826] = 3826, - [3827] = 3717, + [3827] = 3827, [3828] = 3828, - [3829] = 3694, - [3830] = 3701, - [3831] = 3831, - [3832] = 3832, - [3833] = 3695, - [3834] = 3694, - [3835] = 3770, - [3836] = 3693, - [3837] = 3701, - [3838] = 3838, - [3839] = 3693, - [3840] = 3840, - [3841] = 3826, - [3842] = 3694, - [3843] = 3694, - [3844] = 3694, - [3845] = 3701, - [3846] = 3758, - [3847] = 3693, - [3848] = 3832, + [3829] = 3829, + [3830] = 3830, + [3831] = 3808, + [3832] = 3783, + [3833] = 3833, + [3834] = 3778, + [3835] = 3835, + [3836] = 3783, + [3837] = 3778, + [3838] = 3783, + [3839] = 3783, + [3840] = 3713, + [3841] = 3709, + [3842] = 3708, + [3843] = 3843, + [3844] = 3778, + [3845] = 3778, + [3846] = 3846, + [3847] = 3707, + [3848] = 3700, [3849] = 3849, - [3850] = 3699, - [3851] = 3851, - [3852] = 3852, - [3853] = 3853, - [3854] = 3826, - [3855] = 3826, - [3856] = 3826, - [3857] = 3826, - [3858] = 3826, - [3859] = 3826, - [3860] = 3826, - [3861] = 3826, - [3862] = 3826, - [3863] = 3826, - [3864] = 3826, - [3865] = 3826, - [3866] = 3826, - [3867] = 3826, + [3850] = 3850, + [3851] = 3783, + [3852] = 3670, + [3853] = 3662, + [3854] = 3854, + [3855] = 3661, + [3856] = 2961, + [3857] = 3857, + [3858] = 3783, + [3859] = 3859, + [3860] = 3783, + [3861] = 3861, + [3862] = 3862, + [3863] = 3863, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3867, [3868] = 3868, [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 1008, + [3873] = 3873, + [3874] = 3874, + [3875] = 3875, + [3876] = 3873, + [3877] = 3862, + [3878] = 3878, + [3879] = 3868, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 3867, + [3884] = 3866, + [3885] = 1010, + [3886] = 3880, + [3887] = 1012, + [3888] = 3888, + [3889] = 3889, + [3890] = 3875, + [3891] = 3865, + [3892] = 3881, + [3893] = 3893, + [3894] = 3888, + [3895] = 3895, + [3896] = 3863, + [3897] = 1014, + [3898] = 3895, + [3899] = 3899, + [3900] = 745, + [3901] = 3895, + [3902] = 3878, + [3903] = 3899, + [3904] = 3867, + [3905] = 3905, + [3906] = 3893, + [3907] = 3874, + [3908] = 3864, + [3909] = 3867, + [3910] = 3889, + [3911] = 3895, + [3912] = 3905, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 3920, + [3921] = 3913, + [3922] = 3922, + [3923] = 3923, + [3924] = 3913, + [3925] = 3917, + [3926] = 3926, + [3927] = 3913, + [3928] = 3918, + [3929] = 3917, + [3930] = 3915, + [3931] = 3931, + [3932] = 792, + [3933] = 798, + [3934] = 3913, + [3935] = 3935, + [3936] = 3917, + [3937] = 3913, + [3938] = 3915, + [3939] = 3913, + [3940] = 3915, + [3941] = 3913, + [3942] = 3942, + [3943] = 3943, + [3944] = 3915, + [3945] = 3915, + [3946] = 3914, + [3947] = 3947, + [3948] = 3913, + [3949] = 3949, + [3950] = 3917, + [3951] = 3918, + [3952] = 3952, + [3953] = 3918, + [3954] = 3918, + [3955] = 3955, + [3956] = 3917, + [3957] = 3913, + [3958] = 3915, + [3959] = 3915, + [3960] = 3913, + [3961] = 3913, + [3962] = 3918, + [3963] = 3917, + [3964] = 3915, + [3965] = 3913, + [3966] = 3915, + [3967] = 3967, + [3968] = 3968, + [3969] = 3915, + [3970] = 3913, + [3971] = 3917, + [3972] = 3915, + [3973] = 3914, + [3974] = 3974, + [3975] = 3915, + [3976] = 3915, + [3977] = 3917, + [3978] = 3918, + [3979] = 3914, + [3980] = 3913, + [3981] = 3955, + [3982] = 3915, + [3983] = 3983, + [3984] = 3914, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, + [3989] = 3914, + [3990] = 3990, + [3991] = 3913, + [3992] = 3992, + [3993] = 3993, + [3994] = 3914, + [3995] = 3995, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, + [3999] = 3914, + [4000] = 4000, + [4001] = 3935, + [4002] = 4002, + [4003] = 4003, + [4004] = 3915, + [4005] = 3915, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 3914, + [4010] = 3913, + [4011] = 4011, + [4012] = 4012, + [4013] = 3914, + [4014] = 3914, + [4015] = 3947, + [4016] = 4016, + [4017] = 3913, + [4018] = 3913, + [4019] = 3914, + [4020] = 4020, + [4021] = 3942, + [4022] = 3913, + [4023] = 3917, + [4024] = 3914, + [4025] = 4025, + [4026] = 4006, + [4027] = 3915, + [4028] = 3915, + [4029] = 3914, + [4030] = 3917, + [4031] = 3918, + [4032] = 3915, + [4033] = 4033, + [4034] = 3914, + [4035] = 4035, + [4036] = 3968, + [4037] = 4037, + [4038] = 4038, + [4039] = 3914, + [4040] = 4040, + [4041] = 3913, + [4042] = 3913, + [4043] = 3913, + [4044] = 3914, + [4045] = 4045, + [4046] = 3917, + [4047] = 3915, + [4048] = 3914, + [4049] = 3917, + [4050] = 4050, + [4051] = 3943, + [4052] = 4052, + [4053] = 3918, + [4054] = 4033, + [4055] = 4055, + [4056] = 4056, + [4057] = 4057, + [4058] = 3913, + [4059] = 3915, + [4060] = 3915, + [4061] = 3917, + [4062] = 4062, + [4063] = 3993, + [4064] = 4064, + [4065] = 4065, + [4066] = 4050, + [4067] = 3917, + [4068] = 4068, + [4069] = 4069, + [4070] = 3913, + [4071] = 3922, + [4072] = 3918, + [4073] = 4055, + [4074] = 3918, + [4075] = 3913, + [4076] = 3915, + [4077] = 3917, + [4078] = 4078, + [4079] = 4050, + [4080] = 4050, + [4081] = 4050, + [4082] = 4050, + [4083] = 4050, + [4084] = 4050, + [4085] = 4050, + [4086] = 4050, + [4087] = 4050, + [4088] = 4050, + [4089] = 4050, + [4090] = 4050, + [4091] = 4050, + [4092] = 4050, + [4093] = 3974, + [4094] = 4094, }; static inline bool sym_cmd_identifier_character_set_1(int32_t c) { @@ -9494,6 +9723,806 @@ static inline bool sym_cmd_identifier_character_set_2(int32_t c) { } static inline bool sym_cmd_identifier_character_set_3(int32_t c) { + return (c < 43520 + ? (c < 4197 + ? (c < 2730 + ? (c < 2036 + ? (c < 1015 + ? (c < 750 + ? (c < 216 + ? (c < 170 + ? (c < 'c' + ? (c >= 'A' && c <= 'Y') + : c <= 'y') + : (c <= 170 || (c < 192 + ? c == 186 + : c <= 214))) + : (c <= 246 || (c < 736 + ? (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721) + : (c <= 740 || c == 748)))) + : (c <= 750 || (c < 902 + ? (c < 891 + ? (c < 886 + ? (c >= 880 && c <= 884) + : c <= 887) + : (c <= 893 || c == 895)) + : (c <= 902 || (c < 910 + ? (c < 908 + ? (c >= 904 && c <= 906) + : c <= 908) + : (c <= 929 || (c >= 931 && c <= 1013))))))) + : (c <= 1153 || (c < 1749 + ? (c < 1488 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c >= 1376 && c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2602 + ? (c < 2544 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c >= 2527 && c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3253 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3114 + ? (c < 2990 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c >= 2984 && c <= 2986))) + : (c <= 3001 || (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))))) + : (c <= 3129 || (c < 3200 + ? (c < 3165 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) + : (c <= 3257 || (c < 3713 + ? (c < 3423 + ? (c < 3342 + ? (c < 3296 + ? (c < 3293 + ? c == 3261 + : c <= 3294) + : (c <= 3297 || (c < 3332 + ? (c >= 3313 && c <= 3314) + : c <= 3340))) + : (c <= 3344 || (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))))) + : (c <= 3425 || (c < 3517 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))) + : (c <= 3517 || (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))))))) + : (c <= 3714 || (c < 3804 + ? (c < 3751 + ? (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || c == 3749)) + : (c <= 3760 || (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)))) + : (c <= 3807 || (c < 4096 + ? (c < 3913 + ? (c < 3904 + ? c == 3840 + : c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))) + : (c <= 4138 || (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)))))))))))) + : (c <= 4198 || (c < 8144 + ? (c < 6272 + ? (c < 4824 + ? (c < 4696 + ? (c < 4301 + ? (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295))) + : (c <= 4301 || (c < 4682 + ? (c < 4348 + ? (c >= 4304 && c <= 4346) + : c <= 4680) + : (c <= 4685 || (c >= 4688 && c <= 4694))))) + : (c <= 4696 || (c < 4786 + ? (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c >= 4752 && c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c >= 4808 && c <= 4822))))))) + : (c <= 4880 || (c < 5870 + ? (c < 5112 + ? (c < 4992 + ? (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954) + : (c <= 5007 || (c >= 5024 && c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c >= 5792 && c <= 5866))))) + : (c <= 5880 || (c < 5998 + ? (c < 5952 + ? (c < 5919 + ? (c >= 5888 && c <= 5905) + : c <= 5937) + : (c <= 5969 || (c >= 5984 && c <= 5996))) + : (c <= 6000 || (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6067) + : c <= 6103) + : (c <= 6108 || (c >= 6176 && c <= 6264))))))))) + : (c <= 6312 || (c < 7357 + ? (c < 6917 + ? (c < 6528 + ? (c < 6400 + ? (c < 6320 + ? c == 6314 + : c <= 6389) + : (c <= 6430 || (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516))) + : (c <= 6571 || (c < 6688 + ? (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678) + : (c <= 6740 || c == 6823)))) + : (c <= 6963 || (c < 7168 + ? (c < 7086 + ? (c < 7043 + ? (c >= 6981 && c <= 6988) + : c <= 7072) + : (c <= 7087 || (c >= 7098 && c <= 7141))) + : (c <= 7203 || (c < 7296 + ? (c < 7258 + ? (c >= 7245 && c <= 7247) + : c <= 7293) + : (c <= 7304 || (c >= 7312 && c <= 7354))))))) + : (c <= 7359 || (c < 8016 + ? (c < 7424 + ? (c < 7413 + ? (c < 7406 + ? (c >= 7401 && c <= 7404) + : c <= 7411) + : (c <= 7414 || c == 7418)) + : (c <= 7615 || (c < 7968 + ? (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))) + : (c <= 8023 || (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) + : (c <= 8147 || (c < 12344 + ? (c < 11264 + ? (c < 8469 + ? (c < 8319 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305))) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))) + : (c <= 8469 || (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))))) + : (c <= 11492 || (c < 11688 + ? (c < 11565 + ? (c < 11520 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : c <= 11507) + : (c <= 11557 || c == 11559)) + : (c <= 11565 || (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c >= 11680 && c <= 11686))))) + : (c <= 11694 || (c < 11728 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))) + : (c <= 11734 || (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) + : (c <= 12348 || (c < 42960 + ? (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 42124))))) + : (c <= 42237 || (c < 42623 + ? (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))))))) + : (c <= 42961 || (c < 43259 + ? (c < 43015 + ? (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))) + : (c <= 43018 || (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))))) + : (c <= 43259 || (c < 43396 + ? (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))) + : (c <= 43442 || (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))))))))))))))) + : (c <= 43560 || (c < 70751 + ? (c < 66964 + ? (c < 65008 + ? (c < 43888 + ? (c < 43739 + ? (c < 43697 + ? (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || (c < 43646 + ? c == 43642 + : c <= 43695))) + : (c <= 43697 || (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)))) + : (c <= 43741 || (c < 43793 + ? (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))) + : (c <= 43798 || (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))))))) + : (c <= 44002 || (c < 64298 + ? (c < 64112 + ? (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))))) + : (c <= 64310 || (c < 64326 + ? (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))) + : (c <= 64433 || (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))))))))) + : (c <= 65017 || (c < 65616 + ? (c < 65440 + ? (c < 65149 + ? (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))) + : (c <= 65149 || (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c >= 65382 && c <= 65437))))) + : (c <= 65470 || (c < 65536 + ? (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))))))) + : (c <= 65629 || (c < 66504 + ? (c < 66304 + ? (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c >= 66464 && c <= 66499))))) + : (c <= 66511 || (c < 66816 + ? (c < 66736 + ? (c < 66560 + ? (c >= 66513 && c <= 66517) + : c <= 66717) + : (c <= 66771 || (c >= 66776 && c <= 66811))) + : (c <= 66855 || (c < 66940 + ? (c < 66928 + ? (c >= 66864 && c <= 66915) + : c <= 66938) + : (c <= 66954 || (c >= 66956 && c <= 66962))))))))))) + : (c <= 66965 || (c < 69248 + ? (c < 67840 + ? (c < 67584 + ? (c < 67392 + ? (c < 66995 + ? (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993) + : (c <= 67001 || (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382))) + : (c <= 67413 || (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c >= 67506 && c <= 67514))))) + : (c <= 67589 || (c < 67647 + ? (c < 67639 + ? (c < 67594 + ? c == 67592 + : c <= 67637) + : (c <= 67640 || c == 67644)) + : (c <= 67669 || (c < 67808 + ? (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742) + : (c <= 67826 || (c >= 67828 && c <= 67829))))))) + : (c <= 67861 || (c < 68288 + ? (c < 68112 + ? (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || c == 68096)) + : (c <= 68115 || (c < 68192 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68220 || (c >= 68224 && c <= 68252))))) + : (c <= 68295 || (c < 68480 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))) + : (c <= 68497 || (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))))))))) + : (c <= 69289 || (c < 70108 + ? (c < 69763 + ? (c < 69552 + ? (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505))) + : (c <= 69572 || (c < 69745 + ? (c < 69635 + ? (c >= 69600 && c <= 69622) + : c <= 69687) + : (c <= 69746 || c == 69749)))) + : (c <= 69807 || (c < 69968 + ? (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)) + : (c <= 70002 || (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)))))) + : (c <= 70108 || (c < 70415 + ? (c < 70282 + ? (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)) + : (c <= 70285 || (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))))) + : (c <= 70416 || (c < 70461 + ? (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))) + : (c <= 70461 || (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))))))))))))) + : (c <= 70753 || (c < 119966 + ? (c < 73063 + ? (c < 72096 + ? (c < 71488 + ? (c < 71168 + ? (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c < 71128 + ? (c >= 71040 && c <= 71086) + : c <= 71131))) + : (c <= 71215 || (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c >= 71424 && c <= 71450))))) + : (c <= 71494 || (c < 71948 + ? (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)) + : (c <= 71955 || (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)))))) + : (c <= 72103 || (c < 72368 + ? (c < 72203 + ? (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)) + : (c <= 72242 || (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || c == 72349)))) + : (c <= 72440 || (c < 72960 + ? (c < 72768 + ? (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750) + : (c <= 72768 || (c >= 72818 && c <= 72847))) + : (c <= 72966 || (c < 73030 + ? (c < 72971 + ? (c >= 72968 && c <= 72969) + : c <= 73008) + : (c <= 73030 || (c >= 73056 && c <= 73061))))))))) + : (c <= 73064 || (c < 94032 + ? (c < 92160 + ? (c < 74752 + ? (c < 73440 + ? (c < 73112 + ? (c >= 73066 && c <= 73097) + : c <= 73112) + : (c <= 73458 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 77824 + ? (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808) + : (c <= 78894 || (c >= 82944 && c <= 83526))))) + : (c <= 92728 || (c < 92992 + ? (c < 92880 + ? (c < 92784 + ? (c >= 92736 && c <= 92766) + : c <= 92862) + : (c <= 92909 || (c >= 92928 && c <= 92975))) + : (c <= 92995 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))))))) + : (c <= 94032 || (c < 110592 + ? (c < 100352 + ? (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))) + : (c <= 101589 || (c < 110581 + ? (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579) + : (c <= 110587 || (c >= 110589 && c <= 110590))))) + : (c <= 110882 || (c < 113776 + ? (c < 110960 + ? (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951) + : (c <= 111355 || (c >= 113664 && c <= 113770))) + : (c <= 113788 || (c < 119808 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) + : (c <= 119967 || (c < 126464 + ? (c < 120598 + ? (c < 120094 + ? (c < 119997 + ? (c < 119977 + ? (c < 119973 + ? c == 119970 + : c <= 119974) + : (c <= 119980 || (c < 119995 + ? (c >= 119982 && c <= 119993) + : c <= 119995))) + : (c <= 120003 || (c < 120077 + ? (c < 120071 + ? (c >= 120005 && c <= 120069) + : c <= 120074) + : (c <= 120084 || (c >= 120086 && c <= 120092))))) + : (c <= 120121 || (c < 120146 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c >= 120138 && c <= 120144))) + : (c <= 120485 || (c < 120540 + ? (c < 120514 + ? (c >= 120488 && c <= 120512) + : c <= 120538) + : (c <= 120570 || (c >= 120572 && c <= 120596))))))) + : (c <= 120628 || (c < 123214 + ? (c < 120746 + ? (c < 120688 + ? (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686) + : (c <= 120712 || (c >= 120714 && c <= 120744))) + : (c <= 120770 || (c < 123136 + ? (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124909 + ? (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || c == 126503)) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_cmd_identifier_character_set_4(int32_t c) { return (c < 43514 ? (c < 4193 ? (c < 2707 @@ -10295,806 +11324,6 @@ static inline bool sym_cmd_identifier_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_4(int32_t c) { - return (c < 43520 - ? (c < 4197 - ? (c < 2730 - ? (c < 2036 - ? (c < 1015 - ? (c < 750 - ? (c < 216 - ? (c < 170 - ? (c < 'j' - ? (c >= 'A' && c <= 'Y') - : c <= 'y') - : (c <= 170 || (c < 192 - ? c == 186 - : c <= 214))) - : (c <= 246 || (c < 736 - ? (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721) - : (c <= 740 || c == 748)))) - : (c <= 750 || (c < 902 - ? (c < 891 - ? (c < 886 - ? (c >= 880 && c <= 884) - : c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 910 - ? (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908) - : (c <= 929 || (c >= 931 && c <= 1013))))))) - : (c <= 1153 || (c < 1749 - ? (c < 1488 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1514 || (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))))) - : (c <= 1749 || (c < 1808 - ? (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) - : (c <= 2037 || (c < 2486 - ? (c < 2308 - ? (c < 2112 - ? (c < 2074 - ? (c < 2048 - ? c == 2042 - : c <= 2069) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))))) - : (c <= 2361 || (c < 2437 - ? (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)))))) - : (c <= 2489 || (c < 2602 - ? (c < 2544 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c >= 2527 && c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3253 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3114 - ? (c < 2990 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))) - : (c <= 3001 || (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))))) - : (c <= 3129 || (c < 3200 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) - : (c <= 3257 || (c < 3713 - ? (c < 3423 - ? (c < 3342 - ? (c < 3296 - ? (c < 3293 - ? c == 3261 - : c <= 3294) - : (c <= 3297 || (c < 3332 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))))) - : (c <= 3425 || (c < 3517 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))))))) - : (c <= 3714 || (c < 3804 - ? (c < 3751 - ? (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)) - : (c <= 3760 || (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)))) - : (c <= 3807 || (c < 4096 - ? (c < 3913 - ? (c < 3904 - ? c == 3840 - : c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))) - : (c <= 4138 || (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)))))))))))) - : (c <= 4198 || (c < 8144 - ? (c < 6272 - ? (c < 4824 - ? (c < 4696 - ? (c < 4301 - ? (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4682 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680) - : (c <= 4685 || (c >= 4688 && c <= 4694))))) - : (c <= 4696 || (c < 4786 - ? (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c >= 4808 && c <= 4822))))))) - : (c <= 4880 || (c < 5870 - ? (c < 5112 - ? (c < 4992 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954) - : (c <= 5007 || (c >= 5024 && c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c >= 5792 && c <= 5866))))) - : (c <= 5880 || (c < 5998 - ? (c < 5952 - ? (c < 5919 - ? (c >= 5888 && c <= 5905) - : c <= 5937) - : (c <= 5969 || (c >= 5984 && c <= 5996))) - : (c <= 6000 || (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6067) - : c <= 6103) - : (c <= 6108 || (c >= 6176 && c <= 6264))))))))) - : (c <= 6312 || (c < 7357 - ? (c < 6917 - ? (c < 6528 - ? (c < 6400 - ? (c < 6320 - ? c == 6314 - : c <= 6389) - : (c <= 6430 || (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6688 - ? (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678) - : (c <= 6740 || c == 6823)))) - : (c <= 6963 || (c < 7168 - ? (c < 7086 - ? (c < 7043 - ? (c >= 6981 && c <= 6988) - : c <= 7072) - : (c <= 7087 || (c >= 7098 && c <= 7141))) - : (c <= 7203 || (c < 7296 - ? (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))))))) - : (c <= 7359 || (c < 8016 - ? (c < 7424 - ? (c < 7413 - ? (c < 7406 - ? (c >= 7401 && c <= 7404) - : c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))) - : (c <= 8023 || (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) - : (c <= 8147 || (c < 12344 - ? (c < 11264 - ? (c < 8469 - ? (c < 8319 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305))) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))) - : (c <= 8469 || (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))) - : (c <= 11492 || (c < 11688 - ? (c < 11565 - ? (c < 11520 - ? (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507) - : (c <= 11557 || c == 11559)) - : (c <= 11565 || (c < 11648 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c >= 11680 && c <= 11686))))) - : (c <= 11694 || (c < 11728 - ? (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))) - : (c <= 11734 || (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) - : (c <= 12348 || (c < 42960 - ? (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c >= 19968 && c <= 42124))))) - : (c <= 42237 || (c < 42623 - ? (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))) - : (c <= 42653 || (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))))))) - : (c <= 42961 || (c < 43259 - ? (c < 43015 - ? (c < 42994 - ? (c < 42965 - ? c == 42963 - : c <= 42969) - : (c <= 43009 || (c >= 43011 && c <= 43013))) - : (c <= 43018 || (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c >= 43250 && c <= 43255))))) - : (c <= 43259 || (c < 43396 - ? (c < 43312 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))) - : (c <= 43442 || (c < 43494 - ? (c < 43488 - ? c == 43471 - : c <= 43492) - : (c <= 43503 || (c >= 43514 && c <= 43518))))))))))))))) - : (c <= 43560 || (c < 70751 - ? (c < 66964 - ? (c < 65008 - ? (c < 43888 - ? (c < 43739 - ? (c < 43697 - ? (c < 43616 - ? (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595) - : (c <= 43638 || (c < 43646 - ? c == 43642 - : c <= 43695))) - : (c <= 43697 || (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)))) - : (c <= 43741 || (c < 43793 - ? (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))) - : (c <= 43798 || (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))))))) - : (c <= 44002 || (c < 64298 - ? (c < 64112 - ? (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))))) - : (c <= 64310 || (c < 64326 - ? (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))) - : (c <= 64433 || (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))))))))) - : (c <= 65017 || (c < 65616 - ? (c < 65440 - ? (c < 65149 - ? (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65437))))) - : (c <= 65470 || (c < 65536 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))))))) - : (c <= 65629 || (c < 66504 - ? (c < 66304 - ? (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c >= 66464 && c <= 66499))))) - : (c <= 66511 || (c < 66816 - ? (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c >= 66776 && c <= 66811))) - : (c <= 66855 || (c < 66940 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : c <= 66938) - : (c <= 66954 || (c >= 66956 && c <= 66962))))))))))) - : (c <= 66965 || (c < 69248 - ? (c < 67840 - ? (c < 67584 - ? (c < 67392 - ? (c < 66995 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993) - : (c <= 67001 || (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382))) - : (c <= 67413 || (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))))) - : (c <= 67589 || (c < 67647 - ? (c < 67639 - ? (c < 67594 - ? c == 67592 - : c <= 67637) - : (c <= 67640 || c == 67644)) - : (c <= 67669 || (c < 67808 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742) - : (c <= 67826 || (c >= 67828 && c <= 67829))))))) - : (c <= 67861 || (c < 68288 - ? (c < 68112 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || c == 68096)) - : (c <= 68115 || (c < 68192 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68220 || (c >= 68224 && c <= 68252))))) - : (c <= 68295 || (c < 68480 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68324) - : c <= 68405) - : (c <= 68437 || (c >= 68448 && c <= 68466))) - : (c <= 68497 || (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c >= 68864 && c <= 68899))))))))) - : (c <= 69289 || (c < 70108 - ? (c < 69763 - ? (c < 69552 - ? (c < 69415 - ? (c < 69376 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69445) - : c <= 69505))) - : (c <= 69572 || (c < 69745 - ? (c < 69635 - ? (c >= 69600 && c <= 69622) - : c <= 69687) - : (c <= 69746 || c == 69749)))) - : (c <= 69807 || (c < 69968 - ? (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)) - : (c <= 70002 || (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)))))) - : (c <= 70108 || (c < 70415 - ? (c < 70282 - ? (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)) - : (c <= 70285 || (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))))) - : (c <= 70416 || (c < 70461 - ? (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c >= 70727 && c <= 70730))))))))))))) - : (c <= 70753 || (c < 119966 - ? (c < 73063 - ? (c < 72096 - ? (c < 71488 - ? (c < 71168 - ? (c < 70855 - ? (c < 70852 - ? (c >= 70784 && c <= 70831) - : c <= 70853) - : (c <= 70855 || (c < 71128 - ? (c >= 71040 && c <= 71086) - : c <= 71131))) - : (c <= 71215 || (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c >= 71424 && c <= 71450))))) - : (c <= 71494 || (c < 71948 - ? (c < 71935 - ? (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903) - : (c <= 71942 || c == 71945)) - : (c <= 71955 || (c < 71999 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71983) - : (c <= 71999 || c == 72001)))))) - : (c <= 72103 || (c < 72368 - ? (c < 72203 - ? (c < 72163 - ? (c < 72161 - ? (c >= 72106 && c <= 72144) - : c <= 72161) - : (c <= 72163 || c == 72192)) - : (c <= 72242 || (c < 72284 - ? (c < 72272 - ? c == 72250 - : c <= 72272) - : (c <= 72329 || c == 72349)))) - : (c <= 72440 || (c < 72960 - ? (c < 72768 - ? (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72750) - : (c <= 72768 || (c >= 72818 && c <= 72847))) - : (c <= 72966 || (c < 73030 - ? (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008) - : (c <= 73030 || (c >= 73056 && c <= 73061))))))))) - : (c <= 73064 || (c < 94032 - ? (c < 92160 - ? (c < 74752 - ? (c < 73440 - ? (c < 73112 - ? (c >= 73066 && c <= 73097) - : c <= 73112) - : (c <= 73458 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 77824 - ? (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808) - : (c <= 78894 || (c >= 82944 && c <= 83526))))) - : (c <= 92728 || (c < 92992 - ? (c < 92880 - ? (c < 92784 - ? (c >= 92736 && c <= 92766) - : c <= 92862) - : (c <= 92909 || (c >= 92928 && c <= 92975))) - : (c <= 92995 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))))))) - : (c <= 94032 || (c < 110592 - ? (c < 100352 - ? (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))) - : (c <= 101589 || (c < 110581 - ? (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579) - : (c <= 110587 || (c >= 110589 && c <= 110590))))) - : (c <= 110882 || (c < 113776 - ? (c < 110960 - ? (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 119808 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) - : (c <= 119967 || (c < 126464 - ? (c < 120598 - ? (c < 120094 - ? (c < 119997 - ? (c < 119977 - ? (c < 119973 - ? c == 119970 - : c <= 119974) - : (c <= 119980 || (c < 119995 - ? (c >= 119982 && c <= 119993) - : c <= 119995))) - : (c <= 120003 || (c < 120077 - ? (c < 120071 - ? (c >= 120005 && c <= 120069) - : c <= 120074) - : (c <= 120084 || (c >= 120086 && c <= 120092))))) - : (c <= 120121 || (c < 120146 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c >= 120138 && c <= 120144))) - : (c <= 120485 || (c < 120540 - ? (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538) - : (c <= 120570 || (c >= 120572 && c <= 120596))))))) - : (c <= 120628 || (c < 123214 - ? (c < 120746 - ? (c < 120688 - ? (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686) - : (c <= 120712 || (c >= 120714 && c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c >= 123191 && c <= 123197))))) - : (c <= 123214 || (c < 124909 - ? (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123565) - : c <= 123627) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || c == 126503)) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - static inline bool sym_cmd_identifier_character_set_5(int32_t c) { return (c < 43520 ? (c < 4197 @@ -11104,7 +11333,7 @@ static inline bool sym_cmd_identifier_character_set_5(int32_t c) { ? (c < 750 ? (c < 216 ? (c < 170 - ? (c < 'c' + ? (c < 'j' ? (c >= 'A' && c <= 'Y') : c <= 'y') : (c <= 170 || (c < 192 @@ -30020,85 +30249,85 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(353); - if (lookahead == '!') ADVANCE(77); + if (eof) ADVANCE(354); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1540); if (lookahead == '#') ADVANCE(1876); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(1538); if (lookahead == '(') ADVANCE(1066); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(976); if (lookahead == '+') ADVANCE(1003); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(891); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(892); if (lookahead == '.') ADVANCE(943); if (lookahead == '/') ADVANCE(994); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); - if (lookahead == '<') ADVANCE(879); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(881); - if (lookahead == '?') ADVANCE(885); - if (lookahead == '@') ADVANCE(883); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); + if (lookahead == '<') ADVANCE(880); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(882); + if (lookahead == '?') ADVANCE(886); + if (lookahead == '@') ADVANCE(884); if (lookahead == 'B') ADVANCE(1190); if (lookahead == '[') ADVANCE(1513); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == ']') ADVANCE(862); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == ']') ADVANCE(863); if (lookahead == '^') ADVANCE(1543); if (lookahead == '_') ADVANCE(941); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'b') ADVANCE(1187); if (lookahead == 'e') ADVANCE(897); if (lookahead == 'o') ADVANCE(898); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(819); + if (lookahead == 181) ADVANCE(820); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(349) + lookahead == ' ') SKIP(350) if (('0' <= lookahead && lookahead <= '9')) ADVANCE(899); if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(900); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(641); - if (lookahead == 'd') ADVANCE(630); - if (lookahead == 'f') ADVANCE(521); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'm') ADVANCE(525); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'r') ADVANCE(573); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'w') ADVANCE(588); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(642); + if (lookahead == 'd') ADVANCE(631); + if (lookahead == 'f') ADVANCE(522); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'm') ADVANCE(526); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'r') ADVANCE(574); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'w') ADVANCE(589); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(711); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(356); + if (lookahead == '\n') ADVANCE(357); if (lookahead == '#') ADVANCE(1875); if (lookahead == '\t' || lookahead == '\r' || @@ -30106,539 +30335,539 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(3); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(355); + if (lookahead == '\n') ADVANCE(356); if (lookahead != 0) ADVANCE(3); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); if (lookahead == '.') ADVANCE(945); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(620); - if (lookahead == 'b') ADVANCE(595); - if (lookahead == 'e') ADVANCE(624); - if (lookahead == 'f') ADVANCE(521); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'm') ADVANCE(636); - if (lookahead == 'n') ADVANCE(639); - if (lookahead == 'o') ADVANCE(651); - if (lookahead == 's') ADVANCE(687); - if (lookahead == 't') ADVANCE(665); - if (lookahead == 'x') ADVANCE(640); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(621); + if (lookahead == 'b') ADVANCE(596); + if (lookahead == 'e') ADVANCE(625); + if (lookahead == 'f') ADVANCE(522); + if (lookahead == 'i') ADVANCE(616); + if (lookahead == 'm') ADVANCE(637); + if (lookahead == 'n') ADVANCE(640); + if (lookahead == 'o') ADVANCE(652); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'x') ADVANCE(641); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(711); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(945); + if (lookahead == '.') ADVANCE(72); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(881); - if (lookahead == '?') ADVANCE(986); - if (lookahead == 'B') ADVANCE(1189); - if (lookahead == 'E') ADVANCE(83); - if (lookahead == 'G') ADVANCE(84); - if (lookahead == 'K') ADVANCE(85); - if (lookahead == 'M') ADVANCE(86); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'P') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'Z') ADVANCE(89); - if (lookahead == '[') ADVANCE(860); - if (lookahead == '_') ADVANCE(940); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(1183); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(224); - if (lookahead == 'i') ADVANCE(163); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(207); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(97); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'w') ADVANCE(183); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == 'z') ADVANCE(98); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'B') ADVANCE(1191); + if (lookahead == 'E') ADVANCE(479); + if (lookahead == 'G') ADVANCE(480); + if (lookahead == 'K') ADVANCE(481); + if (lookahead == 'M') ADVANCE(482); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == 'P') ADVANCE(483); + if (lookahead == 'T') ADVANCE(484); + if (lookahead == 'Z') ADVANCE(485); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(621); + if (lookahead == 'b') ADVANCE(1186); + if (lookahead == 'd') ADVANCE(528); + if (lookahead == 'e') ADVANCE(487); + if (lookahead == 'f') ADVANCE(522); + if (lookahead == 'g') ADVANCE(488); + if (lookahead == 'h') ADVANCE(650); + if (lookahead == 'i') ADVANCE(616); + if (lookahead == 'k') ADVANCE(489); + if (lookahead == 'm') ADVANCE(491); + if (lookahead == 'n') ADVANCE(639); + if (lookahead == 'o') ADVANCE(652); + if (lookahead == 'p') ADVANCE(492); + if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(494); + if (lookahead == 'u') ADVANCE(670); + if (lookahead == 'w') ADVANCE(601); + if (lookahead == 'x') ADVANCE(641); + if (lookahead == 'z') ADVANCE(495); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); - if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(235); + if (lookahead == '|') ADVANCE(866); + if (lookahead == 181) ADVANCE(669); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(711); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(760); - if (lookahead == '_') ADVANCE(722); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(798); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(761); + if (lookahead == '_') ADVANCE(723); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(799); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1105); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); if (lookahead == '\'') ADVANCE(54); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); if (lookahead == '\'') ADVANCE(54); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(944); if (lookahead == '/') ADVANCE(993); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); if (lookahead == '\'') ADVANCE(54); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); - if (lookahead == '.') ADVANCE(70); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); + if (lookahead == '.') ADVANCE(71); if (lookahead == '/') ADVANCE(993); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == 'B') ADVANCE(1190); - if (lookahead == 'E') ADVANCE(723); - if (lookahead == 'G') ADVANCE(724); - if (lookahead == 'K') ADVANCE(725); - if (lookahead == 'M') ADVANCE(726); - if (lookahead == 'P') ADVANCE(727); - if (lookahead == 'T') ADVANCE(728); - if (lookahead == 'Z') ADVANCE(729); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(795); + if (lookahead == 'E') ADVANCE(724); + if (lookahead == 'G') ADVANCE(725); + if (lookahead == 'K') ADVANCE(726); + if (lookahead == 'M') ADVANCE(727); + if (lookahead == 'P') ADVANCE(728); + if (lookahead == 'T') ADVANCE(729); + if (lookahead == 'Z') ADVANCE(730); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(796); if (lookahead == 'b') ADVANCE(1184); - if (lookahead == 'd') ADVANCE(759); - if (lookahead == 'e') ADVANCE(730); - if (lookahead == 'g') ADVANCE(731); - if (lookahead == 'h') ADVANCE(809); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'k') ADVANCE(732); - if (lookahead == 'm') ADVANCE(733); - if (lookahead == 'n') ADVANCE(806); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 'p') ADVANCE(734); - if (lookahead == 's') ADVANCE(776); - if (lookahead == 't') ADVANCE(735); - if (lookahead == 'u') ADVANCE(820); - if (lookahead == 'w') ADVANCE(786); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == 'z') ADVANCE(736); + if (lookahead == 'd') ADVANCE(760); + if (lookahead == 'e') ADVANCE(731); + if (lookahead == 'g') ADVANCE(732); + if (lookahead == 'h') ADVANCE(810); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'k') ADVANCE(733); + if (lookahead == 'm') ADVANCE(734); + if (lookahead == 'n') ADVANCE(807); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 'p') ADVANCE(735); + if (lookahead == 's') ADVANCE(777); + if (lookahead == 't') ADVANCE(736); + if (lookahead == 'u') ADVANCE(821); + if (lookahead == 'w') ADVANCE(787); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == 'z') ADVANCE(737); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(819); + if (lookahead == 181) ADVANCE(820); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_3(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(837); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '(') ADVANCE(1066); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); - if (lookahead == '.') ADVANCE(66); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); + if (lookahead == '.') ADVANCE(67); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == 'B') ADVANCE(1190); - if (lookahead == 'E') ADVANCE(723); - if (lookahead == 'G') ADVANCE(724); - if (lookahead == 'K') ADVANCE(725); - if (lookahead == 'M') ADVANCE(726); - if (lookahead == 'P') ADVANCE(727); - if (lookahead == 'T') ADVANCE(728); - if (lookahead == 'Z') ADVANCE(729); + if (lookahead == 'E') ADVANCE(724); + if (lookahead == 'G') ADVANCE(725); + if (lookahead == 'K') ADVANCE(726); + if (lookahead == 'M') ADVANCE(727); + if (lookahead == 'P') ADVANCE(728); + if (lookahead == 'T') ADVANCE(729); + if (lookahead == 'Z') ADVANCE(730); if (lookahead == '[') ADVANCE(1513); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(795); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(796); if (lookahead == 'b') ADVANCE(1184); - if (lookahead == 'd') ADVANCE(759); - if (lookahead == 'e') ADVANCE(730); - if (lookahead == 'g') ADVANCE(731); - if (lookahead == 'h') ADVANCE(809); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'k') ADVANCE(732); - if (lookahead == 'm') ADVANCE(733); - if (lookahead == 'n') ADVANCE(806); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 'p') ADVANCE(734); - if (lookahead == 's') ADVANCE(776); - if (lookahead == 't') ADVANCE(735); - if (lookahead == 'u') ADVANCE(820); - if (lookahead == 'w') ADVANCE(786); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == 'z') ADVANCE(736); - if (lookahead == '|') ADVANCE(865); - if (lookahead == 181) ADVANCE(819); + if (lookahead == 'd') ADVANCE(760); + if (lookahead == 'e') ADVANCE(731); + if (lookahead == 'g') ADVANCE(732); + if (lookahead == 'h') ADVANCE(810); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'k') ADVANCE(733); + if (lookahead == 'm') ADVANCE(734); + if (lookahead == 'n') ADVANCE(807); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 'p') ADVANCE(735); + if (lookahead == 's') ADVANCE(777); + if (lookahead == 't') ADVANCE(736); + if (lookahead == 'u') ADVANCE(821); + if (lookahead == 'w') ADVANCE(787); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == 'z') ADVANCE(737); + if (lookahead == '|') ADVANCE(866); + if (lookahead == 181) ADVANCE(820); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_4(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '$') ADVANCE(868); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(890); - if (lookahead == '.') ADVANCE(73); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(891); + if (lookahead == '.') ADVANCE(74); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(760); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '_') ADVANCE(722); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(798); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(761); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '_') ADVANCE(723); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(799); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == '|') ADVANCE(866); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1105); - if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_cmd_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '$') ADVANCE(868); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); if (lookahead == '.') ADVANCE(943); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == '|') ADVANCE(865); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == '|') ADVANCE(866); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (sym_identifier_character_set_5(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(837); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '$') ADVANCE(868); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); - if (lookahead == '.') ADVANCE(66); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); + if (lookahead == '.') ADVANCE(67); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == 'B') ADVANCE(1190); - if (lookahead == 'E') ADVANCE(723); - if (lookahead == 'G') ADVANCE(724); - if (lookahead == 'K') ADVANCE(725); - if (lookahead == 'M') ADVANCE(726); - if (lookahead == 'P') ADVANCE(727); - if (lookahead == 'T') ADVANCE(728); - if (lookahead == 'Z') ADVANCE(729); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(795); + if (lookahead == 'E') ADVANCE(724); + if (lookahead == 'G') ADVANCE(725); + if (lookahead == 'K') ADVANCE(726); + if (lookahead == 'M') ADVANCE(727); + if (lookahead == 'P') ADVANCE(728); + if (lookahead == 'T') ADVANCE(729); + if (lookahead == 'Z') ADVANCE(730); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(796); if (lookahead == 'b') ADVANCE(1184); - if (lookahead == 'd') ADVANCE(759); - if (lookahead == 'e') ADVANCE(730); - if (lookahead == 'g') ADVANCE(731); - if (lookahead == 'h') ADVANCE(809); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'k') ADVANCE(732); - if (lookahead == 'm') ADVANCE(733); - if (lookahead == 'n') ADVANCE(806); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 'p') ADVANCE(734); - if (lookahead == 's') ADVANCE(776); - if (lookahead == 't') ADVANCE(735); - if (lookahead == 'u') ADVANCE(820); - if (lookahead == 'w') ADVANCE(786); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == 'z') ADVANCE(736); - if (lookahead == '|') ADVANCE(865); - if (lookahead == 181) ADVANCE(819); + if (lookahead == 'd') ADVANCE(760); + if (lookahead == 'e') ADVANCE(731); + if (lookahead == 'g') ADVANCE(732); + if (lookahead == 'h') ADVANCE(810); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'k') ADVANCE(733); + if (lookahead == 'm') ADVANCE(734); + if (lookahead == 'n') ADVANCE(807); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 'p') ADVANCE(735); + if (lookahead == 's') ADVANCE(777); + if (lookahead == 't') ADVANCE(736); + if (lookahead == 'u') ADVANCE(821); + if (lookahead == 'w') ADVANCE(787); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == 'z') ADVANCE(737); + if (lookahead == '|') ADVANCE(866); + if (lookahead == 181) ADVANCE(820); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_4(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '$') ADVANCE(868); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); if (lookahead == '.') ADVANCE(947); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'b') ADVANCE(784); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'i') ADVANCE(796); - if (lookahead == 'm') ADVANCE(802); - if (lookahead == 'n') ADVANCE(807); - if (lookahead == 'o') ADVANCE(810); - if (lookahead == 's') ADVANCE(827); - if (lookahead == 'x') ADVANCE(801); - if (lookahead == '|') ADVANCE(865); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(796); + if (lookahead == 'b') ADVANCE(785); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'm') ADVANCE(803); + if (lookahead == 'n') ADVANCE(808); + if (lookahead == 'o') ADVANCE(811); + if (lookahead == 's') ADVANCE(828); + if (lookahead == 'x') ADVANCE(802); + if (lookahead == '|') ADVANCE(866); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_5(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(837); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); if (lookahead == '-') ADVANCE(893); if (lookahead == '.') ADVANCE(944); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); if (lookahead == 'B') ADVANCE(1189); - if (lookahead == 'E') ADVANCE(83); - if (lookahead == 'G') ADVANCE(84); - if (lookahead == 'K') ADVANCE(85); - if (lookahead == 'M') ADVANCE(86); - if (lookahead == 'P') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'Z') ADVANCE(89); - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); + if (lookahead == 'a') ADVANCE(195); if (lookahead == 'b') ADVANCE(1183); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(224); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(218); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(96); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'w') ADVANCE(183); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == 'z') ADVANCE(98); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'g') ADVANCE(93); + if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'k') ADVANCE(94); + if (lookahead == 'm') ADVANCE(95); + if (lookahead == 'n') ADVANCE(219); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(97); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == 'w') ADVANCE(184); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'z') ADVANCE(99); if (lookahead == '{') ADVANCE(937); - if (lookahead == 181) ADVANCE(235); + if (lookahead == 181) ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) END_STATE(); case 16: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(163); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(164); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || @@ -30648,28 +30877,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_') ADVANCE(1105); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(195); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || @@ -30679,32 +30908,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_') ADVANCE(1105); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(164); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || @@ -30712,29 +30941,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(18) END_STATE(); case 19: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(164); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || @@ -30742,77 +30971,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(19) END_STATE(); case 20: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(887); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(944); if (lookahead == '/') ADVANCE(993); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); if (lookahead == 'B') ADVANCE(1189); - if (lookahead == 'E') ADVANCE(83); - if (lookahead == 'G') ADVANCE(84); - if (lookahead == 'K') ADVANCE(85); - if (lookahead == 'M') ADVANCE(86); - if (lookahead == 'P') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'Z') ADVANCE(89); - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); + if (lookahead == 'a') ADVANCE(195); if (lookahead == 'b') ADVANCE(1183); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(224); - if (lookahead == 'i') ADVANCE(164); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(218); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(96); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'w') ADVANCE(183); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == 'z') ADVANCE(98); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'g') ADVANCE(93); + if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'k') ADVANCE(94); + if (lookahead == 'm') ADVANCE(95); + if (lookahead == 'n') ADVANCE(219); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(97); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == 'w') ADVANCE(184); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'z') ADVANCE(99); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(235); + if (lookahead == 181) ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) END_STATE(); case 21: - if (lookahead == '!') ADVANCE(77); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); if (lookahead == '-') ADVANCE(893); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); + if (lookahead == ':') ADVANCE(859); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || @@ -30822,8 +31051,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: if (lookahead == '"') ADVANCE(1540); if (lookahead == '#') ADVANCE(1534); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '\\') ADVANCE(311); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '\\') ADVANCE(312); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -30833,56 +31062,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 23: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); - if (lookahead == ',') ADVANCE(861); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'f') ADVANCE(521); - if (lookahead == 'i') ADVANCE(618); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 't') ADVANCE(665); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(522); + if (lookahead == 'i') ADVANCE(619); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 't') ADVANCE(666); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(711); END_STATE(); case 24: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); - if (lookahead == ',') ADVANCE(861); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(940); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(187); - if (lookahead == 'c') ADVANCE(213); - if (lookahead == 'd') ADVANCE(157); - if (lookahead == 'e') ADVANCE(270); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(201); - if (lookahead == 'm') ADVANCE(212); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(226); - if (lookahead == 'u') ADVANCE(240); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(188); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(158); + if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'm') ADVANCE(213); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(227); + if (lookahead == 'u') ADVANCE(241); if (lookahead == '{') ADVANCE(937); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || @@ -30894,98 +31123,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 25: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == '>') ADVANCE(880); - if (lookahead == 'N') ADVANCE(383); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '>') ADVANCE(881); + if (lookahead == 'N') ADVANCE(384); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(381); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(422); - if (lookahead == 'b') ADVANCE(444); - if (lookahead == 'c') ADVANCE(432); - if (lookahead == 'd') ADVANCE(393); - if (lookahead == 'e') ADVANCE(446); - if (lookahead == 'f') ADVANCE(386); - if (lookahead == 'h') ADVANCE(416); - if (lookahead == 'i') ADVANCE(410); - if (lookahead == 'l') ADVANCE(394); - if (lookahead == 'm') ADVANCE(388); - if (lookahead == 'n') ADVANCE(435); - if (lookahead == 'o') ADVANCE(470); - if (lookahead == 'r') ADVANCE(395); - if (lookahead == 's') ADVANCE(433); - if (lookahead == 't') ADVANCE(440); - if (lookahead == 'u') ADVANCE(454); - if (lookahead == 'w') ADVANCE(414); + if (lookahead == '_') ADVANCE(382); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'b') ADVANCE(445); + if (lookahead == 'c') ADVANCE(433); + if (lookahead == 'd') ADVANCE(394); + if (lookahead == 'e') ADVANCE(447); + if (lookahead == 'f') ADVANCE(387); + if (lookahead == 'h') ADVANCE(417); + if (lookahead == 'i') ADVANCE(411); + if (lookahead == 'l') ADVANCE(395); + if (lookahead == 'm') ADVANCE(389); + if (lookahead == 'n') ADVANCE(436); + if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'r') ADVANCE(396); + if (lookahead == 's') ADVANCE(434); + if (lookahead == 't') ADVANCE(441); + if (lookahead == 'u') ADVANCE(455); + if (lookahead == 'w') ADVANCE(415); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(473); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 26: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(641); - if (lookahead == 'd') ADVANCE(630); - if (lookahead == 'f') ADVANCE(521); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'm') ADVANCE(525); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'r') ADVANCE(573); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'w') ADVANCE(588); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(642); + if (lookahead == 'd') ADVANCE(631); + if (lookahead == 'f') ADVANCE(522); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'm') ADVANCE(526); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'r') ADVANCE(574); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'w') ADVANCE(589); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(711); END_STATE(); case 27: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1105); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(201); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(226); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(227); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || @@ -30996,43 +31225,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(760); - if (lookahead == '[') ADVANCE(860); - if (lookahead == '_') ADVANCE(722); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'f') ADVANCE(761); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == 'n') ADVANCE(803); - if (lookahead == 't') ADVANCE(812); + if (lookahead == 'N') ADVANCE(761); + if (lookahead == '[') ADVANCE(861); + if (lookahead == '_') ADVANCE(723); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(762); + if (lookahead == 'i') ADVANCE(798); + if (lookahead == 'n') ADVANCE(804); + if (lookahead == 't') ADVANCE(813); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(836); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 29: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1661); if (lookahead == 'N') ADVANCE(1675); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1665); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'f') ADVANCE(1676); if (lookahead == 'i') ADVANCE(1690); if (lookahead == 'n') ADVANCE(1692); @@ -31048,21 +31277,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 30: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1105); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(201); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(226); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(227); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || @@ -31073,144 +31302,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 31: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); - if (lookahead == '.') ADVANCE(72); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '?') ADVANCE(885); - if (lookahead == '@') ADVANCE(883); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '`') ADVANCE(121); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); + if (lookahead == '.') ADVANCE(73); + if (lookahead == ':') ADVANCE(859); + if (lookahead == '<') ADVANCE(879); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '>') ADVANCE(881); + if (lookahead == '?') ADVANCE(886); + if (lookahead == '@') ADVANCE(884); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '`') ADVANCE(122); + if (lookahead == '|') ADVANCE(866); + if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 32: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(888); - if (lookahead == '.') ADVANCE(72); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '@') ADVANCE(883); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '`') ADVANCE(121); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(889); + if (lookahead == '.') ADVANCE(73); + if (lookahead == ':') ADVANCE(859); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '>') ADVANCE(881); + if (lookahead == '@') ADVANCE(884); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '`') ADVANCE(122); + if (lookahead == '|') ADVANCE(866); + if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 33: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(864); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(892); - if (lookahead == '.') ADVANCE(72); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '<') ADVANCE(878); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '@') ADVANCE(883); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '`') ADVANCE(121); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(56); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '>') ADVANCE(881); + if (lookahead == '@') ADVANCE(884); + if (lookahead == '`') ADVANCE(122); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); - if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + lookahead == ' ') SKIP(33) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(837); END_STATE(); case 34: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(864); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(892); - if (lookahead == '.') ADVANCE(72); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '@') ADVANCE(883); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '`') ADVANCE(122); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); - if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(711); END_STATE(); case 35: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '`') ADVANCE(121); - if (lookahead == '{') ADVANCE(937); + if (lookahead == '`') ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1542); END_STATE(); case 36: if (lookahead == '"') ADVANCE(1527); - if (lookahead == '#') ADVANCE(1874); + if (lookahead == '#') ADVANCE(1877); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(1728); + if (lookahead == '-') ADVANCE(894); + if (lookahead == '.') ADVANCE(1729); + if (lookahead == '0') ADVANCE(1107); + if (lookahead == 'N') ADVANCE(1775); + if (lookahead == '[') ADVANCE(861); + if (lookahead == '_') ADVANCE(1111); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(1777); + if (lookahead == 'i') ADVANCE(1814); + if (lookahead == 'n') ADVANCE(1821); + if (lookahead == 't') ADVANCE(1825); + if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1542); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(1873); END_STATE(); case 37: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(1729); if (lookahead == '0') ADVANCE(1107); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1720); if (lookahead == 'f') ADVANCE(1777); if (lookahead == 'i') ADVANCE(1814); @@ -31232,9 +31463,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 38: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(867); + if (lookahead == '$') ADVANCE(868); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31252,7 +31483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 39: if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1529); - if (lookahead == '\\') ADVANCE(262); + if (lookahead == '\\') ADVANCE(263); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31261,12 +31492,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '-') ADVANCE(887); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'n') ADVANCE(215); - if (lookahead == 't') ADVANCE(226); + if (lookahead == '$') ADVANCE(868); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '-') ADVANCE(888); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'n') ADVANCE(216); + if (lookahead == 't') ADVANCE(227); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31274,25 +31505,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 41: if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(68); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '$') ADVANCE(868); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(69); + if (lookahead == '.') ADVANCE(299); if (lookahead == '0') ADVANCE(1104); - if (lookahead == 'N') ADVANCE(760); - if (lookahead == '_') ADVANCE(722); - if (lookahead == 'i') ADVANCE(797); + if (lookahead == 'N') ADVANCE(761); + if (lookahead == '_') ADVANCE(723); + if (lookahead == 'i') ADVANCE(798); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1105); - if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(836); + if (sym_cmd_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 42: if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == '-') ADVANCE(56); + if (lookahead == '$') ADVANCE(868); + if (lookahead == '-') ADVANCE(57); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || @@ -31303,66 +31534,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(867); - if (lookahead == '-') ADVANCE(56); + if (lookahead == '$') ADVANCE(868); + if (lookahead == '-') ADVANCE(57); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(837); END_STATE(); case 44: if (lookahead == '#') ADVANCE(1874); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(80); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(83); if (lookahead == '.') ADVANCE(942); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '<') ADVANCE(878); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'c') ADVANCE(782); - if (lookahead == 'e') ADVANCE(815); - if (lookahead == 'f') ADVANCE(832); - if (lookahead == 'i') ADVANCE(794); - if (lookahead == 'o') ADVANCE(800); - if (lookahead == 'v') ADVANCE(763); + if (lookahead == ':') ADVANCE(859); + if (lookahead == '<') ADVANCE(879); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '>') ADVANCE(881); + if (lookahead == '@') ADVANCE(884); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'c') ADVANCE(783); + if (lookahead == 'e') ADVANCE(816); + if (lookahead == 'f') ADVANCE(833); + if (lookahead == 'i') ADVANCE(795); + if (lookahead == 'o') ADVANCE(801); + if (lookahead == 'v') ADVANCE(764); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(837); END_STATE(); case 45: if (lookahead == '#') ADVANCE(1874); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(80); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(83); if (lookahead == '.') ADVANCE(942); - if (lookahead == ':') ADVANCE(858); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '>') ADVANCE(880); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == 'c') ADVANCE(782); - if (lookahead == 'e') ADVANCE(815); - if (lookahead == 'f') ADVANCE(832); - if (lookahead == 'i') ADVANCE(794); - if (lookahead == 'o') ADVANCE(800); - if (lookahead == 'v') ADVANCE(763); + if (lookahead == ':') ADVANCE(859); + if (lookahead == '=') ADVANCE(365); + if (lookahead == '>') ADVANCE(881); + if (lookahead == '@') ADVANCE(884); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == 'c') ADVANCE(783); + if (lookahead == 'e') ADVANCE(816); + if (lookahead == 'f') ADVANCE(833); + if (lookahead == 'i') ADVANCE(795); + if (lookahead == 'o') ADVANCE(801); + if (lookahead == 'v') ADVANCE(764); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(837); END_STATE(); case 46: if (lookahead == '#') ADVANCE(1874); - if (lookahead == ',') ADVANCE(861); - if (lookahead == ']') ADVANCE(862); + if (lookahead == ',') ADVANCE(862); + if (lookahead == ']') ADVANCE(863); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31373,22 +31606,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 47: if (lookahead == '#') ADVANCE(1874); - if (lookahead == 'h') ADVANCE(785); - if (lookahead == 'u') ADVANCE(823); + if (lookahead == 'h') ADVANCE(786); + if (lookahead == 'u') ADVANCE(824); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(837); END_STATE(); case 48: if (lookahead == '#') ADVANCE(1874); - if (lookahead == 'i') ADVANCE(796); + if (lookahead == 'i') ADVANCE(797); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) - if (sym_identifier_character_set_6(lookahead)) ADVANCE(836); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(837); END_STATE(); case 49: if (lookahead == '#') ADVANCE(1874); @@ -31401,7 +31634,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 50: if (lookahead == '#') ADVANCE(1874); - if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'i') ADVANCE(198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31427,7 +31660,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 53: if (lookahead == '#') ADVANCE(1536); if (lookahead == '\'') ADVANCE(1538); - if (lookahead == '(') ADVANCE(863); + if (lookahead == '(') ADVANCE(864); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -31439,104 +31672,106 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(54); END_STATE(); case 55: - if (lookahead == '-') ADVANCE(886); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '-') ADVANCE(887); + if (lookahead == '.') ADVANCE(299); if (lookahead == 'i') ADVANCE(1557); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1106); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1559); END_STATE(); case 56: - if (lookahead == '-') ADVANCE(886); + if (lookahead == '-') ADVANCE(887); + if (lookahead == '>') ADVANCE(860); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1559); END_STATE(); case 57: - if (lookahead == '-') ADVANCE(125); + if (lookahead == '-') ADVANCE(887); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1559); END_STATE(); case 58: - if (lookahead == '-') ADVANCE(178); + if (lookahead == '-') ADVANCE(126); END_STATE(); case 59: - if (lookahead == '-') ADVANCE(267); + if (lookahead == '-') ADVANCE(179); END_STATE(); case 60: - if (lookahead == '-') ADVANCE(208); + if (lookahead == '-') ADVANCE(268); END_STATE(); case 61: - if (lookahead == '-') ADVANCE(247); + if (lookahead == '-') ADVANCE(209); END_STATE(); case 62: - if (lookahead == '-') ADVANCE(290); + if (lookahead == '-') ADVANCE(248); END_STATE(); case 63: - if (lookahead == '-') ADVANCE(268); + if (lookahead == '-') ADVANCE(291); END_STATE(); case 64: - if (lookahead == '-') ADVANCE(296); + if (lookahead == '-') ADVANCE(269); END_STATE(); case 65: - if (lookahead == '-') ADVANCE(223); + if (lookahead == '-') ADVANCE(297); END_STATE(); case 66: - if (lookahead == '.') ADVANCE(1069); + if (lookahead == '-') ADVANCE(224); END_STATE(); case 67: - if (lookahead == '.') ADVANCE(884); + if (lookahead == '.') ADVANCE(1069); END_STATE(); case 68: - if (lookahead == '.') ADVANCE(298); - if (lookahead == 'i') ADVANCE(193); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1105); + if (lookahead == '.') ADVANCE(885); END_STATE(); case 69: - if (lookahead == '.') ADVANCE(298); + if (lookahead == '.') ADVANCE(299); + if (lookahead == 'i') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); case 70: - if (lookahead == '.') ADVANCE(1070); + if (lookahead == '.') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(1105); END_STATE(); case 71: if (lookahead == '.') ADVANCE(1070); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1112); END_STATE(); case 72: - if (lookahead == '.') ADVANCE(67); - END_STATE(); - case 73: - if (lookahead == '.') ADVANCE(67); + if (lookahead == '.') ADVANCE(1070); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1112); END_STATE(); + case 73: + if (lookahead == '.') ADVANCE(68); + END_STATE(); case 74: - if (lookahead == '2') ADVANCE(280); - if (lookahead == '0' || - lookahead == '1') ADVANCE(288); + if (lookahead == '.') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(1112); END_STATE(); case 75: - if (lookahead == ':') ADVANCE(292); + if (lookahead == '2') ADVANCE(281); + if (lookahead == '0' || + lookahead == '1') ADVANCE(289); END_STATE(); case 76: - if (lookahead == ':') ADVANCE(297); + if (lookahead == ':') ADVANCE(293); END_STATE(); case 77: + if (lookahead == ':') ADVANCE(298); + END_STATE(); + case 78: if (lookahead == '=') ADVANCE(1015); if (lookahead == '~') ADVANCE(1034); END_STATE(); - case 78: + case 79: if (lookahead == '=') ADVANCE(1013); if (lookahead == '>') ADVANCE(939); if (lookahead == '~') ADVANCE(1032); END_STATE(); - case 79: + case 80: if (lookahead == '=') ADVANCE(1013); if (lookahead == '~') ADVANCE(1032); END_STATE(); - case 80: - if (lookahead == '>') ADVANCE(859); - END_STATE(); case 81: if (lookahead == '>') ADVANCE(1554); END_STATE(); @@ -31544,738 +31779,738 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(1552); END_STATE(); case 83: - if (lookahead == 'B') ADVANCE(1285); - if (lookahead == 'I') ADVANCE(99); - if (lookahead == 'b') ADVANCE(1281); - if (lookahead == 'i') ADVANCE(133); + if (lookahead == '>') ADVANCE(860); END_STATE(); case 84: - if (lookahead == 'B') ADVANCE(1237); + if (lookahead == 'B') ADVANCE(1285); if (lookahead == 'I') ADVANCE(100); - if (lookahead == 'b') ADVANCE(1233); + if (lookahead == 'b') ADVANCE(1281); if (lookahead == 'i') ADVANCE(134); END_STATE(); case 85: - if (lookahead == 'B') ADVANCE(1205); + if (lookahead == 'B') ADVANCE(1237); if (lookahead == 'I') ADVANCE(101); - if (lookahead == 'b') ADVANCE(1201); + if (lookahead == 'b') ADVANCE(1233); if (lookahead == 'i') ADVANCE(135); END_STATE(); case 86: - if (lookahead == 'B') ADVANCE(1221); + if (lookahead == 'B') ADVANCE(1205); if (lookahead == 'I') ADVANCE(102); - if (lookahead == 'b') ADVANCE(1217); + if (lookahead == 'b') ADVANCE(1201); if (lookahead == 'i') ADVANCE(136); END_STATE(); case 87: - if (lookahead == 'B') ADVANCE(1269); + if (lookahead == 'B') ADVANCE(1221); if (lookahead == 'I') ADVANCE(103); - if (lookahead == 'b') ADVANCE(1265); + if (lookahead == 'b') ADVANCE(1217); if (lookahead == 'i') ADVANCE(137); END_STATE(); case 88: - if (lookahead == 'B') ADVANCE(1253); + if (lookahead == 'B') ADVANCE(1269); if (lookahead == 'I') ADVANCE(104); - if (lookahead == 'b') ADVANCE(1249); + if (lookahead == 'b') ADVANCE(1265); if (lookahead == 'i') ADVANCE(138); END_STATE(); case 89: - if (lookahead == 'B') ADVANCE(1301); + if (lookahead == 'B') ADVANCE(1253); if (lookahead == 'I') ADVANCE(105); - if (lookahead == 'b') ADVANCE(1297); + if (lookahead == 'b') ADVANCE(1249); if (lookahead == 'i') ADVANCE(139); END_STATE(); case 90: - if (lookahead == 'B') ADVANCE(1277); + if (lookahead == 'B') ADVANCE(1301); if (lookahead == 'I') ADVANCE(106); - if (lookahead == 'b') ADVANCE(1273); - if (lookahead == 'i') ADVANCE(107); - if (lookahead == 'l') ADVANCE(239); - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'b') ADVANCE(1297); + if (lookahead == 'i') ADVANCE(140); END_STATE(); case 91: if (lookahead == 'B') ADVANCE(1277); - if (lookahead == 'I') ADVANCE(106); + if (lookahead == 'I') ADVANCE(107); if (lookahead == 'b') ADVANCE(1273); - if (lookahead == 'i') ADVANCE(107); - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(149); END_STATE(); case 92: + if (lookahead == 'B') ADVANCE(1277); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'b') ADVANCE(1273); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'n') ADVANCE(149); + END_STATE(); + case 93: if (lookahead == 'B') ADVANCE(1229); - if (lookahead == 'I') ADVANCE(108); + if (lookahead == 'I') ADVANCE(109); if (lookahead == 'b') ADVANCE(1225); - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 'i') ADVANCE(110); END_STATE(); - case 93: + case 94: if (lookahead == 'B') ADVANCE(1197); - if (lookahead == 'I') ADVANCE(110); + if (lookahead == 'I') ADVANCE(111); if (lookahead == 'b') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'i') ADVANCE(112); END_STATE(); - case 94: + case 95: if (lookahead == 'B') ADVANCE(1213); - if (lookahead == 'I') ADVANCE(112); + if (lookahead == 'I') ADVANCE(113); if (lookahead == 'b') ADVANCE(1209); - if (lookahead == 'i') ADVANCE(113); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'i') ADVANCE(114); + if (lookahead == 'o') ADVANCE(146); if (lookahead == 's') ADVANCE(1158); END_STATE(); - case 95: + case 96: if (lookahead == 'B') ADVANCE(1261); - if (lookahead == 'I') ADVANCE(114); + if (lookahead == 'I') ADVANCE(115); if (lookahead == 'b') ADVANCE(1257); - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'i') ADVANCE(116); END_STATE(); - case 96: + case 97: if (lookahead == 'B') ADVANCE(1245); - if (lookahead == 'I') ADVANCE(116); + if (lookahead == 'I') ADVANCE(117); if (lookahead == 'b') ADVANCE(1241); - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'i') ADVANCE(118); END_STATE(); - case 97: + case 98: if (lookahead == 'B') ADVANCE(1245); - if (lookahead == 'I') ADVANCE(116); + if (lookahead == 'I') ADVANCE(117); if (lookahead == 'b') ADVANCE(1241); - if (lookahead == 'i') ADVANCE(117); - if (lookahead == 'r') ADVANCE(263); + if (lookahead == 'i') ADVANCE(118); + if (lookahead == 'r') ADVANCE(264); END_STATE(); - case 98: + case 99: if (lookahead == 'B') ADVANCE(1293); - if (lookahead == 'I') ADVANCE(118); + if (lookahead == 'I') ADVANCE(119); if (lookahead == 'b') ADVANCE(1289); - if (lookahead == 'i') ADVANCE(119); + if (lookahead == 'i') ADVANCE(120); END_STATE(); - case 99: + case 100: if (lookahead == 'B') ADVANCE(1469); if (lookahead == 'b') ADVANCE(1465); END_STATE(); - case 100: + case 101: if (lookahead == 'B') ADVANCE(1385); if (lookahead == 'b') ADVANCE(1381); END_STATE(); - case 101: + case 102: if (lookahead == 'B') ADVANCE(1329); if (lookahead == 'b') ADVANCE(1325); END_STATE(); - case 102: + case 103: if (lookahead == 'B') ADVANCE(1357); if (lookahead == 'b') ADVANCE(1353); END_STATE(); - case 103: + case 104: if (lookahead == 'B') ADVANCE(1441); if (lookahead == 'b') ADVANCE(1437); END_STATE(); - case 104: + case 105: if (lookahead == 'B') ADVANCE(1413); if (lookahead == 'b') ADVANCE(1409); END_STATE(); - case 105: + case 106: if (lookahead == 'B') ADVANCE(1497); if (lookahead == 'b') ADVANCE(1493); END_STATE(); - case 106: + case 107: if (lookahead == 'B') ADVANCE(1453); if (lookahead == 'b') ADVANCE(1457); END_STATE(); - case 107: + case 108: if (lookahead == 'B') ADVANCE(1449); if (lookahead == 'b') ADVANCE(1445); END_STATE(); - case 108: + case 109: if (lookahead == 'B') ADVANCE(1369); if (lookahead == 'b') ADVANCE(1373); END_STATE(); - case 109: + case 110: if (lookahead == 'B') ADVANCE(1365); if (lookahead == 'b') ADVANCE(1361); END_STATE(); - case 110: + case 111: if (lookahead == 'B') ADVANCE(1313); if (lookahead == 'b') ADVANCE(1317); END_STATE(); - case 111: + case 112: if (lookahead == 'B') ADVANCE(1309); if (lookahead == 'b') ADVANCE(1305); END_STATE(); - case 112: + case 113: if (lookahead == 'B') ADVANCE(1341); if (lookahead == 'b') ADVANCE(1345); END_STATE(); - case 113: + case 114: if (lookahead == 'B') ADVANCE(1337); if (lookahead == 'b') ADVANCE(1333); if (lookahead == 'n') ADVANCE(1166); END_STATE(); - case 114: + case 115: if (lookahead == 'B') ADVANCE(1425); if (lookahead == 'b') ADVANCE(1429); END_STATE(); - case 115: + case 116: if (lookahead == 'B') ADVANCE(1421); if (lookahead == 'b') ADVANCE(1417); END_STATE(); - case 116: + case 117: if (lookahead == 'B') ADVANCE(1397); if (lookahead == 'b') ADVANCE(1401); END_STATE(); - case 117: + case 118: if (lookahead == 'B') ADVANCE(1393); if (lookahead == 'b') ADVANCE(1389); END_STATE(); - case 118: + case 119: if (lookahead == 'B') ADVANCE(1481); if (lookahead == 'b') ADVANCE(1485); END_STATE(); - case 119: + case 120: if (lookahead == 'B') ADVANCE(1477); if (lookahead == 'b') ADVANCE(1473); END_STATE(); - case 120: - if (lookahead == 'N') ADVANCE(1137); - END_STATE(); case 121: - if (lookahead == '`') ADVANCE(1531); - if (lookahead != 0) ADVANCE(121); + if (lookahead == 'N') ADVANCE(1137); END_STATE(); case 122: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == '`') ADVANCE(1531); + if (lookahead != 0) ADVANCE(122); END_STATE(); case 123: - if (lookahead == 'a') ADVANCE(271); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 124: - if (lookahead == 'a') ADVANCE(188); + if (lookahead == 'a') ADVANCE(272); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'o') ADVANCE(228); - if (lookahead == 's') ADVANCE(169); - if (lookahead == 'x') ADVANCE(214); + if (lookahead == 'a') ADVANCE(189); END_STATE(); case 126: - if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'a') ADVANCE(204); + if (lookahead == 'o') ADVANCE(229); + if (lookahead == 's') ADVANCE(170); + if (lookahead == 'x') ADVANCE(215); END_STATE(); case 127: - if (lookahead == 'a') ADVANCE(248); + if (lookahead == 'a') ADVANCE(232); END_STATE(); case 128: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'a') ADVANCE(249); END_STATE(); case 129: - if (lookahead == 'a') ADVANCE(256); + if (lookahead == 'a') ADVANCE(237); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'a') ADVANCE(257); END_STATE(); case 131: - if (lookahead == 'a') ADVANCE(257); + if (lookahead == 'a') ADVANCE(261); END_STATE(); case 132: if (lookahead == 'a') ADVANCE(258); END_STATE(); case 133: - if (lookahead == 'b') ADVANCE(1461); + if (lookahead == 'a') ADVANCE(259); END_STATE(); case 134: - if (lookahead == 'b') ADVANCE(1377); + if (lookahead == 'b') ADVANCE(1461); END_STATE(); case 135: - if (lookahead == 'b') ADVANCE(1321); + if (lookahead == 'b') ADVANCE(1377); END_STATE(); case 136: - if (lookahead == 'b') ADVANCE(1349); + if (lookahead == 'b') ADVANCE(1321); END_STATE(); case 137: - if (lookahead == 'b') ADVANCE(1433); + if (lookahead == 'b') ADVANCE(1349); END_STATE(); case 138: - if (lookahead == 'b') ADVANCE(1405); + if (lookahead == 'b') ADVANCE(1433); END_STATE(); case 139: - if (lookahead == 'b') ADVANCE(1489); + if (lookahead == 'b') ADVANCE(1405); END_STATE(); case 140: - if (lookahead == 'c') ADVANCE(1162); + if (lookahead == 'b') ADVANCE(1489); END_STATE(); case 141: - if (lookahead == 'c') ADVANCE(172); + if (lookahead == 'c') ADVANCE(1162); END_STATE(); case 142: if (lookahead == 'c') ADVANCE(173); END_STATE(); case 143: - if (lookahead == 'c') ADVANCE(161); + if (lookahead == 'c') ADVANCE(174); END_STATE(); case 144: - if (lookahead == 'd') ADVANCE(1045); + if (lookahead == 'c') ADVANCE(162); END_STATE(); case 145: - if (lookahead == 'd') ADVANCE(996); + if (lookahead == 'd') ADVANCE(1045); END_STATE(); case 146: - if (lookahead == 'd') ADVANCE(1036); + if (lookahead == 'd') ADVANCE(996); END_STATE(); case 147: - if (lookahead == 'd') ADVANCE(265); + if (lookahead == 'd') ADVANCE(1036); END_STATE(); case 148: - if (lookahead == 'd') ADVANCE(238); + if (lookahead == 'd') ADVANCE(266); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(140); - if (lookahead == 't') ADVANCE(126); + if (lookahead == 'd') ADVANCE(239); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == 'e') ADVANCE(141); + if (lookahead == 't') ADVANCE(127); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(1090); + if (lookahead == 'e') ADVANCE(1082); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(931); + if (lookahead == 'e') ADVANCE(1090); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(853); + if (lookahead == 'e') ADVANCE(931); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(849); + if (lookahead == 'e') ADVANCE(854); END_STATE(); case 155: - if (lookahead == 'e') ADVANCE(877); + if (lookahead == 'e') ADVANCE(850); END_STATE(); case 156: - if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'e') ADVANCE(878); END_STATE(); case 157: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'e') ADVANCE(82); END_STATE(); case 158: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 159: - if (lookahead == 'e') ADVANCE(232); + if (lookahead == 'e') ADVANCE(199); END_STATE(); case 160: if (lookahead == 'e') ADVANCE(233); END_STATE(); case 161: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'e') ADVANCE(234); END_STATE(); case 162: - if (lookahead == 'f') ADVANCE(1135); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 163: - if (lookahead == 'f') ADVANCE(927); - if (lookahead == 'n') ADVANCE(913); + if (lookahead == 'f') ADVANCE(1135); END_STATE(); case 164: if (lookahead == 'f') ADVANCE(927); - if (lookahead == 'n') ADVANCE(910); + if (lookahead == 'n') ADVANCE(913); END_STATE(); case 165: if (lookahead == 'f') ADVANCE(927); - if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'n') ADVANCE(910); END_STATE(); case 166: - if (lookahead == 'f') ADVANCE(1127); + if (lookahead == 'f') ADVANCE(927); + if (lookahead == 'n') ADVANCE(167); END_STATE(); case 167: - if (lookahead == 'f') ADVANCE(841); + if (lookahead == 'f') ADVANCE(1127); END_STATE(); case 168: - if (lookahead == 'f') ADVANCE(876); + if (lookahead == 'f') ADVANCE(842); END_STATE(); case 169: - if (lookahead == 'h') ADVANCE(185); + if (lookahead == 'f') ADVANCE(877); END_STATE(); case 170: - if (lookahead == 'h') ADVANCE(1029); + if (lookahead == 'h') ADVANCE(186); END_STATE(); case 171: - if (lookahead == 'h') ADVANCE(1026); + if (lookahead == 'h') ADVANCE(1029); END_STATE(); case 172: - if (lookahead == 'h') ADVANCE(952); + if (lookahead == 'h') ADVANCE(1026); END_STATE(); case 173: - if (lookahead == 'h') ADVANCE(933); + if (lookahead == 'h') ADVANCE(952); END_STATE(); case 174: - if (lookahead == 'h') ADVANCE(869); + if (lookahead == 'h') ADVANCE(933); END_STATE(); case 175: - if (lookahead == 'h') ADVANCE(874); + if (lookahead == 'h') ADVANCE(870); END_STATE(); case 176: - if (lookahead == 'h') ADVANCE(60); + if (lookahead == 'h') ADVANCE(875); END_STATE(); case 177: - if (lookahead == 'i') ADVANCE(246); + if (lookahead == 'h') ADVANCE(61); END_STATE(); case 178: - if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 179: - if (lookahead == 'i') ADVANCE(249); + if (lookahead == 'i') ADVANCE(197); END_STATE(); case 180: if (lookahead == 'i') ADVANCE(250); END_STATE(); case 181: - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'i') ADVANCE(251); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(253); + if (lookahead == 'i') ADVANCE(129); END_STATE(); case 183: - if (lookahead == 'k') ADVANCE(1178); + if (lookahead == 'i') ADVANCE(254); END_STATE(); case 184: - if (lookahead == 'l') ADVANCE(1074); + if (lookahead == 'k') ADVANCE(1178); END_STATE(); case 185: - if (lookahead == 'l') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(1010); + if (lookahead == 'l') ADVANCE(1074); END_STATE(); case 186: - if (lookahead == 'l') ADVANCE(184); + if (lookahead == 'l') ADVANCE(1007); + if (lookahead == 'r') ADVANCE(1010); END_STATE(); case 187: - if (lookahead == 'l') ADVANCE(181); + if (lookahead == 'l') ADVANCE(185); END_STATE(); case 188: - if (lookahead == 'l') ADVANCE(237); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 189: - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'l') ADVANCE(238); END_STATE(); case 190: - if (lookahead == 'l') ADVANCE(65); + if (lookahead == 'l') ADVANCE(240); END_STATE(); case 191: - if (lookahead == 'l') ADVANCE(190); + if (lookahead == 'l') ADVANCE(66); END_STATE(); case 192: - if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'l') ADVANCE(191); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'l') ADVANCE(155); END_STATE(); case 194: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 'n') ADVANCE(163); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(913); + if (lookahead == 'n') ADVANCE(145); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(1023); + if (lookahead == 'n') ADVANCE(913); END_STATE(); case 197: - if (lookahead == 'n') ADVANCE(910); + if (lookahead == 'n') ADVANCE(1023); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(266); + if (lookahead == 'n') ADVANCE(910); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(845); + if (lookahead == 'n') ADVANCE(267); END_STATE(); case 200: - if (lookahead == 'n') ADVANCE(875); + if (lookahead == 'n') ADVANCE(846); END_STATE(); case 201: - if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'n') ADVANCE(876); END_STATE(); case 202: - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'n') ADVANCE(167); END_STATE(); case 203: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'n') ADVANCE(149); END_STATE(); case 204: - if (lookahead == 'n') ADVANCE(241); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 205: - if (lookahead == 'o') ADVANCE(81); + if (lookahead == 'n') ADVANCE(242); END_STATE(); case 206: - if (lookahead == 'o') ADVANCE(923); + if (lookahead == 'o') ADVANCE(81); END_STATE(); case 207: - if (lookahead == 'o') ADVANCE(243); - if (lookahead == 's') ADVANCE(1145); - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'o') ADVANCE(923); END_STATE(); case 208: - if (lookahead == 'o') ADVANCE(221); + if (lookahead == 'o') ADVANCE(244); + if (lookahead == 's') ADVANCE(1145); + if (lookahead == 'u') ADVANCE(187); END_STATE(); case 209: - if (lookahead == 'o') ADVANCE(227); + if (lookahead == 'o') ADVANCE(222); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'o') ADVANCE(228); END_STATE(); case 211: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'o') ADVANCE(146); END_STATE(); case 212: - if (lookahead == 'o') ADVANCE(147); + if (lookahead == 'o') ADVANCE(169); END_STATE(); case 213: - if (lookahead == 'o') ADVANCE(204); + if (lookahead == 'o') ADVANCE(148); END_STATE(); case 214: - if (lookahead == 'o') ADVANCE(229); + if (lookahead == 'o') ADVANCE(205); END_STATE(); case 215: - if (lookahead == 'o') ADVANCE(244); + if (lookahead == 'o') ADVANCE(230); END_STATE(); case 216: - if (lookahead == 'o') ADVANCE(244); - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'o') ADVANCE(245); END_STATE(); case 217: - if (lookahead == 'o') ADVANCE(251); + if (lookahead == 'o') ADVANCE(245); + if (lookahead == 'u') ADVANCE(187); END_STATE(); case 218: - if (lookahead == 'o') ADVANCE(251); - if (lookahead == 's') ADVANCE(1145); + if (lookahead == 'o') ADVANCE(252); END_STATE(); case 219: - if (lookahead == 'p') ADVANCE(155); + if (lookahead == 'o') ADVANCE(252); + if (lookahead == 's') ADVANCE(1145); END_STATE(); case 220: - if (lookahead == 'p') ADVANCE(129); + if (lookahead == 'p') ADVANCE(156); END_STATE(); case 221: - if (lookahead == 'p') ADVANCE(255); + if (lookahead == 'p') ADVANCE(130); END_STATE(); case 222: - if (lookahead == 'p') ADVANCE(130); + if (lookahead == 'p') ADVANCE(256); END_STATE(); case 223: if (lookahead == 'p') ADVANCE(131); END_STATE(); case 224: - if (lookahead == 'r') ADVANCE(1170); + if (lookahead == 'p') ADVANCE(132); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(1053); + if (lookahead == 'r') ADVANCE(1170); END_STATE(); case 226: - if (lookahead == 'r') ADVANCE(263); + if (lookahead == 'r') ADVANCE(1053); END_STATE(); case 227: - if (lookahead == 'r') ADVANCE(1049); + if (lookahead == 'r') ADVANCE(264); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(1042); + if (lookahead == 'r') ADVANCE(1049); END_STATE(); case 229: - if (lookahead == 'r') ADVANCE(1039); + if (lookahead == 'r') ADVANCE(1042); END_STATE(); case 230: - if (lookahead == 'r') ADVANCE(264); + if (lookahead == 'r') ADVANCE(1039); END_STATE(); case 231: - if (lookahead == 'r') ADVANCE(261); + if (lookahead == 'r') ADVANCE(265); END_STATE(); case 232: - if (lookahead == 'r') ADVANCE(199); + if (lookahead == 'r') ADVANCE(262); END_STATE(); case 233: if (lookahead == 'r') ADVANCE(200); END_STATE(); case 234: - if (lookahead == 's') ADVANCE(1153); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 235: - if (lookahead == 's') ADVANCE(1149); + if (lookahead == 's') ADVANCE(1153); END_STATE(); case 236: - if (lookahead == 's') ADVANCE(360); + if (lookahead == 's') ADVANCE(1149); END_STATE(); case 237: - if (lookahead == 's') ADVANCE(151); + if (lookahead == 's') ADVANCE(361); END_STATE(); case 238: - if (lookahead == 's') ADVANCE(59); + if (lookahead == 's') ADVANCE(152); END_STATE(); case 239: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 's') ADVANCE(60); END_STATE(); case 240: if (lookahead == 's') ADVANCE(153); END_STATE(); case 241: - if (lookahead == 's') ADVANCE(245); + if (lookahead == 's') ADVANCE(154); END_STATE(); case 242: - if (lookahead == 's') ADVANCE(63); + if (lookahead == 's') ADVANCE(246); END_STATE(); case 243: - if (lookahead == 't') ADVANCE(1060); + if (lookahead == 's') ADVANCE(64); END_STATE(); case 244: - if (lookahead == 't') ADVANCE(1057); + if (lookahead == 't') ADVANCE(1060); END_STATE(); case 245: - if (lookahead == 't') ADVANCE(374); + if (lookahead == 't') ADVANCE(1057); END_STATE(); case 246: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 247: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 't') ADVANCE(58); END_STATE(); case 248: - if (lookahead == 't') ADVANCE(141); + if (lookahead == 't') ADVANCE(273); END_STATE(); case 249: - if (lookahead == 't') ADVANCE(170); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 250: if (lookahead == 't') ADVANCE(171); END_STATE(); case 251: - if (lookahead == 't') ADVANCE(58); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 252: - if (lookahead == 't') ADVANCE(126); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 253: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 't') ADVANCE(127); END_STATE(); case 254: - if (lookahead == 't') ADVANCE(159); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 255: - if (lookahead == 't') ADVANCE(61); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 256: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 't') ADVANCE(62); END_STATE(); case 257: if (lookahead == 't') ADVANCE(175); END_STATE(); case 258: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 't') ADVANCE(176); END_STATE(); case 259: - if (lookahead == 't') ADVANCE(160); + if (lookahead == 't') ADVANCE(143); END_STATE(); case 260: - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(161); END_STATE(); case 261: - if (lookahead == 't') ADVANCE(242); + if (lookahead == 't') ADVANCE(260); END_STATE(); case 262: - if (lookahead == 'u') ADVANCE(273); - if (lookahead == 'x') ADVANCE(306); - if (lookahead != 0) ADVANCE(1532); + if (lookahead == 't') ADVANCE(243); END_STATE(); case 263: - if (lookahead == 'u') ADVANCE(150); + if (lookahead == 'u') ADVANCE(274); + if (lookahead == 'x') ADVANCE(307); + if (lookahead != 0) ADVANCE(1532); END_STATE(); case 264: - if (lookahead == 'u') ADVANCE(150); - if (lookahead == 'y') ADVANCE(948); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 265: - if (lookahead == 'u') ADVANCE(192); + if (lookahead == 'u') ADVANCE(151); + if (lookahead == 'y') ADVANCE(948); END_STATE(); case 266: - if (lookahead == 'v') ADVANCE(842); + if (lookahead == 'u') ADVANCE(193); END_STATE(); case 267: - if (lookahead == 'w') ADVANCE(179); + if (lookahead == 'v') ADVANCE(843); END_STATE(); case 268: if (lookahead == 'w') ADVANCE(180); END_STATE(); case 269: - if (lookahead == 'w') ADVANCE(182); + if (lookahead == 'w') ADVANCE(181); END_STATE(); case 270: - if (lookahead == 'x') ADVANCE(254); + if (lookahead == 'w') ADVANCE(183); END_STATE(); case 271: - if (lookahead == 'y') ADVANCE(1174); + if (lookahead == 'x') ADVANCE(255); END_STATE(); case 272: - if (lookahead == 'y') ADVANCE(219); + if (lookahead == 'y') ADVANCE(1174); END_STATE(); case 273: - if (lookahead == '{') ADVANCE(303); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(302); + if (lookahead == 'y') ADVANCE(220); END_STATE(); case 274: - if (lookahead == '{') ADVANCE(305); + if (lookahead == '{') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(308); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 275: - if (lookahead == '}') ADVANCE(1532); + if (lookahead == '{') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(309); END_STATE(); case 276: - if (lookahead == '}') ADVANCE(1541); + if (lookahead == '}') ADVANCE(1532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 277: - if (lookahead == '+' || - lookahead == '-') ADVANCE(299); + if (lookahead == '}') ADVANCE(1541); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1114); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); END_STATE(); case 278: if (lookahead == '+' || lookahead == '-') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1119); + lookahead == '_') ADVANCE(1114); END_STATE(); case 279: + if (lookahead == '+' || + lookahead == '-') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(1119); + END_STATE(); + case 280: if (lookahead == '0' || lookahead == '1' || lookahead == '_') ADVANCE(1123); END_STATE(); - case 280: + case 281: if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1518); END_STATE(); - case 281: + case 282: if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(1125); END_STATE(); - case 282: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); - END_STATE(); case 283: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(65); END_STATE(); case 284: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1521); END_STATE(); case 285: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 286: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1516); END_STATE(); case 287: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1515); END_STATE(); case 288: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1522); END_STATE(); case 289: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1518); END_STATE(); case 290: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); @@ -32287,612 +32522,615 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); END_STATE(); case 293: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(286); END_STATE(); case 294: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(290); END_STATE(); case 295: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); case 296: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(76); END_STATE(); case 297: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); END_STATE(); case 298: - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(296); END_STATE(); case 299: if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1114); + lookahead == '_') ADVANCE(1112); END_STATE(); case 300: if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1119); + lookahead == '_') ADVANCE(1114); END_STATE(); case 301: if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1532); + lookahead == '_') ADVANCE(1119); END_STATE(); case 302: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1532); END_STATE(); case 303: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(307); END_STATE(); case 304: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1541); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 305: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1541); END_STATE(); case 306: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); END_STATE(); case 307: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(302); END_STATE(); case 308: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(307); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(305); END_STATE(); case 309: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(308); + END_STATE(); + case 310: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1121); END_STATE(); - case 310: + case 311: if (lookahead != 0 && lookahead != 'u' && lookahead != 'x') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(273); - if (lookahead == 'x') ADVANCE(306); + if (lookahead == 'u') ADVANCE(274); + if (lookahead == 'x') ADVANCE(307); END_STATE(); - case 311: + case 312: if (lookahead != 0 && lookahead != 'u' && lookahead != 'x') ADVANCE(1541); - if (lookahead == 'u') ADVANCE(274); - if (lookahead == 'x') ADVANCE(307); + if (lookahead == 'u') ADVANCE(275); + if (lookahead == 'x') ADVANCE(308); END_STATE(); - case 312: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 313: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); if (lookahead == '-') ADVANCE(894); if (lookahead == '.') ADVANCE(945); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(603); - if (lookahead == 'b') ADVANCE(594); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(576); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(524); - if (lookahead == 'n') ADVANCE(639); - if (lookahead == 'o') ADVANCE(650); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(631); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); - if (lookahead == 'x') ADVANCE(640); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(604); + if (lookahead == 'b') ADVANCE(595); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(624); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(525); + if (lookahead == 'n') ADVANCE(640); + if (lookahead == 'o') ADVANCE(651); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(632); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); + if (lookahead == 'x') ADVANCE(641); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(312) + lookahead == ' ') SKIP(313) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 313: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 314: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == 'B') ADVANCE(1191); - if (lookahead == 'E') ADVANCE(478); - if (lookahead == 'G') ADVANCE(479); - if (lookahead == 'K') ADVANCE(480); - if (lookahead == 'M') ADVANCE(481); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == 'P') ADVANCE(482); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'Z') ADVANCE(484); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'E') ADVANCE(479); + if (lookahead == 'G') ADVANCE(480); + if (lookahead == 'K') ADVANCE(481); + if (lookahead == 'M') ADVANCE(482); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == 'P') ADVANCE(483); + if (lookahead == 'T') ADVANCE(484); + if (lookahead == 'Z') ADVANCE(485); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(603); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(604); if (lookahead == 'b') ADVANCE(1185); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(526); - if (lookahead == 'e') ADVANCE(485); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'g') ADVANCE(487); - if (lookahead == 'h') ADVANCE(589); - if (lookahead == 'i') ADVANCE(576); - if (lookahead == 'k') ADVANCE(488); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(489); - if (lookahead == 'n') ADVANCE(638); - if (lookahead == 'o') ADVANCE(650); - if (lookahead == 'p') ADVANCE(491); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(564); - if (lookahead == 't') ADVANCE(492); - if (lookahead == 'u') ADVANCE(667); - if (lookahead == 'w') ADVANCE(581); - if (lookahead == 'x') ADVANCE(640); - if (lookahead == 'z') ADVANCE(494); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(527); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'g') ADVANCE(488); + if (lookahead == 'h') ADVANCE(590); + if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'k') ADVANCE(489); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(490); + if (lookahead == 'n') ADVANCE(639); + if (lookahead == 'o') ADVANCE(651); + if (lookahead == 'p') ADVANCE(492); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(565); + if (lookahead == 't') ADVANCE(493); + if (lookahead == 'u') ADVANCE(668); + if (lookahead == 'w') ADVANCE(582); + if (lookahead == 'x') ADVANCE(641); + if (lookahead == 'z') ADVANCE(495); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(668); + if (lookahead == 181) ADVANCE(669); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(313) + lookahead == ' ') SKIP(314) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(711); END_STATE(); - case 314: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 315: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(945); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(603); - if (lookahead == 'b') ADVANCE(594); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(623); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(576); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(524); - if (lookahead == 'n') ADVANCE(639); - if (lookahead == 'o') ADVANCE(650); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(631); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); - if (lookahead == 'x') ADVANCE(640); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(604); + if (lookahead == 'b') ADVANCE(595); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(624); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(525); + if (lookahead == 'n') ADVANCE(640); + if (lookahead == 'o') ADVANCE(651); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(632); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); + if (lookahead == 'x') ADVANCE(641); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(314) + lookahead == ' ') SKIP(315) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 315: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 316: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == 'B') ADVANCE(1191); - if (lookahead == 'E') ADVANCE(478); - if (lookahead == 'G') ADVANCE(479); - if (lookahead == 'K') ADVANCE(480); - if (lookahead == 'M') ADVANCE(481); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == 'P') ADVANCE(482); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'Z') ADVANCE(484); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'E') ADVANCE(479); + if (lookahead == 'G') ADVANCE(480); + if (lookahead == 'K') ADVANCE(481); + if (lookahead == 'M') ADVANCE(482); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == 'P') ADVANCE(483); + if (lookahead == 'T') ADVANCE(484); + if (lookahead == 'Z') ADVANCE(485); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(603); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(604); if (lookahead == 'b') ADVANCE(1185); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(526); - if (lookahead == 'e') ADVANCE(485); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'g') ADVANCE(487); - if (lookahead == 'h') ADVANCE(589); - if (lookahead == 'i') ADVANCE(576); - if (lookahead == 'k') ADVANCE(488); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(489); - if (lookahead == 'n') ADVANCE(638); - if (lookahead == 'o') ADVANCE(650); - if (lookahead == 'p') ADVANCE(491); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(564); - if (lookahead == 't') ADVANCE(492); - if (lookahead == 'u') ADVANCE(667); - if (lookahead == 'w') ADVANCE(581); - if (lookahead == 'x') ADVANCE(640); - if (lookahead == 'z') ADVANCE(494); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(527); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'g') ADVANCE(488); + if (lookahead == 'h') ADVANCE(590); + if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'k') ADVANCE(489); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(490); + if (lookahead == 'n') ADVANCE(639); + if (lookahead == 'o') ADVANCE(651); + if (lookahead == 'p') ADVANCE(492); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(565); + if (lookahead == 't') ADVANCE(493); + if (lookahead == 'u') ADVANCE(668); + if (lookahead == 'w') ADVANCE(582); + if (lookahead == 'x') ADVANCE(641); + if (lookahead == 'z') ADVANCE(495); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(668); + if (lookahead == 181) ADVANCE(669); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(315) + lookahead == ' ') SKIP(316) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(711); END_STATE(); - case 316: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 317: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(195); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(316) + lookahead == ' ') SKIP(317) if (('1' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); - case 317: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 318: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1104); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(195); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(317) + lookahead == ' ') SKIP(318) if (('1' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); - case 318: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 319: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(976); if (lookahead == '+') ADVANCE(1003); if (lookahead == '-') ADVANCE(895); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(994); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == '|') ADVANCE(865); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(318) + lookahead == ' ') SKIP(319) END_STATE(); - case 319: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 320: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == '-') ADVANCE(887); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == '|') ADVANCE(865); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(319) + lookahead == ' ') SKIP(320) END_STATE(); - case 320: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 321: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); - if (lookahead == '-') ADVANCE(887); + if (lookahead == '-') ADVANCE(888); if (lookahead == '.') ADVANCE(944); if (lookahead == '/') ADVANCE(993); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); if (lookahead == 'B') ADVANCE(1189); - if (lookahead == 'E') ADVANCE(83); - if (lookahead == 'G') ADVANCE(84); - if (lookahead == 'K') ADVANCE(85); - if (lookahead == 'M') ADVANCE(86); - if (lookahead == 'P') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'Z') ADVANCE(89); - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); + if (lookahead == 'a') ADVANCE(195); if (lookahead == 'b') ADVANCE(1183); - if (lookahead == 'c') ADVANCE(127); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(90); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(224); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(218); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(96); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'w') ADVANCE(183); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == 'z') ADVANCE(98); - if (lookahead == '|') ADVANCE(865); + if (lookahead == 'c') ADVANCE(128); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'g') ADVANCE(93); + if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'k') ADVANCE(94); + if (lookahead == 'm') ADVANCE(95); + if (lookahead == 'n') ADVANCE(219); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(97); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == 'w') ADVANCE(184); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'z') ADVANCE(99); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(235); + if (lookahead == 181) ADVANCE(236); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(320) + lookahead == ' ') SKIP(321) END_STATE(); - case 321: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 322: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); if (lookahead == '-') ADVANCE(893); if (lookahead == '.') ADVANCE(942); if (lookahead == '/') ADVANCE(993); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'b') ADVANCE(177); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'm') ADVANCE(210); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 's') ADVANCE(252); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == '|') ADVANCE(865); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(178); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 's') ADVANCE(253); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(321) + lookahead == ' ') SKIP(322) END_STATE(); - case 322: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); - if (lookahead == '!') ADVANCE(77); + case 323: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); + if (lookahead == '!') ADVANCE(78); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1004); if (lookahead == '-') ADVANCE(893); if (lookahead == '.') ADVANCE(944); if (lookahead == '/') ADVANCE(993); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); if (lookahead == 'B') ADVANCE(1189); - if (lookahead == 'E') ADVANCE(83); - if (lookahead == 'G') ADVANCE(84); - if (lookahead == 'K') ADVANCE(85); - if (lookahead == 'M') ADVANCE(86); - if (lookahead == 'P') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'Z') ADVANCE(89); - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); + if (lookahead == 'a') ADVANCE(195); if (lookahead == 'b') ADVANCE(1183); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(224); - if (lookahead == 'i') ADVANCE(197); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(218); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(96); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'w') ADVANCE(183); - if (lookahead == 'x') ADVANCE(209); - if (lookahead == 'z') ADVANCE(98); - if (lookahead == '|') ADVANCE(865); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'g') ADVANCE(93); + if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'k') ADVANCE(94); + if (lookahead == 'm') ADVANCE(95); + if (lookahead == 'n') ADVANCE(219); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(97); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == 'w') ADVANCE(184); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'z') ADVANCE(99); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(235); + if (lookahead == 181) ADVANCE(236); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(322) + lookahead == ' ') SKIP(323) END_STATE(); - case 323: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 324: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '!') ADVANCE(1733); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(977); if (lookahead == '+') ADVANCE(1006); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(1729); if (lookahead == '/') ADVANCE(995); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1018); if (lookahead == '=') ADVANCE(1734); - if (lookahead == '>') ADVANCE(882); + if (lookahead == '>') ADVANCE(883); if (lookahead == 'B') ADVANCE(1192); if (lookahead == 'E') ADVANCE(1739); if (lookahead == 'G') ADVANCE(1740); @@ -32902,9 +33140,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(1743); if (lookahead == 'T') ADVANCE(1744); if (lookahead == 'Z') ADVANCE(1745); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1811); if (lookahead == 'b') ADVANCE(1182); if (lookahead == 'd') ADVANCE(1776); @@ -32925,40 +33163,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'x') ADVANCE(1818); if (lookahead == 'z') ADVANCE(1752); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == 181) ADVANCE(1835); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(323) + lookahead == ' ') SKIP(324) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 324: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 325: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '!') ADVANCE(1733); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(977); if (lookahead == '+') ADVANCE(1006); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(1729); if (lookahead == '/') ADVANCE(995); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1018); if (lookahead == '=') ADVANCE(1734); - if (lookahead == '>') ADVANCE(882); + if (lookahead == '>') ADVANCE(883); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1811); if (lookahead == 'b') ADVANCE(1802); if (lookahead == 'e') ADVANCE(1719); @@ -32971,40 +33209,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(1825); if (lookahead == 'x') ADVANCE(1818); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(324) + lookahead == ' ') SKIP(325) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 325: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 326: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '!') ADVANCE(1733); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(977); if (lookahead == '+') ADVANCE(1006); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(946); if (lookahead == '/') ADVANCE(995); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1018); if (lookahead == '=') ADVANCE(1734); - if (lookahead == '>') ADVANCE(882); + if (lookahead == '>') ADVANCE(883); if (lookahead == '?') ADVANCE(987); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1811); if (lookahead == 'b') ADVANCE(1802); if (lookahead == 'e') ADVANCE(1719); @@ -33017,39 +33255,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(1825); if (lookahead == 'x') ADVANCE(1818); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(325) + lookahead == ' ') SKIP(326) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 326: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 327: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '!') ADVANCE(1733); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(977); if (lookahead == '+') ADVANCE(1006); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(946); if (lookahead == '/') ADVANCE(995); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1018); if (lookahead == '=') ADVANCE(1734); - if (lookahead == '>') ADVANCE(882); + if (lookahead == '>') ADVANCE(883); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1811); if (lookahead == 'b') ADVANCE(1802); if (lookahead == 'e') ADVANCE(1719); @@ -33062,248 +33300,248 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(1825); if (lookahead == 'x') ADVANCE(1818); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(326) + lookahead == ' ') SKIP(327) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 327: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 328: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(974); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); if (lookahead == '.') ADVANCE(945); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(327) + lookahead == ' ') SKIP(328) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 328: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 329: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(328) + lookahead == ' ') SKIP(329) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 329: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 330: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(611); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(612); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(329) + lookahead == ' ') SKIP(330) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 330: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 331: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(530); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(531); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(330) + lookahead == ' ') SKIP(331) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 331: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 332: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1105); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'd') ADVANCE(206); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(165); - if (lookahead == 'm') ADVANCE(132); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(230); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'd') ADVANCE(207); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(166); + if (lookahead == 'm') ADVANCE(133); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(231); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(331) + lookahead == ' ') SKIP(332) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); END_STATE(); - case 332: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 333: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1661); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1567); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); if (lookahead == '_') ADVANCE(1565); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1607); if (lookahead == 'b') ADVANCE(1629); if (lookahead == 'c') ADVANCE(1617); @@ -33322,231 +33560,231 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(1639); if (lookahead == 'w') ADVANCE(1598); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(328) + lookahead == ' ') SKIP(329) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (aux_sym_long_flag_token1_character_set_5(lookahead)) ADVANCE(1713); if (aux_sym_long_flag_token1_character_set_6(lookahead)) ADVANCE(1658); END_STATE(); - case 333: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 334: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(945); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(333) + lookahead == ' ') SKIP(334) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 334: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 335: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(945); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '?') ADVANCE(986); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1105); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'e') ADVANCE(189); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(201); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(226); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(227); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(334) + lookahead == ' ') SKIP(335) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); END_STATE(); - case 335: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 336: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(335) + lookahead == ' ') SKIP(336) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 336: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 337: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(604); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(605); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(336) + lookahead == ' ') SKIP(337) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 337: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 338: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ';') ADVANCE(378); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == '[') ADVANCE(860); + if (lookahead == ';') ADVANCE(379); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1105); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(201); - if (lookahead == 'n') ADVANCE(216); - if (lookahead == 't') ADVANCE(226); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(227); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(337) + lookahead == ' ') SKIP(338) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); END_STATE(); - case 338: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 339: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1661); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1567); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); if (lookahead == '_') ADVANCE(1565); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1607); if (lookahead == 'b') ADVANCE(1629); if (lookahead == 'c') ADVANCE(1617); @@ -33565,34 +33803,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(1639); if (lookahead == 'w') ADVANCE(1598); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(335) + lookahead == ' ') SKIP(336) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (aux_sym_long_flag_token1_character_set_5(lookahead)) ADVANCE(1713); if (aux_sym_long_flag_token1_character_set_6(lookahead)) ADVANCE(1658); END_STATE(); - case 339: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 340: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1661); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1567); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); if (lookahead == '_') ADVANCE(1565); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'a') ADVANCE(1606); if (lookahead == 'b') ADVANCE(1629); if (lookahead == 'c') ADVANCE(1617); @@ -33614,60 +33852,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(336) + lookahead == ' ') SKIP(337) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (aux_sym_long_flag_token1_character_set_5(lookahead)) ADVANCE(1713); if (aux_sym_long_flag_token1_character_set_6(lookahead)) ADVANCE(1658); END_STATE(); - case 340: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 341: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '+') ADVANCE(69); - if (lookahead == '-') ADVANCE(889); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '+') ADVANCE(70); + if (lookahead == '-') ADVANCE(890); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1661); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1675); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1665); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'f') ADVANCE(1676); if (lookahead == 'i') ADVANCE(1690); if (lookahead == 'n') ADVANCE(1692); if (lookahead == 't') ADVANCE(1694); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(337) + lookahead == ' ') SKIP(338) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1713); END_STATE(); - case 341: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 342: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); - if (lookahead == '-') ADVANCE(889); + if (lookahead == '-') ADVANCE(890); if (lookahead == '.') ADVANCE(1729); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1720); if (lookahead == 'f') ADVANCE(1777); if (lookahead == 'i') ADVANCE(1814); @@ -33675,29 +33913,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1716); if (lookahead == 't') ADVANCE(1825); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(341) + lookahead == ' ') SKIP(342) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 342: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 343: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(1729); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'B') ADVANCE(1192); if (lookahead == 'E') ADVANCE(1739); if (lookahead == 'G') ADVANCE(1740); @@ -33707,9 +33945,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(1743); if (lookahead == 'T') ADVANCE(1744); if (lookahead == 'Z') ADVANCE(1745); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'b') ADVANCE(1188); if (lookahead == 'd') ADVANCE(1776); if (lookahead == 'e') ADVANCE(1718); @@ -33728,34 +33966,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(1806); if (lookahead == 'z') ADVANCE(1752); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == 181) ADVANCE(1835); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(342) + lookahead == ' ') SKIP(343) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 343: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 344: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(1729); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1720); if (lookahead == 'f') ADVANCE(1777); if (lookahead == 'i') ADVANCE(1814); @@ -33763,33 +34001,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1716); if (lookahead == 't') ADVANCE(1825); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(343) + lookahead == ' ') SKIP(344) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 344: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 345: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(1729); if (lookahead == '0') ADVANCE(1666); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1673); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1670); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1562); if (lookahead == 'f') ADVANCE(1674); if (lookahead == 'i') ADVANCE(1689); @@ -33797,35 +34035,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1560); if (lookahead == 't') ADVANCE(1695); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(343) + lookahead == ' ') SKIP(344) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1714); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 345: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 346: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(946); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == '?') ADVANCE(987); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1720); if (lookahead == 'f') ADVANCE(1777); if (lookahead == 'i') ADVANCE(1814); @@ -33833,33 +34071,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1716); if (lookahead == 't') ADVANCE(1825); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(345) + lookahead == ' ') SKIP(346) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 346: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 347: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1877); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '+') ADVANCE(1728); if (lookahead == '-') ADVANCE(55); if (lookahead == '.') ADVANCE(946); if (lookahead == '0') ADVANCE(1107); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ';') ADVANCE(379); if (lookahead == 'N') ADVANCE(1775); - if (lookahead == '[') ADVANCE(860); + if (lookahead == '[') ADVANCE(861); if (lookahead == '_') ADVANCE(1111); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'e') ADVANCE(1720); if (lookahead == 'f') ADVANCE(1777); if (lookahead == 'i') ADVANCE(1814); @@ -33867,3198 +34105,3192 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1716); if (lookahead == 't') ADVANCE(1825); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(866); + if (lookahead == '|') ADVANCE(867); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(346) + lookahead == ' ') SKIP(347) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1110); if (lookahead != 0 && lookahead != ']') ADVANCE(1873); END_STATE(); - case 347: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 348: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '-') ADVANCE(56); - if (lookahead == ';') ADVANCE(378); - if (lookahead == '|') ADVANCE(865); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '-') ADVANCE(57); + if (lookahead == ';') ADVANCE(379); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(347) + lookahead == ' ') SKIP(348) END_STATE(); - case 348: - if (eof) ADVANCE(353); - if (lookahead == '\n') ADVANCE(837); + case 349: + if (eof) ADVANCE(354); + if (lookahead == '\n') ADVANCE(838); if (lookahead == '#') ADVANCE(1874); - if (lookahead == ')') ADVANCE(864); - if (lookahead == '-') ADVANCE(56); - if (lookahead == ';') ADVANCE(378); - if (lookahead == '|') ADVANCE(865); + if (lookahead == ')') ADVANCE(865); + if (lookahead == '-') ADVANCE(57); + if (lookahead == ';') ADVANCE(379); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(347) + lookahead == ' ') SKIP(348) if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1713); END_STATE(); - case 349: - if (eof) ADVANCE(353); - if (lookahead == '!') ADVANCE(77); + case 350: + if (eof) ADVANCE(354); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1876); - if (lookahead == '$') ADVANCE(868); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '$') ADVANCE(869); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(976); if (lookahead == '+') ADVANCE(1003); - if (lookahead == ',') ADVANCE(861); - if (lookahead == '-') ADVANCE(891); + if (lookahead == ',') ADVANCE(862); + if (lookahead == '-') ADVANCE(892); if (lookahead == '.') ADVANCE(943); if (lookahead == '/') ADVANCE(994); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(881); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(882); if (lookahead == '?') ADVANCE(986); - if (lookahead == '@') ADVANCE(883); + if (lookahead == '@') ADVANCE(884); if (lookahead == 'B') ADVANCE(1190); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); if (lookahead == '^') ADVANCE(1543); if (lookahead == '_') ADVANCE(941); - if (lookahead == '`') ADVANCE(121); + if (lookahead == '`') ADVANCE(122); if (lookahead == 'b') ADVANCE(1187); - if (lookahead == 'e') ADVANCE(711); - if (lookahead == 'o') ADVANCE(712); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'o') ADVANCE(713); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(819); + if (lookahead == 181) ADVANCE(820); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(349) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(836); + lookahead == ' ') SKIP(350) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); - case 350: - if (eof) ADVANCE(353); - if (lookahead == '!') ADVANCE(77); + case 351: + if (eof) ADVANCE(354); + if (lookahead == '!') ADVANCE(78); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == ')') ADVANCE(864); + if (lookahead == '(') ADVANCE(864); + if (lookahead == ')') ADVANCE(865); if (lookahead == '*') ADVANCE(975); if (lookahead == '+') ADVANCE(1005); - if (lookahead == ',') ADVANCE(861); + if (lookahead == ',') ADVANCE(862); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(945); if (lookahead == '/') ADVANCE(993); if (lookahead == '0') ADVANCE(1100); - if (lookahead == ':') ADVANCE(858); - if (lookahead == ';') ADVANCE(378); + if (lookahead == ':') ADVANCE(859); + if (lookahead == ';') ADVANCE(379); if (lookahead == '<') ADVANCE(1017); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(881); - if (lookahead == '@') ADVANCE(883); - if (lookahead == 'B') ADVANCE(1191); - if (lookahead == 'E') ADVANCE(478); - if (lookahead == 'G') ADVANCE(479); - if (lookahead == 'K') ADVANCE(480); - if (lookahead == 'M') ADVANCE(481); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == 'P') ADVANCE(482); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'Z') ADVANCE(484); - if (lookahead == '[') ADVANCE(860); - if (lookahead == ']') ADVANCE(862); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(620); - if (lookahead == 'b') ADVANCE(1186); - if (lookahead == 'd') ADVANCE(527); - if (lookahead == 'e') ADVANCE(486); - if (lookahead == 'f') ADVANCE(521); - if (lookahead == 'g') ADVANCE(487); - if (lookahead == 'h') ADVANCE(649); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'k') ADVANCE(488); - if (lookahead == 'm') ADVANCE(490); - if (lookahead == 'n') ADVANCE(638); - if (lookahead == 'o') ADVANCE(651); - if (lookahead == 'p') ADVANCE(491); - if (lookahead == 's') ADVANCE(565); - if (lookahead == 't') ADVANCE(493); - if (lookahead == 'u') ADVANCE(669); - if (lookahead == 'w') ADVANCE(600); - if (lookahead == 'x') ADVANCE(640); - if (lookahead == 'z') ADVANCE(494); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(882); + if (lookahead == '?') ADVANCE(986); + if (lookahead == '@') ADVANCE(884); + if (lookahead == 'B') ADVANCE(1189); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); + if (lookahead == '[') ADVANCE(861); + if (lookahead == ']') ADVANCE(863); + if (lookahead == '_') ADVANCE(940); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'b') ADVANCE(1183); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'g') ADVANCE(93); + if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'i') ADVANCE(164); + if (lookahead == 'k') ADVANCE(94); + if (lookahead == 'm') ADVANCE(95); + if (lookahead == 'n') ADVANCE(208); + if (lookahead == 'o') ADVANCE(226); + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(98); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == 'w') ADVANCE(184); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'z') ADVANCE(99); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); - if (lookahead == 181) ADVANCE(668); + if (lookahead == 181) ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(350) + lookahead == ' ') SKIP(351) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(710); END_STATE(); - case 351: - if (eof) ADVANCE(353); + case 352: + if (eof) ADVANCE(354); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1876); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(351) + lookahead == ' ') SKIP(352) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 352: - if (eof) ADVANCE(353); + case 353: + if (eof) ADVANCE(354); if (lookahead == '"') ADVANCE(1527); if (lookahead == '#') ADVANCE(1874); - if (lookahead == '$') ADVANCE(868); + if (lookahead == '$') ADVANCE(869); if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(863); - if (lookahead == '+') ADVANCE(69); + if (lookahead == '(') ADVANCE(864); + if (lookahead == '+') ADVANCE(70); if (lookahead == '-') ADVANCE(894); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); if (lookahead == '0') ADVANCE(1100); - if (lookahead == 'N') ADVANCE(517); - if (lookahead == '[') ADVANCE(860); + if (lookahead == 'N') ADVANCE(518); + if (lookahead == '[') ADVANCE(861); if (lookahead == '^') ADVANCE(1543); - if (lookahead == '_') ADVANCE(477); - if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(605); - if (lookahead == 'b') ADVANCE(655); - if (lookahead == 'c') ADVANCE(629); - if (lookahead == 'd') ADVANCE(549); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(520); - if (lookahead == 'h') ADVANCE(590); - if (lookahead == 'i') ADVANCE(577); - if (lookahead == 'l') ADVANCE(550); - if (lookahead == 'm') ADVANCE(523); - if (lookahead == 'n') ADVANCE(634); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(551); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 't') ADVANCE(645); - if (lookahead == 'u') ADVANCE(671); - if (lookahead == 'w') ADVANCE(582); + if (lookahead == '_') ADVANCE(478); + if (lookahead == '`') ADVANCE(122); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(656); + if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'f') ADVANCE(521); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'l') ADVANCE(551); + if (lookahead == 'm') ADVANCE(524); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'o') ADVANCE(705); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'w') ADVANCE(583); if (lookahead == '{') ADVANCE(937); - if (lookahead == '|') ADVANCE(865); + if (lookahead == '|') ADVANCE(866); if (lookahead == '}') ADVANCE(938); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(352) + lookahead == ' ') SKIP(353) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1103); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(711); END_STATE(); - case 353: + case 354: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 354: + case 355: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 355: + case 356: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 356: + case 357: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(356); + if (lookahead == '\n') ADVANCE(357); if (lookahead == '#') ADVANCE(1875); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') ADVANCE(2); if (lookahead != 0) ADVANCE(3); END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(569); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); - END_STATE(); case 358: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(569); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); + if (lookahead == '-') ADVANCE(570); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 359: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(569); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(570); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(570); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 361: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 362: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 363: ACCEPT_TOKEN(anon_sym_alias); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 365: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1013); - if (lookahead == '>') ADVANCE(939); - if (lookahead == '~') ADVANCE(1032); END_STATE(); case 366: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(1013); + if (lookahead == '>') ADVANCE(939); if (lookahead == '~') ADVANCE(1032); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(567); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1013); + if (lookahead == '~') ADVANCE(1032); END_STATE(); case 368: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(567); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); + if (lookahead == '-') ADVANCE(568); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 369: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(567); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(568); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(568); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 372: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 373: ACCEPT_TOKEN(anon_sym_mut); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 375: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 376: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 377: ACCEPT_TOKEN(anon_sym_const); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 378: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_const); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 379: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(299); - if (lookahead == '-') ADVANCE(709); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(709); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(710); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 380: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(299); - if (lookahead == '-') ADVANCE(709); + if (lookahead == '+') ADVANCE(300); + if (lookahead == '-') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(472); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(473); + lookahead == '_') ADVANCE(710); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(711); END_STATE(); case 381: ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == '+') ADVANCE(300); if (lookahead == '-') ADVANCE(710); - if (lookahead == '.') ADVANCE(1117); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(381); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(473); + lookahead == '_') ADVANCE(473); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(474); END_STATE(); case 382: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'N') ADVANCE(1139); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == '.') ADVANCE(1117); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(381); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(382); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(474); END_STATE(); case 383: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(382); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'N') ADVANCE(1139); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 384: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(420); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(383); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 385: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(471); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(421); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 386: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(427); - if (lookahead == 'o') ADVANCE(441); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(472); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 387: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(453); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(428); + if (lookahead == 'o') ADVANCE(442); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 388: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'a') ADVANCE(458); - if (lookahead == 'o') ADVANCE(391); - if (lookahead == 'u') ADVANCE(459); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(454); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 389: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'c') ADVANCE(415); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'a') ADVANCE(459); + if (lookahead == 'o') ADVANCE(392); + if (lookahead == 'u') ADVANCE(460); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(474); END_STATE(); case 390: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'c') ADVANCE(404); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'c') ADVANCE(416); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 391: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'd') ADVANCE(469); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'c') ADVANCE(405); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 392: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'd') ADVANCE(403); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'd') ADVANCE(470); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 393: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(412); - if (lookahead == 'o') ADVANCE(925); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'd') ADVANCE(404); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 394: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(461); - if (lookahead == 'o') ADVANCE(434); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'o') ADVANCE(925); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 395: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(413); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'o') ADVANCE(435); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 396: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(855); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(414); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 397: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(1084); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(856); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 398: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(1092); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(1084); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 399: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(984); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(1092); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 400: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(921); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(984); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 401: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(851); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(921); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 402: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(905); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(852); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 403: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(966); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(905); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 404: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(959); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(966); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 405: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(384); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(959); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 406: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(450); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(385); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 407: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(447); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(451); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 408: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(443); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(448); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 409: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(452); - if (lookahead == 'i') ADVANCE(425); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(444); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 410: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'f') ADVANCE(929); - if (lookahead == 'n') ADVANCE(411); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'i') ADVANCE(426); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 411: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'f') ADVANCE(1129); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'f') ADVANCE(929); + if (lookahead == 'n') ADVANCE(412); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 412: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'f') ADVANCE(840); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'f') ADVANCE(1129); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 413: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'g') ADVANCE(419); - if (lookahead == 't') ADVANCE(467); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'f') ADVANCE(841); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 414: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'h') ADVANCE(409); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'g') ADVANCE(420); + if (lookahead == 't') ADVANCE(468); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 415: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'h') ADVANCE(935); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'h') ADVANCE(410); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 416: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'i') ADVANCE(392); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'h') ADVANCE(935); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 417: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'i') ADVANCE(387); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'i') ADVANCE(393); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 418: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'i') ADVANCE(431); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'i') ADVANCE(388); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 419: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'i') ADVANCE(457); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'i') ADVANCE(432); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 420: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'k') ADVANCE(902); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'i') ADVANCE(458); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 421: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(1076); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'k') ADVANCE(902); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 422: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(417); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(1076); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 423: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(385); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(418); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 424: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(421); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(386); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 425: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(400); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(422); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 426: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(401); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 427: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'l') ADVANCE(456); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(402); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 428: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'n') ADVANCE(455); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'l') ADVANCE(457); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 429: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'n') ADVANCE(847); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'n') ADVANCE(456); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 430: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'n') ADVANCE(955); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'n') ADVANCE(848); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 431: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'n') ADVANCE(468); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'n') ADVANCE(955); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 432: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(428); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'n') ADVANCE(469); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 433: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(465); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(429); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 434: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(438); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(466); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 435: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == 'u') ADVANCE(424); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(439); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 436: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(442); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(464); + if (lookahead == 'u') ADVANCE(425); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 437: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'o') ADVANCE(451); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(443); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 438: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'p') ADVANCE(918); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'o') ADVANCE(452); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 439: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'p') ADVANCE(437); - if (lookahead == 't') ADVANCE(407); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'p') ADVANCE(918); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 440: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(466); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'p') ADVANCE(438); + if (lookahead == 't') ADVANCE(408); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 441: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(908); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(467); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 442: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(871); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(908); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 443: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(962); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(872); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 444: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(405); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(962); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 445: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(390); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(406); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 446: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(448); - if (lookahead == 'x') ADVANCE(439); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(391); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 447: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(429); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(449); + if (lookahead == 'x') ADVANCE(440); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 448: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(436); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(430); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 449: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(430); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(437); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 450: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(423); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(431); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 451: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(462); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(424); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 452: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(399); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(463); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 453: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(362); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(400); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 454: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(396); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(363); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 455: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(460); - if (lookahead == 't') ADVANCE(418); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(397); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 456: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(398); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(461); + if (lookahead == 't') ADVANCE(419); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 457: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(464); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(399); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 458: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(389); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(465); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 459: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(372); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(390); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 460: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(376); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(373); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 461: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(369); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(377); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 462: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(359); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(370); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 463: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(1059); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(360); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 464: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(408); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(1059); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 465: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'u') ADVANCE(445); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(409); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 466: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'u') ADVANCE(397); - if (lookahead == 'y') ADVANCE(950); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'u') ADVANCE(446); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 467: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'u') ADVANCE(449); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'u') ADVANCE(398); + if (lookahead == 'y') ADVANCE(950); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 468: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'u') ADVANCE(402); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'u') ADVANCE(450); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 469: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'u') ADVANCE(426); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'u') ADVANCE(403); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 470: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'v') ADVANCE(406); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'u') ADVANCE(427); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 471: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'y') ADVANCE(970); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'v') ADVANCE(407); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 472: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(472); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'y') ADVANCE(970); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 473: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(473); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(474); END_STATE(); case 474: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(528); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 475: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(705); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(529); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 476: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == '-') ADVANCE(706); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 477: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '.') ADVANCE(1117); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(379); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(477); - if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(707); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 478: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1287); - if (lookahead == 'I') ADVANCE(495); - if (lookahead == 'b') ADVANCE(1283); - if (lookahead == 'i') ADVANCE(531); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '.') ADVANCE(1117); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(380); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(478); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(711); END_STATE(); case 479: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1239); + if (lookahead == 'B') ADVANCE(1287); if (lookahead == 'I') ADVANCE(496); - if (lookahead == 'b') ADVANCE(1235); + if (lookahead == 'b') ADVANCE(1283); if (lookahead == 'i') ADVANCE(532); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 480: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1207); + if (lookahead == 'B') ADVANCE(1239); if (lookahead == 'I') ADVANCE(497); - if (lookahead == 'b') ADVANCE(1203); + if (lookahead == 'b') ADVANCE(1235); if (lookahead == 'i') ADVANCE(533); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 481: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1223); + if (lookahead == 'B') ADVANCE(1207); if (lookahead == 'I') ADVANCE(498); - if (lookahead == 'b') ADVANCE(1219); + if (lookahead == 'b') ADVANCE(1203); if (lookahead == 'i') ADVANCE(534); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 482: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1271); + if (lookahead == 'B') ADVANCE(1223); if (lookahead == 'I') ADVANCE(499); - if (lookahead == 'b') ADVANCE(1267); + if (lookahead == 'b') ADVANCE(1219); if (lookahead == 'i') ADVANCE(535); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 483: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1255); + if (lookahead == 'B') ADVANCE(1271); if (lookahead == 'I') ADVANCE(500); - if (lookahead == 'b') ADVANCE(1251); + if (lookahead == 'b') ADVANCE(1267); if (lookahead == 'i') ADVANCE(536); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 484: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1303); + if (lookahead == 'B') ADVANCE(1255); if (lookahead == 'I') ADVANCE(501); - if (lookahead == 'b') ADVANCE(1299); + if (lookahead == 'b') ADVANCE(1251); if (lookahead == 'i') ADVANCE(537); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 485: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B') ADVANCE(1279); + if (lookahead == 'B') ADVANCE(1303); if (lookahead == 'I') ADVANCE(502); - if (lookahead == 'b') ADVANCE(1275); - if (lookahead == 'i') ADVANCE(503); - if (lookahead == 'n') ADVANCE(548); - if (lookahead == 'r') ADVANCE(658); - if (lookahead == 'x') ADVANCE(644); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1299); + if (lookahead == 'i') ADVANCE(538); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 486: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1279); - if (lookahead == 'I') ADVANCE(502); + if (lookahead == 'I') ADVANCE(503); if (lookahead == 'b') ADVANCE(1275); - if (lookahead == 'i') ADVANCE(503); - if (lookahead == 'n') ADVANCE(548); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(504); + if (lookahead == 'n') ADVANCE(549); + if (lookahead == 'r') ADVANCE(659); + if (lookahead == 'x') ADVANCE(645); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 487: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'B') ADVANCE(1279); + if (lookahead == 'I') ADVANCE(503); + if (lookahead == 'b') ADVANCE(1275); + if (lookahead == 'i') ADVANCE(504); + if (lookahead == 'n') ADVANCE(549); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); + END_STATE(); + case 488: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1231); - if (lookahead == 'I') ADVANCE(504); + if (lookahead == 'I') ADVANCE(505); if (lookahead == 'b') ADVANCE(1227); - if (lookahead == 'i') ADVANCE(505); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(506); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 488: + case 489: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1199); - if (lookahead == 'I') ADVANCE(506); + if (lookahead == 'I') ADVANCE(507); if (lookahead == 'b') ADVANCE(1195); - if (lookahead == 'i') ADVANCE(507); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(508); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 489: + case 490: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1215); - if (lookahead == 'I') ADVANCE(508); - if (lookahead == 'a') ADVANCE(678); + if (lookahead == 'I') ADVANCE(509); + if (lookahead == 'a') ADVANCE(679); if (lookahead == 'b') ADVANCE(1211); - if (lookahead == 'i') ADVANCE(509); - if (lookahead == 'o') ADVANCE(543); + if (lookahead == 'i') ADVANCE(510); + if (lookahead == 'o') ADVANCE(544); if (lookahead == 's') ADVANCE(1160); - if (lookahead == 'u') ADVANCE(679); - if (sym_cmd_identifier_character_set_9(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(680); + if (sym_cmd_identifier_character_set_9(lookahead)) ADVANCE(711); END_STATE(); - case 490: + case 491: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1215); - if (lookahead == 'I') ADVANCE(508); + if (lookahead == 'I') ADVANCE(509); if (lookahead == 'b') ADVANCE(1211); - if (lookahead == 'i') ADVANCE(509); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == 'i') ADVANCE(510); + if (lookahead == 'o') ADVANCE(546); if (lookahead == 's') ADVANCE(1160); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 491: + case 492: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1263); - if (lookahead == 'I') ADVANCE(510); + if (lookahead == 'I') ADVANCE(511); if (lookahead == 'b') ADVANCE(1259); - if (lookahead == 'i') ADVANCE(511); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(512); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 492: + case 493: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1247); - if (lookahead == 'I') ADVANCE(512); + if (lookahead == 'I') ADVANCE(513); if (lookahead == 'b') ADVANCE(1243); - if (lookahead == 'i') ADVANCE(513); - if (lookahead == 'r') ADVANCE(694); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(514); + if (lookahead == 'r') ADVANCE(695); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 493: + case 494: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1247); - if (lookahead == 'I') ADVANCE(512); + if (lookahead == 'I') ADVANCE(513); if (lookahead == 'b') ADVANCE(1243); - if (lookahead == 'i') ADVANCE(513); - if (lookahead == 'r') ADVANCE(695); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(514); + if (lookahead == 'r') ADVANCE(696); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 494: + case 495: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1295); - if (lookahead == 'I') ADVANCE(514); + if (lookahead == 'I') ADVANCE(515); if (lookahead == 'b') ADVANCE(1291); - if (lookahead == 'i') ADVANCE(515); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(516); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 495: + case 496: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1471); if (lookahead == 'b') ADVANCE(1467); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 496: + case 497: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1387); if (lookahead == 'b') ADVANCE(1383); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 497: + case 498: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1331); if (lookahead == 'b') ADVANCE(1327); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 498: + case 499: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1359); if (lookahead == 'b') ADVANCE(1355); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 499: + case 500: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1443); if (lookahead == 'b') ADVANCE(1439); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 500: + case 501: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1415); if (lookahead == 'b') ADVANCE(1411); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 501: + case 502: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1499); if (lookahead == 'b') ADVANCE(1495); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 502: + case 503: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1455); if (lookahead == 'b') ADVANCE(1459); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 503: + case 504: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1451); if (lookahead == 'b') ADVANCE(1447); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 504: + case 505: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1371); if (lookahead == 'b') ADVANCE(1375); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 505: + case 506: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1367); if (lookahead == 'b') ADVANCE(1363); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 506: + case 507: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1315); if (lookahead == 'b') ADVANCE(1319); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 507: + case 508: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1311); if (lookahead == 'b') ADVANCE(1307); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 508: + case 509: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1343); if (lookahead == 'b') ADVANCE(1347); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 509: + case 510: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1339); if (lookahead == 'b') ADVANCE(1335); if (lookahead == 'n') ADVANCE(1168); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 510: + case 511: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1427); if (lookahead == 'b') ADVANCE(1431); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 511: + case 512: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1423); if (lookahead == 'b') ADVANCE(1419); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 512: + case 513: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1399); if (lookahead == 'b') ADVANCE(1403); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 513: + case 514: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1395); if (lookahead == 'b') ADVANCE(1391); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 514: + case 515: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1483); if (lookahead == 'b') ADVANCE(1487); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); - case 515: + case 516: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'B') ADVANCE(1479); if (lookahead == 'b') ADVANCE(1475); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); - END_STATE(); - case 516: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N') ADVANCE(1143); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 517: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(516); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'N') ADVANCE(1143); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 518: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(599); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(517); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 519: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(707); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(600); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 520: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(610); - if (lookahead == 'o') ADVANCE(646); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(708); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 521: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(610); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(611); + if (lookahead == 'o') ADVANCE(647); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 522: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(666); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(611); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 523: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(678); - if (lookahead == 'o') ADVANCE(546); - if (lookahead == 'u') ADVANCE(679); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(667); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 524: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(678); - if (lookahead == 'o') ADVANCE(543); - if (lookahead == 'u') ADVANCE(679); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(679); + if (lookahead == 'o') ADVANCE(547); + if (lookahead == 'u') ADVANCE(680); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 525: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(678); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(679); + if (lookahead == 'o') ADVANCE(544); + if (lookahead == 'u') ADVANCE(680); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 526: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(708); - if (lookahead == 'e') ADVANCE(578); - if (lookahead == 'o') ADVANCE(926); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(679); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 527: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(708); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(709); + if (lookahead == 'e') ADVANCE(579); + if (lookahead == 'o') ADVANCE(926); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 528: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(627); - if (lookahead == 'o') ADVANCE(653); - if (lookahead == 's') ADVANCE(584); - if (lookahead == 'x') ADVANCE(642); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(709); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 529: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(664); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(628); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 's') ADVANCE(585); + if (lookahead == 'x') ADVANCE(643); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 530: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(690); - if (lookahead == 'o') ADVANCE(612); - if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(665); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 531: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1463); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'a') ADVANCE(691); + if (lookahead == 'o') ADVANCE(613); + if (sym_cmd_identifier_character_set_10(lookahead)) ADVANCE(711); END_STATE(); case 532: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1379); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1463); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 533: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1323); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1379); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 534: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1351); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1323); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 535: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1435); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1351); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 536: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1407); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1435); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 537: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1491); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1407); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 538: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1164); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'b') ADVANCE(1491); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 539: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(583); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'c') ADVANCE(1164); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 540: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(587); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'c') ADVANCE(584); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 541: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(559); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'c') ADVANCE(588); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 542: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1047); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'c') ADVANCE(560); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 543: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(997); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(1047); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 544: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1037); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(997); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 545: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(999); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(1037); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 546: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(698); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(999); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 547: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(553); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(699); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 548: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(670); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(554); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 549: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(578); - if (lookahead == 'o') ADVANCE(926); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'd') ADVANCE(671); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 550: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(677); - if (lookahead == 'o') ADVANCE(633); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(579); + if (lookahead == 'o') ADVANCE(926); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 551: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(580); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'o') ADVANCE(634); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 552: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(857); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(581); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 553: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(964); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(858); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 554: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1088); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(964); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 555: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1096); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(1088); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 556: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(985); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(1096); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 557: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(922); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(985); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 558: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(852); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(922); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 559: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(957); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(853); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 560: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(906); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(957); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 561: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(932); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(906); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 562: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(518); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(932); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 563: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(617); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(519); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 564: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(538); - if (lookahead == 'o') ADVANCE(693); - if (lookahead == 't') ADVANCE(529); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(618); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 565: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(538); - if (lookahead == 't') ADVANCE(529); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(539); + if (lookahead == 'o') ADVANCE(694); + if (lookahead == 't') ADVANCE(530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 566: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(660); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(539); + if (lookahead == 't') ADVANCE(530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 567: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(619); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(661); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 568: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(622); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(620); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 569: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(625); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(623); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 570: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(659); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(626); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 571: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(626); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(660); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 572: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(648); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(627); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 573: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(689); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(649); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 574: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(663); - if (lookahead == 'i') ADVANCE(608); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(690); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 575: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(663); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(664); + if (lookahead == 'i') ADVANCE(609); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 576: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(930); - if (lookahead == 'n') ADVANCE(911); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(664); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 577: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'f') ADVANCE(930); - if (lookahead == 'n') ADVANCE(579); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(911); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 578: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(838); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'f') ADVANCE(930); + if (lookahead == 'n') ADVANCE(580); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 579: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1133); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'f') ADVANCE(839); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 580: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 't') ADVANCE(696); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'f') ADVANCE(1133); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 581: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(574); - if (lookahead == 'k') ADVANCE(1180); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'g') ADVANCE(594); + if (lookahead == 't') ADVANCE(697); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 582: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(574); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(575); + if (lookahead == 'k') ADVANCE(1180); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 583: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(936); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(575); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 584: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(602); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(936); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 585: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1030); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(603); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 586: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1027); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(1030); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 587: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(953); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(1027); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 588: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(575); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(953); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 589: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(547); - if (lookahead == 'r') ADVANCE(1172); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'h') ADVANCE(576); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 590: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(547); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(548); + if (lookahead == 'r') ADVANCE(1172); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 591: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(522); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(548); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 592: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(621); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(523); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 593: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(673); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(622); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 594: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(683); - if (lookahead == 'r') ADVANCE(562); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(674); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 595: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(683); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(684); + if (lookahead == 'r') ADVANCE(563); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 596: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(616); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(684); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 597: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(686); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(617); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 598: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(688); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(687); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 599: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(903); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(689); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 600: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1180); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'k') ADVANCE(903); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 601: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1080); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'k') ADVANCE(1180); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 602: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1008); - if (lookahead == 'r') ADVANCE(1011); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(1080); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 603: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(591); - if (lookahead == 'n') ADVANCE(542); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(1008); + if (lookahead == 'r') ADVANCE(1011); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 604: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(591); - if (lookahead == 's') ADVANCE(973); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(592); + if (lookahead == 'n') ADVANCE(543); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 605: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(591); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(592); + if (lookahead == 's') ADVANCE(973); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 606: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(519); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(592); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 607: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(601); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(520); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 608: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(557); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(602); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 609: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'l') ADVANCE(558); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 610: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(674); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(559); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 611: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'l') ADVANCE(675); - if (lookahead == 'r') ADVANCE(658); - if (lookahead == 'x') ADVANCE(644); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 612: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(672); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'l') ADVANCE(676); + if (lookahead == 'r') ADVANCE(659); + if (lookahead == 'x') ADVANCE(645); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 613: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(848); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(673); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 614: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(956); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(849); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 615: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(911); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(956); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 616: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1024); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(911); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 617: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(699); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(1024); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 618: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(579); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(700); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 619: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(700); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(580); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 620: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(542); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(701); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 621: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(697); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(543); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 622: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(701); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(698); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 623: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(548); - if (lookahead == 'r') ADVANCE(658); - if (lookahead == 'x') ADVANCE(644); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(702); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 624: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(548); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(549); + if (lookahead == 'r') ADVANCE(659); + if (lookahead == 'x') ADVANCE(645); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 625: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(702); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(549); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 626: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'n') ADVANCE(703); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 627: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(544); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(704); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 628: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(685); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(545); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 629: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(612); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'n') ADVANCE(686); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 630: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(926); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(613); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 631: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(693); - if (lookahead == 't') ADVANCE(529); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(926); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 632: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(693); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(694); + if (lookahead == 't') ADVANCE(530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 633: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(643); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(694); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 634: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(680); - if (lookahead == 'u') ADVANCE(607); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(644); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 635: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(647); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'u') ADVANCE(608); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 636: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(545); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(648); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 637: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(662); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(546); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 638: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(684); - if (lookahead == 's') ADVANCE(1147); - if (lookahead == 'u') ADVANCE(607); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(663); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 639: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(684); - if (lookahead == 'u') ADVANCE(607); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(685); + if (lookahead == 's') ADVANCE(1147); + if (lookahead == 'u') ADVANCE(608); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 640: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(652); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'u') ADVANCE(608); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 641: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(628); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(653); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 642: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(654); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(629); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 643: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(919); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'o') ADVANCE(655); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 644: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(637); - if (lookahead == 't') ADVANCE(570); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'p') ADVANCE(919); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 645: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(694); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'p') ADVANCE(638); + if (lookahead == 't') ADVANCE(571); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 646: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(909); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(695); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 647: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(873); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(909); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 648: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(963); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(874); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 649: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1172); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(963); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 650: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1055); - if (lookahead == 'v') ADVANCE(566); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(1172); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 651: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'r') ADVANCE(1055); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(567); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 652: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1051); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(1055); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 653: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1043); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(1051); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 654: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1040); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(1043); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 655: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(562); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(1040); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 656: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(541); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(563); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 657: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(658); - if (lookahead == 'x') ADVANCE(644); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(542); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 658: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(635); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(659); + if (lookahead == 'x') ADVANCE(645); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 659: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(613); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(636); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 660: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(606); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(614); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 661: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(614); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(607); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 662: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(682); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(615); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 663: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(556); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(683); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 664: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(692); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(557); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 665: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(695); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(693); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 666: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(363); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'r') ADVANCE(696); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 667: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1154); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(364); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 668: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1151); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(1154); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 669: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1156); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(1151); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 670: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(475); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(1156); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 671: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(552); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(476); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 672: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(681); - if (lookahead == 't') ADVANCE(592); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(553); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 673: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(691); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(682); + if (lookahead == 't') ADVANCE(593); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 674: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(555); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(692); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 675: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(561); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(556); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 676: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(476); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(562); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 677: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(367); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 's') ADVANCE(477); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 678: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(539); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(368); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 679: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(373); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(540); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 680: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1064); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(374); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 681: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(377); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(1064); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 682: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(357); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(378); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 683: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(474); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(358); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 684: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1061); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(475); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 685: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(592); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(1061); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 686: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(585); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(593); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 687: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(529); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(586); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 688: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(586); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(530); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 689: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(696); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(587); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 690: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(540); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(697); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 691: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(572); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(541); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 692: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(676); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(573); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 693: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(656); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 't') ADVANCE(677); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 694: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(554); - if (lookahead == 'y') ADVANCE(951); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(657); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 695: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(554); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(555); + if (lookahead == 'y') ADVANCE(951); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 696: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(661); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(555); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 697: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(560); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(662); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 698: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(609); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(561); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 699: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(843); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(610); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 700: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(370); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(844); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 701: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(968); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(371); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 702: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(844); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(968); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 703: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(960); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(845); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 704: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(566); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(960); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 705: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(597); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'v') ADVANCE(567); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 706: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'w') ADVANCE(598); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 707: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(971); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'w') ADVANCE(599); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 708: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1176); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'y') ADVANCE(971); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 709: ACCEPT_TOKEN(sym_cmd_identifier); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(709); - if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(710); + if (lookahead == 'y') ADVANCE(1176); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 710: ACCEPT_TOKEN(sym_cmd_identifier); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(710); + if (sym_cmd_identifier_character_set_8(lookahead)) ADVANCE(711); END_STATE(); case 711: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(205); - if (lookahead == '>') ADVANCE(1546); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + ACCEPT_TOKEN(sym_cmd_identifier); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(156); - if (lookahead == '>') ADVANCE(1548); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '+') ADVANCE(206); + if (lookahead == '>') ADVANCE(1546); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(125); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '+') ADVANCE(157); + if (lookahead == '>') ADVANCE(1548); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(178); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(126); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(267); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(179); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(220); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(268); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(143); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(221); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(211); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(144); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(268); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(212); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(222); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(269); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(269); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(223); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1117); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(834); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(722); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(270); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1286); - if (lookahead == 'I') ADVANCE(737); - if (lookahead == 'b') ADVANCE(1282); - if (lookahead == 'i') ADVANCE(764); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '.') ADVANCE(1117); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(835); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(723); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1238); + if (lookahead == 'B') ADVANCE(1286); if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'b') ADVANCE(1234); + if (lookahead == 'b') ADVANCE(1282); if (lookahead == 'i') ADVANCE(765); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1206); + if (lookahead == 'B') ADVANCE(1238); if (lookahead == 'I') ADVANCE(739); - if (lookahead == 'b') ADVANCE(1202); + if (lookahead == 'b') ADVANCE(1234); if (lookahead == 'i') ADVANCE(766); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1222); + if (lookahead == 'B') ADVANCE(1206); if (lookahead == 'I') ADVANCE(740); - if (lookahead == 'b') ADVANCE(1218); + if (lookahead == 'b') ADVANCE(1202); if (lookahead == 'i') ADVANCE(767); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1270); + if (lookahead == 'B') ADVANCE(1222); if (lookahead == 'I') ADVANCE(741); - if (lookahead == 'b') ADVANCE(1266); + if (lookahead == 'b') ADVANCE(1218); if (lookahead == 'i') ADVANCE(768); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1254); + if (lookahead == 'B') ADVANCE(1270); if (lookahead == 'I') ADVANCE(742); - if (lookahead == 'b') ADVANCE(1250); + if (lookahead == 'b') ADVANCE(1266); if (lookahead == 'i') ADVANCE(769); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1302); + if (lookahead == 'B') ADVANCE(1254); if (lookahead == 'I') ADVANCE(743); - if (lookahead == 'b') ADVANCE(1298); + if (lookahead == 'b') ADVANCE(1250); if (lookahead == 'i') ADVANCE(770); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(1278); + if (lookahead == 'B') ADVANCE(1302); if (lookahead == 'I') ADVANCE(744); - if (lookahead == 'b') ADVANCE(1274); - if (lookahead == 'i') ADVANCE(745); - if (lookahead == 'n') ADVANCE(774); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1298); + if (lookahead == 'i') ADVANCE(771); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 731: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B') ADVANCE(1278); + if (lookahead == 'I') ADVANCE(745); + if (lookahead == 'b') ADVANCE(1274); + if (lookahead == 'i') ADVANCE(746); + if (lookahead == 'n') ADVANCE(775); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); + END_STATE(); + case 732: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1230); - if (lookahead == 'I') ADVANCE(746); + if (lookahead == 'I') ADVANCE(747); if (lookahead == 'b') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(747); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(748); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 732: + case 733: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1198); - if (lookahead == 'I') ADVANCE(748); + if (lookahead == 'I') ADVANCE(749); if (lookahead == 'b') ADVANCE(1194); - if (lookahead == 'i') ADVANCE(749); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(750); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 733: + case 734: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1214); - if (lookahead == 'I') ADVANCE(750); + if (lookahead == 'I') ADVANCE(751); if (lookahead == 'b') ADVANCE(1210); - if (lookahead == 'i') ADVANCE(751); - if (lookahead == 'o') ADVANCE(773); + if (lookahead == 'i') ADVANCE(752); + if (lookahead == 'o') ADVANCE(774); if (lookahead == 's') ADVANCE(1159); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 734: + case 735: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1262); - if (lookahead == 'I') ADVANCE(752); + if (lookahead == 'I') ADVANCE(753); if (lookahead == 'b') ADVANCE(1258); - if (lookahead == 'i') ADVANCE(753); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(754); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 735: + case 736: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1246); - if (lookahead == 'I') ADVANCE(754); + if (lookahead == 'I') ADVANCE(755); if (lookahead == 'b') ADVANCE(1242); - if (lookahead == 'i') ADVANCE(755); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(756); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 736: + case 737: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1294); - if (lookahead == 'I') ADVANCE(756); + if (lookahead == 'I') ADVANCE(757); if (lookahead == 'b') ADVANCE(1290); - if (lookahead == 'i') ADVANCE(757); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(758); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 737: + case 738: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1470); if (lookahead == 'b') ADVANCE(1466); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 738: + case 739: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1386); if (lookahead == 'b') ADVANCE(1382); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 739: + case 740: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1330); if (lookahead == 'b') ADVANCE(1326); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 740: + case 741: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1358); if (lookahead == 'b') ADVANCE(1354); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 741: + case 742: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1442); if (lookahead == 'b') ADVANCE(1438); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 742: + case 743: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1414); if (lookahead == 'b') ADVANCE(1410); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 743: + case 744: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1498); if (lookahead == 'b') ADVANCE(1494); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 744: + case 745: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1454); if (lookahead == 'b') ADVANCE(1458); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 745: + case 746: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1450); if (lookahead == 'b') ADVANCE(1446); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 746: + case 747: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1370); if (lookahead == 'b') ADVANCE(1374); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 747: + case 748: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1366); if (lookahead == 'b') ADVANCE(1362); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 748: + case 749: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1314); if (lookahead == 'b') ADVANCE(1318); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 749: + case 750: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1310); if (lookahead == 'b') ADVANCE(1306); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 750: + case 751: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1342); if (lookahead == 'b') ADVANCE(1346); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 751: + case 752: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1338); if (lookahead == 'b') ADVANCE(1334); if (lookahead == 'n') ADVANCE(1167); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 752: + case 753: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1426); if (lookahead == 'b') ADVANCE(1430); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 753: + case 754: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1422); if (lookahead == 'b') ADVANCE(1418); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 754: + case 755: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1398); if (lookahead == 'b') ADVANCE(1402); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 755: + case 756: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1394); if (lookahead == 'b') ADVANCE(1390); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 756: + case 757: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1482); if (lookahead == 'b') ADVANCE(1486); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); - case 757: + case 758: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B') ADVANCE(1478); if (lookahead == 'b') ADVANCE(1474); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); - END_STATE(); - case 758: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(1140); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(833); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(836); + if (lookahead == 'N') ADVANCE(1140); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(758); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(836); + if (lookahead == 'a') ADVANCE(834); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(789); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(836); + if (lookahead == 'a') ADVANCE(759); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(814); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(836); + if (lookahead == 'a') ADVANCE(790); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(818); - if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(836); + if (lookahead == 'a') ADVANCE(815); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1462); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'a') ADVANCE(819); + if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(837); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1378); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1462); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1322); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1378); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1350); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1322); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1434); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1350); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1406); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1434); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1490); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1406); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1163); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'b') ADVANCE(1490); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1046); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'c') ADVANCE(1163); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(998); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'd') ADVANCE(1046); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(822); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'd') ADVANCE(998); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(780); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'd') ADVANCE(823); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(771); - if (lookahead == 't') ADVANCE(762); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'd') ADVANCE(781); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1085); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(772); + if (lookahead == 't') ADVANCE(763); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(1085); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(856); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(1093); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(967); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(857); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(718); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(967); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(790); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(719); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(1130); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'e') ADVANCE(791); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(825); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'f') ADVANCE(1130); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(775); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(826); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1179); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(776); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1077); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'k') ADVANCE(1179); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(787); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(1077); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(821); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(788); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(791); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(822); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(716); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(792); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(717); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(792); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(718); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(808); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'l') ADVANCE(793); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(772); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'm') ADVANCE(809); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(915); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(773); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(783); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(915); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(914); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(784); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(774); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(914); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(781); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(775); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(811); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'n') ADVANCE(782); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(773); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(812); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(826); - if (lookahead == 'u') ADVANCE(788); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(774); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(813); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(827); + if (lookahead == 'u') ADVANCE(789); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(817); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(814); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(828); - if (lookahead == 's') ADVANCE(1146); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(818); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(828); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(829); + if (lookahead == 's') ADVANCE(1146); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(805); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'o') ADVANCE(829); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1171); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'p') ADVANCE(806); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1054); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(1171); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1050); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(1054); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(831); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(1050); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(872); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(832); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(830); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(873); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(816); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(831); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(804); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(817); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(829); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(805); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(721); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(830); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1150); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'r') ADVANCE(722); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1155); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(1150); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(778); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(1155); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 822: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(715); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(779); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(779); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(716); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(719); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(780); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(713); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 's') ADVANCE(720); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1062); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(714); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(762); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(1062); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(714); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(763); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(720); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(715); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(824); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(721); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(777); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 't') ADVANCE(825); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(793); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'u') ADVANCE(778); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1175); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'u') ADVANCE(794); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+' || - lookahead == '-') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(835); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(836); + if (lookahead == 'y') ADVANCE(1175); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+' || + lookahead == '-') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(835); - if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(836); + lookahead == '_') ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 837: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(837); + ACCEPT_TOKEN(sym_identifier); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 838: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '-') ADVANCE(563); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(838); END_STATE(); case 839: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '-') ADVANCE(563); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); + if (lookahead == '-') ADVANCE(564); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 840: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '-') ADVANCE(563); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(564); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 841: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '-') ADVANCE(158); + if (lookahead == '-') ADVANCE(564); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 842: - ACCEPT_TOKEN(anon_sym_def_DASHenv); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == '-') ADVANCE(159); END_STATE(); case 843: ACCEPT_TOKEN(anon_sym_def_DASHenv); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); END_STATE(); case 844: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + ACCEPT_TOKEN(anon_sym_def_DASHenv); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 845: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 846: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 847: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 848: ACCEPT_TOKEN(anon_sym_extern); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 849: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 850: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 851: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 852: ACCEPT_TOKEN(anon_sym_module); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 853: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_module); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 854: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 855: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 856: ACCEPT_TOKEN(anon_sym_use); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 857: ACCEPT_TOKEN(anon_sym_use); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 858: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_use); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 859: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 860: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 861: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 862: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 863: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 864: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 865: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 866: ACCEPT_TOKEN(anon_sym_PIPE); - if (!aux_sym_unquoted_token1_character_set_1(lookahead)) ADVANCE(1873); END_STATE(); case 867: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_PIPE); + if (!aux_sym_unquoted_token1_character_set_1(lookahead)) ADVANCE(1873); END_STATE(); case 868: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1539); - if (lookahead == '\'') ADVANCE(1537); END_STATE(); case 869: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1539); + if (lookahead == '\'') ADVANCE(1537); END_STATE(); case 870: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 871: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 872: ACCEPT_TOKEN(anon_sym_error); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 873: ACCEPT_TOKEN(anon_sym_error); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 874: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_error); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 875: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 876: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 877: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 878: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 879: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1019); END_STATE(); case 880: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1019); END_STATE(); case 881: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1021); END_STATE(); case 882: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1022); - if (!aux_sym_unquoted_token1_character_set_1(lookahead)) ADVANCE(1873); + if (lookahead == '=') ADVANCE(1021); END_STATE(); case 883: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1022); + if (!aux_sym_unquoted_token1_character_set_1(lookahead)) ADVANCE(1873); END_STATE(); case 884: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 885: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 886: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 887: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 888: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); END_STATE(); case 889: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '-') ADVANCE(887); + END_STATE(); + case 890: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(887); + if (lookahead == '.') ADVANCE(299); if (lookahead == 'i') ADVANCE(1557); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1106); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1559); END_STATE(); - case 890: + case 891: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); - if (lookahead == '.') ADVANCE(298); - if (lookahead == 'i') ADVANCE(193); + if (lookahead == '-') ADVANCE(887); + if (lookahead == '.') ADVANCE(299); + if (lookahead == 'i') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); - case 891: + case 892: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); + if (lookahead == '-') ADVANCE(887); if (lookahead == '=') ADVANCE(979); - if (lookahead == '>') ADVANCE(859); if (lookahead == 'i') ADVANCE(1557); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1559); END_STATE(); - case 892: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); - if (lookahead == '>') ADVANCE(859); - END_STATE(); case 893: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(886); + if (lookahead == '-') ADVANCE(887); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1559); END_STATE(); case 894: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(298); - if (lookahead == 'i') ADVANCE(193); + if (lookahead == '.') ADVANCE(299); + if (lookahead == 'i') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); @@ -37071,65 +37303,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (lookahead == '+') ADVANCE(205); + if (lookahead == '+') ADVANCE(206); if (lookahead == '>') ADVANCE(1546); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (lookahead == '+') ADVANCE(156); + if (lookahead == '+') ADVANCE(157); if (lookahead == '>') ADVANCE(1548); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(290); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_param_short_flag_token1); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 901: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 902: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 903: ACCEPT_TOKEN(anon_sym_break); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 904: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 905: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 906: ACCEPT_TOKEN(anon_sym_continue); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 907: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 908: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 909: ACCEPT_TOKEN(anon_sym_for); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 910: ACCEPT_TOKEN(anon_sym_in); @@ -37137,7 +37369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 911: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'f') ADVANCE(1133); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 912: ACCEPT_TOKEN(anon_sym_in); @@ -37151,11 +37383,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 914: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'f') ADVANCE(1130); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 915: ACCEPT_TOKEN(anon_sym_in); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 916: ACCEPT_TOKEN(anon_sym_in); @@ -37163,89 +37395,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 917: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 918: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 919: ACCEPT_TOKEN(anon_sym_loop); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 920: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 921: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 922: ACCEPT_TOKEN(anon_sym_while); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 923: ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 924: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 925: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 926: ACCEPT_TOKEN(anon_sym_do); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 927: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 928: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 929: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 930: ACCEPT_TOKEN(anon_sym_if); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 931: ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 932: ACCEPT_TOKEN(anon_sym_else); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 933: ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 934: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 935: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 936: ACCEPT_TOKEN(anon_sym_match); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 937: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -37260,13 +37492,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); if (lookahead == '.') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); case 941: ACCEPT_TOKEN(anon_sym__); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 942: ACCEPT_TOKEN(anon_sym_DOT); @@ -37294,124 +37526,124 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 947: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(67); + if (lookahead == '.') ADVANCE(68); END_STATE(); case 948: ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 949: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 950: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 951: ACCEPT_TOKEN(anon_sym_try); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 952: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 953: ACCEPT_TOKEN(anon_sym_catch); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 954: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 955: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 956: ACCEPT_TOKEN(anon_sym_return); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 957: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(571); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(572); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 958: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(571); + if (lookahead == '-') ADVANCE(572); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 959: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(571); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(572); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 960: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 961: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 962: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 963: ACCEPT_TOKEN(anon_sym_register); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 964: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(568); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(569); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 965: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(568); + if (lookahead == '-') ADVANCE(569); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 966: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(568); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(569); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 967: ACCEPT_TOKEN(anon_sym_hide); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 968: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 969: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 970: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 971: ACCEPT_TOKEN(anon_sym_overlay); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 972: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 973: ACCEPT_TOKEN(anon_sym_as); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 974: ACCEPT_TOKEN(anon_sym_STAR); @@ -37447,17 +37679,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 983: ACCEPT_TOKEN(anon_sym_where); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 984: ACCEPT_TOKEN(anon_sym_where); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 985: ACCEPT_TOKEN(anon_sym_where); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 986: ACCEPT_TOKEN(anon_sym_QMARK2); @@ -37503,16 +37735,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 997: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(609); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'u') ADVANCE(610); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 998: ACCEPT_TOKEN(anon_sym_mod); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 999: ACCEPT_TOKEN(anon_sym_mod); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1000: ACCEPT_TOKEN(anon_sym_mod); @@ -37537,7 +37769,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1005: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(990); - if (lookahead == '.') ADVANCE(298); + if (lookahead == '.') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); @@ -37554,7 +37786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1008: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1009: ACCEPT_TOKEN(anon_sym_bit_DASHshl); @@ -37565,7 +37797,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1011: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1012: ACCEPT_TOKEN(anon_sym_bit_DASHshr); @@ -37613,7 +37845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1024: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1025: ACCEPT_TOKEN(anon_sym_not_DASHin); @@ -37624,7 +37856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1027: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1028: ACCEPT_TOKEN(anon_sym_starts_DASHwith); @@ -37635,7 +37867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1030: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1031: ACCEPT_TOKEN(anon_sym_ends_DASHwith); @@ -37660,7 +37892,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1037: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1038: ACCEPT_TOKEN(anon_sym_bit_DASHand); @@ -37671,7 +37903,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1040: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1041: ACCEPT_TOKEN(anon_sym_bit_DASHxor); @@ -37682,7 +37914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1043: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1044: ACCEPT_TOKEN(anon_sym_bit_DASHor); @@ -37693,11 +37925,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1046: ACCEPT_TOKEN(anon_sym_and); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1047: ACCEPT_TOKEN(anon_sym_and); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1048: ACCEPT_TOKEN(anon_sym_and); @@ -37708,11 +37940,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1050: ACCEPT_TOKEN(anon_sym_xor); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1051: ACCEPT_TOKEN(anon_sym_xor); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1052: ACCEPT_TOKEN(anon_sym_xor); @@ -37723,11 +37955,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1054: ACCEPT_TOKEN(anon_sym_or); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1055: ACCEPT_TOKEN(anon_sym_or); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1056: ACCEPT_TOKEN(anon_sym_or); @@ -37738,26 +37970,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1058: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1059: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1060: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(178); + if (lookahead == '-') ADVANCE(179); END_STATE(); case 1061: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(596); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '-') ADVANCE(597); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(711); END_STATE(); case 1062: ACCEPT_TOKEN(anon_sym_not); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1063: ACCEPT_TOKEN(anon_sym_not); @@ -37765,7 +37997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1064: ACCEPT_TOKEN(anon_sym_not); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1065: ACCEPT_TOKEN(anon_sym_not); @@ -37783,7 +38015,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(884); + if (lookahead == '.') ADVANCE(885); if (lookahead == '<') ADVANCE(1067); if (lookahead == '=') ADVANCE(1072); END_STATE(); @@ -37810,17 +38042,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1075: ACCEPT_TOKEN(sym_val_nothing); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1076: ACCEPT_TOKEN(sym_val_nothing); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1077: ACCEPT_TOKEN(sym_val_nothing); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1078: ACCEPT_TOKEN(sym_val_nothing); @@ -37833,7 +38065,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1080: ACCEPT_TOKEN(sym_val_nothing); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1081: ACCEPT_TOKEN(sym_val_nothing); @@ -37844,17 +38076,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1083: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_true); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_true); @@ -37867,7 +38099,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_true); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_true); @@ -37878,17 +38110,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1091: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1093: ACCEPT_TOKEN(anon_sym_false); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1094: ACCEPT_TOKEN(anon_sym_false); @@ -37901,7 +38133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1096: ACCEPT_TOKEN(anon_sym_false); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1097: ACCEPT_TOKEN(anon_sym_false); @@ -37919,10 +38151,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1099: ACCEPT_TOKEN(aux_sym_val_number_token1); - if (lookahead == '-') ADVANCE(296); + if (lookahead == '-') ADVANCE(297); if (lookahead == '.') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); @@ -37934,7 +38166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(1505); if (lookahead == 'x') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1102); END_STATE(); case 1101: @@ -37942,7 +38174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(1117); if (lookahead == '_') ADVANCE(1105); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1099); END_STATE(); case 1102: @@ -37950,7 +38182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(1117); if (lookahead == '_') ADVANCE(1105); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1101); END_STATE(); case 1103: @@ -37958,17 +38190,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(1117); if (lookahead == '_') ADVANCE(1105); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1102); END_STATE(); case 1104: ACCEPT_TOKEN(aux_sym_val_number_token1); if (lookahead == '.') ADVANCE(1117); - if (lookahead == 'b') ADVANCE(279); - if (lookahead == 'o') ADVANCE(281); - if (lookahead == 'x') ADVANCE(309); + if (lookahead == 'b') ADVANCE(280); + if (lookahead == 'o') ADVANCE(282); + if (lookahead == 'x') ADVANCE(310); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); @@ -37976,7 +38208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_val_number_token1); if (lookahead == '.') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1105); END_STATE(); @@ -38040,7 +38272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1112: ACCEPT_TOKEN(aux_sym_val_number_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1112); END_STATE(); @@ -38072,7 +38304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1117: ACCEPT_TOKEN(aux_sym_val_number_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(278); + lookahead == 'e') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1112); END_STATE(); @@ -38139,17 +38371,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1128: ACCEPT_TOKEN(anon_sym_inf); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1129: ACCEPT_TOKEN(anon_sym_inf); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1130: ACCEPT_TOKEN(anon_sym_inf); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1131: ACCEPT_TOKEN(anon_sym_inf); @@ -38162,7 +38394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1133: ACCEPT_TOKEN(anon_sym_inf); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1134: ACCEPT_TOKEN(anon_sym_inf); @@ -38180,17 +38412,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1138: ACCEPT_TOKEN(anon_sym_NaN); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1139: ACCEPT_TOKEN(anon_sym_NaN); - if (lookahead == '-') ADVANCE(710); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(473); + if (lookahead == '-') ADVANCE(711); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(474); END_STATE(); case 1140: ACCEPT_TOKEN(anon_sym_NaN); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1141: ACCEPT_TOKEN(anon_sym_NaN); @@ -38203,7 +38435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1143: ACCEPT_TOKEN(anon_sym_NaN); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1144: ACCEPT_TOKEN(anon_sym_NaN); @@ -38214,11 +38446,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1146: ACCEPT_TOKEN(anon_sym_ns); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1147: ACCEPT_TOKEN(anon_sym_ns); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1148: ACCEPT_TOKEN(anon_sym_ns); @@ -38229,11 +38461,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1150: ACCEPT_TOKEN(anon_sym_s); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1151: ACCEPT_TOKEN(anon_sym_s); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1152: ACCEPT_TOKEN(anon_sym_s); @@ -38244,16 +38476,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1154: ACCEPT_TOKEN(anon_sym_us); - if (lookahead == 'e') ADVANCE(857); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'e') ADVANCE(858); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1155: ACCEPT_TOKEN(anon_sym_us); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1156: ACCEPT_TOKEN(anon_sym_us); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1157: ACCEPT_TOKEN(anon_sym_us); @@ -38264,11 +38496,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1159: ACCEPT_TOKEN(anon_sym_ms); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1160: ACCEPT_TOKEN(anon_sym_ms); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1161: ACCEPT_TOKEN(anon_sym_ms); @@ -38279,11 +38511,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1163: ACCEPT_TOKEN(anon_sym_sec); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1164: ACCEPT_TOKEN(anon_sym_sec); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1165: ACCEPT_TOKEN(anon_sym_sec); @@ -38294,11 +38526,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1167: ACCEPT_TOKEN(anon_sym_min); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1168: ACCEPT_TOKEN(anon_sym_min); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1169: ACCEPT_TOKEN(anon_sym_min); @@ -38309,11 +38541,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1171: ACCEPT_TOKEN(anon_sym_hr); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1172: ACCEPT_TOKEN(anon_sym_hr); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1173: ACCEPT_TOKEN(anon_sym_hr); @@ -38324,11 +38556,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1175: ACCEPT_TOKEN(anon_sym_day); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1176: ACCEPT_TOKEN(anon_sym_day); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1177: ACCEPT_TOKEN(anon_sym_day); @@ -38339,11 +38571,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1179: ACCEPT_TOKEN(anon_sym_wk); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1180: ACCEPT_TOKEN(anon_sym_wk); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1181: ACCEPT_TOKEN(anon_sym_wk); @@ -38356,27 +38588,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1183: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 1184: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(825); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (lookahead == 'i') ADVANCE(826); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1185: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(683); - if (lookahead == 'r') ADVANCE(562); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(684); + if (lookahead == 'r') ADVANCE(563); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1186: ACCEPT_TOKEN(anon_sym_b); - if (lookahead == 'i') ADVANCE(683); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (lookahead == 'i') ADVANCE(684); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1187: ACCEPT_TOKEN(anon_sym_b); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1188: ACCEPT_TOKEN(anon_sym_b); @@ -38387,11 +38619,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1190: ACCEPT_TOKEN(anon_sym_B); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1191: ACCEPT_TOKEN(anon_sym_B); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1192: ACCEPT_TOKEN(anon_sym_B); @@ -38402,11 +38634,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1194: ACCEPT_TOKEN(anon_sym_kb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1195: ACCEPT_TOKEN(anon_sym_kb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1196: ACCEPT_TOKEN(anon_sym_kb); @@ -38417,11 +38649,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1198: ACCEPT_TOKEN(anon_sym_kB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1199: ACCEPT_TOKEN(anon_sym_kB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1200: ACCEPT_TOKEN(anon_sym_kB); @@ -38432,11 +38664,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1202: ACCEPT_TOKEN(anon_sym_Kb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1203: ACCEPT_TOKEN(anon_sym_Kb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1204: ACCEPT_TOKEN(anon_sym_Kb); @@ -38447,11 +38679,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1206: ACCEPT_TOKEN(anon_sym_KB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1207: ACCEPT_TOKEN(anon_sym_KB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1208: ACCEPT_TOKEN(anon_sym_KB); @@ -38462,11 +38694,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1210: ACCEPT_TOKEN(anon_sym_mb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1211: ACCEPT_TOKEN(anon_sym_mb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1212: ACCEPT_TOKEN(anon_sym_mb); @@ -38477,11 +38709,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1214: ACCEPT_TOKEN(anon_sym_mB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1215: ACCEPT_TOKEN(anon_sym_mB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1216: ACCEPT_TOKEN(anon_sym_mB); @@ -38492,11 +38724,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1218: ACCEPT_TOKEN(anon_sym_Mb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1219: ACCEPT_TOKEN(anon_sym_Mb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1220: ACCEPT_TOKEN(anon_sym_Mb); @@ -38507,11 +38739,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1222: ACCEPT_TOKEN(anon_sym_MB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1223: ACCEPT_TOKEN(anon_sym_MB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1224: ACCEPT_TOKEN(anon_sym_MB); @@ -38522,11 +38754,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1226: ACCEPT_TOKEN(anon_sym_gb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1227: ACCEPT_TOKEN(anon_sym_gb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1228: ACCEPT_TOKEN(anon_sym_gb); @@ -38537,11 +38769,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1230: ACCEPT_TOKEN(anon_sym_gB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1231: ACCEPT_TOKEN(anon_sym_gB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1232: ACCEPT_TOKEN(anon_sym_gB); @@ -38552,11 +38784,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1234: ACCEPT_TOKEN(anon_sym_Gb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1235: ACCEPT_TOKEN(anon_sym_Gb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1236: ACCEPT_TOKEN(anon_sym_Gb); @@ -38567,11 +38799,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1238: ACCEPT_TOKEN(anon_sym_GB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1239: ACCEPT_TOKEN(anon_sym_GB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1240: ACCEPT_TOKEN(anon_sym_GB); @@ -38582,11 +38814,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1242: ACCEPT_TOKEN(anon_sym_tb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1243: ACCEPT_TOKEN(anon_sym_tb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1244: ACCEPT_TOKEN(anon_sym_tb); @@ -38597,11 +38829,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1246: ACCEPT_TOKEN(anon_sym_tB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1247: ACCEPT_TOKEN(anon_sym_tB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1248: ACCEPT_TOKEN(anon_sym_tB); @@ -38612,11 +38844,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1250: ACCEPT_TOKEN(anon_sym_Tb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1251: ACCEPT_TOKEN(anon_sym_Tb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1252: ACCEPT_TOKEN(anon_sym_Tb); @@ -38627,11 +38859,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1254: ACCEPT_TOKEN(anon_sym_TB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1255: ACCEPT_TOKEN(anon_sym_TB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1256: ACCEPT_TOKEN(anon_sym_TB); @@ -38642,11 +38874,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1258: ACCEPT_TOKEN(anon_sym_pb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1259: ACCEPT_TOKEN(anon_sym_pb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1260: ACCEPT_TOKEN(anon_sym_pb); @@ -38657,11 +38889,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1262: ACCEPT_TOKEN(anon_sym_pB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1263: ACCEPT_TOKEN(anon_sym_pB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1264: ACCEPT_TOKEN(anon_sym_pB); @@ -38672,11 +38904,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1266: ACCEPT_TOKEN(anon_sym_Pb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1267: ACCEPT_TOKEN(anon_sym_Pb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1268: ACCEPT_TOKEN(anon_sym_Pb); @@ -38687,11 +38919,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1270: ACCEPT_TOKEN(anon_sym_PB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1271: ACCEPT_TOKEN(anon_sym_PB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1272: ACCEPT_TOKEN(anon_sym_PB); @@ -38702,11 +38934,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1274: ACCEPT_TOKEN(anon_sym_eb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1275: ACCEPT_TOKEN(anon_sym_eb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1276: ACCEPT_TOKEN(anon_sym_eb); @@ -38717,11 +38949,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1278: ACCEPT_TOKEN(anon_sym_eB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1279: ACCEPT_TOKEN(anon_sym_eB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1280: ACCEPT_TOKEN(anon_sym_eB); @@ -38732,11 +38964,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1282: ACCEPT_TOKEN(anon_sym_Eb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1283: ACCEPT_TOKEN(anon_sym_Eb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1284: ACCEPT_TOKEN(anon_sym_Eb); @@ -38747,11 +38979,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1286: ACCEPT_TOKEN(anon_sym_EB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1287: ACCEPT_TOKEN(anon_sym_EB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1288: ACCEPT_TOKEN(anon_sym_EB); @@ -38762,11 +38994,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1290: ACCEPT_TOKEN(anon_sym_zb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1291: ACCEPT_TOKEN(anon_sym_zb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1292: ACCEPT_TOKEN(anon_sym_zb); @@ -38777,11 +39009,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1294: ACCEPT_TOKEN(anon_sym_zB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1295: ACCEPT_TOKEN(anon_sym_zB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1296: ACCEPT_TOKEN(anon_sym_zB); @@ -38792,11 +39024,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1298: ACCEPT_TOKEN(anon_sym_Zb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1299: ACCEPT_TOKEN(anon_sym_Zb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1300: ACCEPT_TOKEN(anon_sym_Zb); @@ -38807,11 +39039,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1302: ACCEPT_TOKEN(anon_sym_ZB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1303: ACCEPT_TOKEN(anon_sym_ZB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1304: ACCEPT_TOKEN(anon_sym_ZB); @@ -38822,11 +39054,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1306: ACCEPT_TOKEN(anon_sym_kib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1307: ACCEPT_TOKEN(anon_sym_kib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1308: ACCEPT_TOKEN(anon_sym_kib); @@ -38837,11 +39069,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1310: ACCEPT_TOKEN(anon_sym_kiB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1311: ACCEPT_TOKEN(anon_sym_kiB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1312: ACCEPT_TOKEN(anon_sym_kiB); @@ -38852,11 +39084,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1314: ACCEPT_TOKEN(anon_sym_kIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1315: ACCEPT_TOKEN(anon_sym_kIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1316: ACCEPT_TOKEN(anon_sym_kIB); @@ -38867,11 +39099,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1318: ACCEPT_TOKEN(anon_sym_kIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1319: ACCEPT_TOKEN(anon_sym_kIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1320: ACCEPT_TOKEN(anon_sym_kIb); @@ -38882,11 +39114,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1322: ACCEPT_TOKEN(anon_sym_Kib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1323: ACCEPT_TOKEN(anon_sym_Kib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1324: ACCEPT_TOKEN(anon_sym_Kib); @@ -38897,11 +39129,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1326: ACCEPT_TOKEN(anon_sym_KIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1327: ACCEPT_TOKEN(anon_sym_KIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1328: ACCEPT_TOKEN(anon_sym_KIb); @@ -38912,11 +39144,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1330: ACCEPT_TOKEN(anon_sym_KIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1331: ACCEPT_TOKEN(anon_sym_KIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1332: ACCEPT_TOKEN(anon_sym_KIB); @@ -38927,11 +39159,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1334: ACCEPT_TOKEN(anon_sym_mib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1335: ACCEPT_TOKEN(anon_sym_mib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1336: ACCEPT_TOKEN(anon_sym_mib); @@ -38942,11 +39174,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1338: ACCEPT_TOKEN(anon_sym_miB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1339: ACCEPT_TOKEN(anon_sym_miB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1340: ACCEPT_TOKEN(anon_sym_miB); @@ -38957,11 +39189,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1342: ACCEPT_TOKEN(anon_sym_mIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1343: ACCEPT_TOKEN(anon_sym_mIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1344: ACCEPT_TOKEN(anon_sym_mIB); @@ -38972,11 +39204,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1346: ACCEPT_TOKEN(anon_sym_mIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1347: ACCEPT_TOKEN(anon_sym_mIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1348: ACCEPT_TOKEN(anon_sym_mIb); @@ -38987,11 +39219,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1350: ACCEPT_TOKEN(anon_sym_Mib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1351: ACCEPT_TOKEN(anon_sym_Mib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1352: ACCEPT_TOKEN(anon_sym_Mib); @@ -39002,11 +39234,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1354: ACCEPT_TOKEN(anon_sym_MIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1355: ACCEPT_TOKEN(anon_sym_MIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1356: ACCEPT_TOKEN(anon_sym_MIb); @@ -39017,11 +39249,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1358: ACCEPT_TOKEN(anon_sym_MIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1359: ACCEPT_TOKEN(anon_sym_MIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1360: ACCEPT_TOKEN(anon_sym_MIB); @@ -39032,11 +39264,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1362: ACCEPT_TOKEN(anon_sym_gib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1363: ACCEPT_TOKEN(anon_sym_gib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1364: ACCEPT_TOKEN(anon_sym_gib); @@ -39047,11 +39279,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1366: ACCEPT_TOKEN(anon_sym_giB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1367: ACCEPT_TOKEN(anon_sym_giB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1368: ACCEPT_TOKEN(anon_sym_giB); @@ -39062,11 +39294,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1370: ACCEPT_TOKEN(anon_sym_gIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1371: ACCEPT_TOKEN(anon_sym_gIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1372: ACCEPT_TOKEN(anon_sym_gIB); @@ -39077,11 +39309,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1374: ACCEPT_TOKEN(anon_sym_gIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1375: ACCEPT_TOKEN(anon_sym_gIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1376: ACCEPT_TOKEN(anon_sym_gIb); @@ -39092,11 +39324,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1378: ACCEPT_TOKEN(anon_sym_Gib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1379: ACCEPT_TOKEN(anon_sym_Gib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1380: ACCEPT_TOKEN(anon_sym_Gib); @@ -39107,11 +39339,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1382: ACCEPT_TOKEN(anon_sym_GIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1383: ACCEPT_TOKEN(anon_sym_GIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1384: ACCEPT_TOKEN(anon_sym_GIb); @@ -39122,11 +39354,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1386: ACCEPT_TOKEN(anon_sym_GIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1387: ACCEPT_TOKEN(anon_sym_GIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1388: ACCEPT_TOKEN(anon_sym_GIB); @@ -39137,11 +39369,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1390: ACCEPT_TOKEN(anon_sym_tib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1391: ACCEPT_TOKEN(anon_sym_tib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1392: ACCEPT_TOKEN(anon_sym_tib); @@ -39152,11 +39384,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1394: ACCEPT_TOKEN(anon_sym_tiB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1395: ACCEPT_TOKEN(anon_sym_tiB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1396: ACCEPT_TOKEN(anon_sym_tiB); @@ -39167,11 +39399,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1398: ACCEPT_TOKEN(anon_sym_tIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1399: ACCEPT_TOKEN(anon_sym_tIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1400: ACCEPT_TOKEN(anon_sym_tIB); @@ -39182,11 +39414,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1402: ACCEPT_TOKEN(anon_sym_tIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1403: ACCEPT_TOKEN(anon_sym_tIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1404: ACCEPT_TOKEN(anon_sym_tIb); @@ -39197,11 +39429,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1406: ACCEPT_TOKEN(anon_sym_Tib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1407: ACCEPT_TOKEN(anon_sym_Tib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1408: ACCEPT_TOKEN(anon_sym_Tib); @@ -39212,11 +39444,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1410: ACCEPT_TOKEN(anon_sym_TIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1411: ACCEPT_TOKEN(anon_sym_TIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1412: ACCEPT_TOKEN(anon_sym_TIb); @@ -39227,11 +39459,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1414: ACCEPT_TOKEN(anon_sym_TIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1415: ACCEPT_TOKEN(anon_sym_TIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1416: ACCEPT_TOKEN(anon_sym_TIB); @@ -39242,11 +39474,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1418: ACCEPT_TOKEN(anon_sym_pib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1419: ACCEPT_TOKEN(anon_sym_pib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1420: ACCEPT_TOKEN(anon_sym_pib); @@ -39257,11 +39489,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1422: ACCEPT_TOKEN(anon_sym_piB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1423: ACCEPT_TOKEN(anon_sym_piB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1424: ACCEPT_TOKEN(anon_sym_piB); @@ -39272,11 +39504,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1426: ACCEPT_TOKEN(anon_sym_pIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1427: ACCEPT_TOKEN(anon_sym_pIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1428: ACCEPT_TOKEN(anon_sym_pIB); @@ -39287,11 +39519,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1430: ACCEPT_TOKEN(anon_sym_pIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1431: ACCEPT_TOKEN(anon_sym_pIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1432: ACCEPT_TOKEN(anon_sym_pIb); @@ -39302,11 +39534,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1434: ACCEPT_TOKEN(anon_sym_Pib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1435: ACCEPT_TOKEN(anon_sym_Pib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1436: ACCEPT_TOKEN(anon_sym_Pib); @@ -39317,11 +39549,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1438: ACCEPT_TOKEN(anon_sym_PIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1439: ACCEPT_TOKEN(anon_sym_PIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1440: ACCEPT_TOKEN(anon_sym_PIb); @@ -39332,11 +39564,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1442: ACCEPT_TOKEN(anon_sym_PIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1443: ACCEPT_TOKEN(anon_sym_PIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1444: ACCEPT_TOKEN(anon_sym_PIB); @@ -39347,11 +39579,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1446: ACCEPT_TOKEN(anon_sym_eib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1447: ACCEPT_TOKEN(anon_sym_eib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1448: ACCEPT_TOKEN(anon_sym_eib); @@ -39362,11 +39594,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1450: ACCEPT_TOKEN(anon_sym_eiB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1451: ACCEPT_TOKEN(anon_sym_eiB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1452: ACCEPT_TOKEN(anon_sym_eiB); @@ -39377,11 +39609,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1454: ACCEPT_TOKEN(anon_sym_eIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1455: ACCEPT_TOKEN(anon_sym_eIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1456: ACCEPT_TOKEN(anon_sym_eIB); @@ -39392,11 +39624,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1458: ACCEPT_TOKEN(anon_sym_eIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1459: ACCEPT_TOKEN(anon_sym_eIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1460: ACCEPT_TOKEN(anon_sym_eIb); @@ -39407,11 +39639,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1462: ACCEPT_TOKEN(anon_sym_Eib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1463: ACCEPT_TOKEN(anon_sym_Eib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1464: ACCEPT_TOKEN(anon_sym_Eib); @@ -39422,11 +39654,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1466: ACCEPT_TOKEN(anon_sym_EIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1467: ACCEPT_TOKEN(anon_sym_EIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1468: ACCEPT_TOKEN(anon_sym_EIb); @@ -39437,11 +39669,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1470: ACCEPT_TOKEN(anon_sym_EIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1471: ACCEPT_TOKEN(anon_sym_EIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1472: ACCEPT_TOKEN(anon_sym_EIB); @@ -39452,11 +39684,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1474: ACCEPT_TOKEN(anon_sym_zib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1475: ACCEPT_TOKEN(anon_sym_zib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1476: ACCEPT_TOKEN(anon_sym_zib); @@ -39467,11 +39699,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1478: ACCEPT_TOKEN(anon_sym_ziB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1479: ACCEPT_TOKEN(anon_sym_ziB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1480: ACCEPT_TOKEN(anon_sym_ziB); @@ -39482,11 +39714,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1482: ACCEPT_TOKEN(anon_sym_zIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1483: ACCEPT_TOKEN(anon_sym_zIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1484: ACCEPT_TOKEN(anon_sym_zIB); @@ -39497,11 +39729,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1486: ACCEPT_TOKEN(anon_sym_zIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1487: ACCEPT_TOKEN(anon_sym_zIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1488: ACCEPT_TOKEN(anon_sym_zIb); @@ -39512,11 +39744,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1490: ACCEPT_TOKEN(anon_sym_Zib); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_Zib); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_Zib); @@ -39527,11 +39759,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_ZIb); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_ZIb); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_ZIb); @@ -39542,11 +39774,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1498: ACCEPT_TOKEN(anon_sym_ZIB); - if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(836); + if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(837); END_STATE(); case 1499: ACCEPT_TOKEN(anon_sym_ZIB); - if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(710); + if (sym_cmd_identifier_character_set_6(lookahead)) ADVANCE(711); END_STATE(); case 1500: ACCEPT_TOKEN(anon_sym_ZIB); @@ -39650,9 +39882,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1516: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(287); + if (lookahead == '.') ADVANCE(288); if (lookahead == '+' || - lookahead == '-') ADVANCE(74); + lookahead == '-') ADVANCE(75); if (lookahead == 'Z' || lookahead == 'z') ADVANCE(1515); END_STATE(); @@ -39668,7 +39900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1518: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1524); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(286); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(287); END_STATE(); case 1519: ACCEPT_TOKEN(sym_val_date); @@ -39683,12 +39915,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1521: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(291); + if (lookahead == 'T') ADVANCE(292); END_STATE(); case 1522: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(74); + lookahead == '-') ADVANCE(75); if (lookahead == 'Z' || lookahead == 'z') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1522); @@ -39704,7 +39936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1524: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(286); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(287); END_STATE(); case 1525: ACCEPT_TOKEN(sym_val_date); @@ -39863,7 +40095,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1558: ACCEPT_TOKEN(sym_short_flag); if (lookahead == '+' || - lookahead == '-') ADVANCE(299); + lookahead == '-') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1115); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1559); @@ -39882,8 +40114,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '+') ADVANCE(299); - if (lookahead == '-') ADVANCE(709); + if (lookahead == '+') ADVANCE(300); + if (lookahead == '-') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1657); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1658); @@ -39912,7 +40144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == '.') ADVANCE(1117); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1561); @@ -39922,44 +40154,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'N') ADVANCE(1138); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1566); if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(1658); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1604); if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(1658); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1656); if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(1658); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1612); if (lookahead == 'o') ADVANCE(1626); if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(1658); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1638); if (sym_cmd_identifier_character_set_7(lookahead)) ADVANCE(1658); END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'a') ADVANCE(1643); if (lookahead == 'o') ADVANCE(1575); if (lookahead == 'u') ADVANCE(1644); @@ -39967,529 +40199,529 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'c') ADVANCE(1599); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'c') ADVANCE(1588); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'd') ADVANCE(1654); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'd') ADVANCE(1587); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1596); if (lookahead == 'o') ADVANCE(924); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1646); if (lookahead == 'o') ADVANCE(1619); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1597); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(854); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(855); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1083); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1091); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(983); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(920); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'e') ADVANCE(850); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'e') ADVANCE(851); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(904); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1587: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(965); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(958); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1568); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1635); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1632); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1628); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'e') ADVANCE(1637); if (lookahead == 'i') ADVANCE(1610); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'f') ADVANCE(928); if (lookahead == 'n') ADVANCE(1595); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'f') ADVANCE(1128); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'f') ADVANCE(839); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'f') ADVANCE(840); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'g') ADVANCE(1603); if (lookahead == 't') ADVANCE(1652); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'h') ADVANCE(1593); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'h') ADVANCE(934); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'i') ADVANCE(1576); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'i') ADVANCE(1571); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'i') ADVANCE(1616); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'i') ADVANCE(1642); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'k') ADVANCE(901); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1075); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1601); if (lookahead == 's') ADVANCE(972); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1601); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1569); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1605); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1584); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1585); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'l') ADVANCE(1641); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'n') ADVANCE(1640); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'n') ADVANCE(846); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'n') ADVANCE(847); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'n') ADVANCE(954); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1616: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'n') ADVANCE(1653); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1613); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1650); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1623); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1648); if (lookahead == 'u') ADVANCE(1609); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1627); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'o') ADVANCE(1636); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'p') ADVANCE(917); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'p') ADVANCE(1622); if (lookahead == 't') ADVANCE(1591); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1651); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(907); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 'r') ADVANCE(870); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 'r') ADVANCE(871); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(961); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1589); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1574); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1633); if (lookahead == 'x') ADVANCE(1624); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1614); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1621); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1615); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1608); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1647); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'r') ADVANCE(1583); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 's') ADVANCE(361); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 's') ADVANCE(362); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 's') ADVANCE(1580); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 's') ADVANCE(1645); if (lookahead == 't') ADVANCE(1602); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 's') ADVANCE(1582); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 's') ADVANCE(1649); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 't') ADVANCE(1573); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(371); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(372); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(375); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(376); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(368); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(369); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); - if (lookahead == 't') ADVANCE(358); + if (lookahead == '-') ADVANCE(711); + if (lookahead == 't') ADVANCE(359); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 't') ADVANCE(1058); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 't') ADVANCE(1592); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'u') ADVANCE(1630); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'u') ADVANCE(1581); if (lookahead == 'y') ADVANCE(949); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'u') ADVANCE(1634); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'u') ADVANCE(1586); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'u') ADVANCE(1611); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'v') ADVANCE(1590); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (lookahead == 'y') ADVANCE(969); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1657); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1658); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(711); if (aux_sym_long_flag_token1_character_set_4(lookahead)) ADVANCE(1658); END_STATE(); case 1659: @@ -40505,7 +40737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_long_flag_token1); - if (lookahead == '-') ADVANCE(296); + if (lookahead == '-') ADVANCE(297); if (lookahead == '.') ADVANCE(1117); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1703); @@ -40794,7 +41026,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1703: ACCEPT_TOKEN(aux_sym_long_flag_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(299); + lookahead == '-') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(1709); if (aux_sym_long_flag_token1_character_set_1(lookahead)) ADVANCE(1713); @@ -41794,12 +42026,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1875: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(355); + if (lookahead == '\n') ADVANCE(356); if (lookahead != 0) ADVANCE(3); END_STATE(); case 1876: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(354); + if (lookahead == '!') ADVANCE(355); END_STATE(); case 1877: ACCEPT_TOKEN(anon_sym_POUND); @@ -42358,1436 +42590,1436 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 351}, - [2] = {.lex_state = 315}, - [3] = {.lex_state = 315}, - [4] = {.lex_state = 315}, - [5] = {.lex_state = 315}, - [6] = {.lex_state = 313}, - [7] = {.lex_state = 313}, - [8] = {.lex_state = 313}, - [9] = {.lex_state = 313}, - [10] = {.lex_state = 323}, - [11] = {.lex_state = 323}, - [12] = {.lex_state = 323}, - [13] = {.lex_state = 323}, - [14] = {.lex_state = 350}, + [1] = {.lex_state = 352}, + [2] = {.lex_state = 316}, + [3] = {.lex_state = 316}, + [4] = {.lex_state = 316}, + [5] = {.lex_state = 316}, + [6] = {.lex_state = 314}, + [7] = {.lex_state = 314}, + [8] = {.lex_state = 314}, + [9] = {.lex_state = 314}, + [10] = {.lex_state = 324}, + [11] = {.lex_state = 324}, + [12] = {.lex_state = 324}, + [13] = {.lex_state = 324}, + [14] = {.lex_state = 351}, [15] = {.lex_state = 5}, [16] = {.lex_state = 5}, - [17] = {.lex_state = 350}, + [17] = {.lex_state = 351}, [18] = {.lex_state = 25}, [19] = {.lex_state = 25}, - [20] = {.lex_state = 352}, - [21] = {.lex_state = 352}, - [22] = {.lex_state = 352}, - [23] = {.lex_state = 352}, - [24] = {.lex_state = 352}, - [25] = {.lex_state = 352}, - [26] = {.lex_state = 352}, - [27] = {.lex_state = 352}, - [28] = {.lex_state = 352}, - [29] = {.lex_state = 352}, - [30] = {.lex_state = 352}, - [31] = {.lex_state = 352}, - [32] = {.lex_state = 352}, - [33] = {.lex_state = 352}, - [34] = {.lex_state = 352}, - [35] = {.lex_state = 352}, - [36] = {.lex_state = 352}, - [37] = {.lex_state = 352}, - [38] = {.lex_state = 352}, - [39] = {.lex_state = 352}, - [40] = {.lex_state = 352}, - [41] = {.lex_state = 352}, - [42] = {.lex_state = 352}, - [43] = {.lex_state = 352}, - [44] = {.lex_state = 352}, - [45] = {.lex_state = 352}, - [46] = {.lex_state = 352}, - [47] = {.lex_state = 352}, - [48] = {.lex_state = 352}, - [49] = {.lex_state = 352}, - [50] = {.lex_state = 352}, - [51] = {.lex_state = 352}, - [52] = {.lex_state = 352}, - [53] = {.lex_state = 352}, - [54] = {.lex_state = 352}, - [55] = {.lex_state = 352}, - [56] = {.lex_state = 352}, - [57] = {.lex_state = 352}, - [58] = {.lex_state = 352}, - [59] = {.lex_state = 352}, - [60] = {.lex_state = 352}, - [61] = {.lex_state = 352}, - [62] = {.lex_state = 352}, - [63] = {.lex_state = 352}, - [64] = {.lex_state = 352}, - [65] = {.lex_state = 352}, - [66] = {.lex_state = 352}, - [67] = {.lex_state = 352}, - [68] = {.lex_state = 352}, - [69] = {.lex_state = 352}, - [70] = {.lex_state = 352}, - [71] = {.lex_state = 352}, - [72] = {.lex_state = 352}, - [73] = {.lex_state = 352}, - [74] = {.lex_state = 352}, - [75] = {.lex_state = 352}, - [76] = {.lex_state = 352}, - [77] = {.lex_state = 352}, - [78] = {.lex_state = 352}, - [79] = {.lex_state = 352}, - [80] = {.lex_state = 352}, - [81] = {.lex_state = 352}, - [82] = {.lex_state = 352}, - [83] = {.lex_state = 352}, - [84] = {.lex_state = 352}, - [85] = {.lex_state = 352}, - [86] = {.lex_state = 352}, - [87] = {.lex_state = 352}, - [88] = {.lex_state = 352}, - [89] = {.lex_state = 352}, - [90] = {.lex_state = 352}, - [91] = {.lex_state = 352}, - [92] = {.lex_state = 352}, - [93] = {.lex_state = 352}, - [94] = {.lex_state = 352}, - [95] = {.lex_state = 352}, - [96] = {.lex_state = 352}, - [97] = {.lex_state = 352}, - [98] = {.lex_state = 352}, - [99] = {.lex_state = 352}, - [100] = {.lex_state = 352}, - [101] = {.lex_state = 352}, - [102] = {.lex_state = 352}, - [103] = {.lex_state = 352}, - [104] = {.lex_state = 352}, - [105] = {.lex_state = 352}, - [106] = {.lex_state = 352}, - [107] = {.lex_state = 352}, - [108] = {.lex_state = 342}, - [109] = {.lex_state = 342}, - [110] = {.lex_state = 342}, - [111] = {.lex_state = 342}, + [20] = {.lex_state = 353}, + [21] = {.lex_state = 353}, + [22] = {.lex_state = 353}, + [23] = {.lex_state = 353}, + [24] = {.lex_state = 353}, + [25] = {.lex_state = 353}, + [26] = {.lex_state = 353}, + [27] = {.lex_state = 353}, + [28] = {.lex_state = 353}, + [29] = {.lex_state = 353}, + [30] = {.lex_state = 353}, + [31] = {.lex_state = 353}, + [32] = {.lex_state = 353}, + [33] = {.lex_state = 353}, + [34] = {.lex_state = 353}, + [35] = {.lex_state = 353}, + [36] = {.lex_state = 353}, + [37] = {.lex_state = 353}, + [38] = {.lex_state = 353}, + [39] = {.lex_state = 353}, + [40] = {.lex_state = 353}, + [41] = {.lex_state = 353}, + [42] = {.lex_state = 353}, + [43] = {.lex_state = 353}, + [44] = {.lex_state = 353}, + [45] = {.lex_state = 353}, + [46] = {.lex_state = 353}, + [47] = {.lex_state = 353}, + [48] = {.lex_state = 353}, + [49] = {.lex_state = 353}, + [50] = {.lex_state = 353}, + [51] = {.lex_state = 353}, + [52] = {.lex_state = 353}, + [53] = {.lex_state = 353}, + [54] = {.lex_state = 353}, + [55] = {.lex_state = 353}, + [56] = {.lex_state = 353}, + [57] = {.lex_state = 353}, + [58] = {.lex_state = 353}, + [59] = {.lex_state = 353}, + [60] = {.lex_state = 353}, + [61] = {.lex_state = 353}, + [62] = {.lex_state = 353}, + [63] = {.lex_state = 353}, + [64] = {.lex_state = 353}, + [65] = {.lex_state = 353}, + [66] = {.lex_state = 353}, + [67] = {.lex_state = 353}, + [68] = {.lex_state = 353}, + [69] = {.lex_state = 353}, + [70] = {.lex_state = 353}, + [71] = {.lex_state = 353}, + [72] = {.lex_state = 353}, + [73] = {.lex_state = 353}, + [74] = {.lex_state = 353}, + [75] = {.lex_state = 353}, + [76] = {.lex_state = 353}, + [77] = {.lex_state = 353}, + [78] = {.lex_state = 353}, + [79] = {.lex_state = 353}, + [80] = {.lex_state = 353}, + [81] = {.lex_state = 353}, + [82] = {.lex_state = 353}, + [83] = {.lex_state = 353}, + [84] = {.lex_state = 353}, + [85] = {.lex_state = 353}, + [86] = {.lex_state = 353}, + [87] = {.lex_state = 353}, + [88] = {.lex_state = 353}, + [89] = {.lex_state = 353}, + [90] = {.lex_state = 353}, + [91] = {.lex_state = 353}, + [92] = {.lex_state = 353}, + [93] = {.lex_state = 353}, + [94] = {.lex_state = 353}, + [95] = {.lex_state = 353}, + [96] = {.lex_state = 353}, + [97] = {.lex_state = 353}, + [98] = {.lex_state = 353}, + [99] = {.lex_state = 353}, + [100] = {.lex_state = 353}, + [101] = {.lex_state = 353}, + [102] = {.lex_state = 353}, + [103] = {.lex_state = 353}, + [104] = {.lex_state = 353}, + [105] = {.lex_state = 353}, + [106] = {.lex_state = 353}, + [107] = {.lex_state = 353}, + [108] = {.lex_state = 343}, + [109] = {.lex_state = 343}, + [110] = {.lex_state = 343}, + [111] = {.lex_state = 343}, [112] = {.lex_state = 10}, - [113] = {.lex_state = 10}, - [114] = {.lex_state = 320}, - [115] = {.lex_state = 320}, - [116] = {.lex_state = 320}, - [117] = {.lex_state = 322}, - [118] = {.lex_state = 322}, - [119] = {.lex_state = 322}, - [120] = {.lex_state = 20}, - [121] = {.lex_state = 352}, - [122] = {.lex_state = 322}, - [123] = {.lex_state = 9}, + [113] = {.lex_state = 321}, + [114] = {.lex_state = 10}, + [115] = {.lex_state = 321}, + [116] = {.lex_state = 323}, + [117] = {.lex_state = 323}, + [118] = {.lex_state = 321}, + [119] = {.lex_state = 9}, + [120] = {.lex_state = 323}, + [121] = {.lex_state = 20}, + [122] = {.lex_state = 323}, + [123] = {.lex_state = 353}, [124] = {.lex_state = 9}, - [125] = {.lex_state = 352}, - [126] = {.lex_state = 20}, - [127] = {.lex_state = 320}, - [128] = {.lex_state = 320}, - [129] = {.lex_state = 320}, + [125] = {.lex_state = 321}, + [126] = {.lex_state = 353}, + [127] = {.lex_state = 20}, + [128] = {.lex_state = 321}, + [129] = {.lex_state = 321}, [130] = {.lex_state = 15}, [131] = {.lex_state = 15}, - [132] = {.lex_state = 314}, - [133] = {.lex_state = 314}, - [134] = {.lex_state = 314}, - [135] = {.lex_state = 314}, - [136] = {.lex_state = 314}, - [137] = {.lex_state = 314}, - [138] = {.lex_state = 314}, - [139] = {.lex_state = 314}, - [140] = {.lex_state = 314}, - [141] = {.lex_state = 314}, - [142] = {.lex_state = 314}, - [143] = {.lex_state = 314}, - [144] = {.lex_state = 314}, - [145] = {.lex_state = 314}, - [146] = {.lex_state = 314}, - [147] = {.lex_state = 314}, - [148] = {.lex_state = 314}, - [149] = {.lex_state = 314}, - [150] = {.lex_state = 314}, - [151] = {.lex_state = 314}, - [152] = {.lex_state = 314}, - [153] = {.lex_state = 314}, - [154] = {.lex_state = 314}, - [155] = {.lex_state = 314}, - [156] = {.lex_state = 314}, - [157] = {.lex_state = 314}, - [158] = {.lex_state = 314}, - [159] = {.lex_state = 314}, - [160] = {.lex_state = 314}, - [161] = {.lex_state = 314}, - [162] = {.lex_state = 314}, - [163] = {.lex_state = 314}, - [164] = {.lex_state = 314}, - [165] = {.lex_state = 314}, - [166] = {.lex_state = 314}, - [167] = {.lex_state = 314}, - [168] = {.lex_state = 314}, - [169] = {.lex_state = 312}, - [170] = {.lex_state = 314}, - [171] = {.lex_state = 314}, - [172] = {.lex_state = 312}, - [173] = {.lex_state = 312}, - [174] = {.lex_state = 314}, - [175] = {.lex_state = 314}, - [176] = {.lex_state = 312}, - [177] = {.lex_state = 312}, - [178] = {.lex_state = 314}, - [179] = {.lex_state = 312}, - [180] = {.lex_state = 314}, - [181] = {.lex_state = 312}, - [182] = {.lex_state = 314}, - [183] = {.lex_state = 312}, - [184] = {.lex_state = 314}, - [185] = {.lex_state = 314}, - [186] = {.lex_state = 314}, - [187] = {.lex_state = 314}, - [188] = {.lex_state = 314}, - [189] = {.lex_state = 312}, - [190] = {.lex_state = 312}, - [191] = {.lex_state = 314}, - [192] = {.lex_state = 312}, - [193] = {.lex_state = 314}, - [194] = {.lex_state = 314}, - [195] = {.lex_state = 314}, - [196] = {.lex_state = 312}, - [197] = {.lex_state = 314}, - [198] = {.lex_state = 314}, - [199] = {.lex_state = 312}, - [200] = {.lex_state = 314}, - [201] = {.lex_state = 314}, - [202] = {.lex_state = 314}, - [203] = {.lex_state = 314}, - [204] = {.lex_state = 314}, - [205] = {.lex_state = 314}, - [206] = {.lex_state = 314}, - [207] = {.lex_state = 314}, - [208] = {.lex_state = 314}, - [209] = {.lex_state = 314}, - [210] = {.lex_state = 314}, - [211] = {.lex_state = 314}, - [212] = {.lex_state = 314}, - [213] = {.lex_state = 314}, - [214] = {.lex_state = 314}, - [215] = {.lex_state = 314}, - [216] = {.lex_state = 314}, - [217] = {.lex_state = 314}, - [218] = {.lex_state = 312}, - [219] = {.lex_state = 314}, - [220] = {.lex_state = 314}, - [221] = {.lex_state = 314}, - [222] = {.lex_state = 314}, - [223] = {.lex_state = 312}, - [224] = {.lex_state = 314}, - [225] = {.lex_state = 312}, - [226] = {.lex_state = 312}, - [227] = {.lex_state = 312}, - [228] = {.lex_state = 314}, - [229] = {.lex_state = 314}, - [230] = {.lex_state = 314}, - [231] = {.lex_state = 314}, - [232] = {.lex_state = 314}, - [233] = {.lex_state = 314}, - [234] = {.lex_state = 314}, - [235] = {.lex_state = 314}, - [236] = {.lex_state = 314}, - [237] = {.lex_state = 314}, - [238] = {.lex_state = 312}, - [239] = {.lex_state = 312}, - [240] = {.lex_state = 314}, - [241] = {.lex_state = 312}, - [242] = {.lex_state = 314}, - [243] = {.lex_state = 314}, - [244] = {.lex_state = 312}, - [245] = {.lex_state = 314}, - [246] = {.lex_state = 312}, - [247] = {.lex_state = 314}, - [248] = {.lex_state = 314}, - [249] = {.lex_state = 314}, - [250] = {.lex_state = 314}, - [251] = {.lex_state = 314}, - [252] = {.lex_state = 312}, - [253] = {.lex_state = 312}, - [254] = {.lex_state = 312}, - [255] = {.lex_state = 312}, - [256] = {.lex_state = 314}, - [257] = {.lex_state = 314}, - [258] = {.lex_state = 314}, - [259] = {.lex_state = 312}, - [260] = {.lex_state = 314}, - [261] = {.lex_state = 314}, - [262] = {.lex_state = 314}, - [263] = {.lex_state = 314}, - [264] = {.lex_state = 314}, - [265] = {.lex_state = 314}, - [266] = {.lex_state = 314}, - [267] = {.lex_state = 312}, - [268] = {.lex_state = 314}, - [269] = {.lex_state = 314}, - [270] = {.lex_state = 314}, - [271] = {.lex_state = 314}, - [272] = {.lex_state = 312}, - [273] = {.lex_state = 314}, - [274] = {.lex_state = 314}, - [275] = {.lex_state = 314}, - [276] = {.lex_state = 314}, - [277] = {.lex_state = 314}, - [278] = {.lex_state = 312}, - [279] = {.lex_state = 314}, - [280] = {.lex_state = 314}, - [281] = {.lex_state = 312}, - [282] = {.lex_state = 314}, - [283] = {.lex_state = 314}, - [284] = {.lex_state = 312}, - [285] = {.lex_state = 312}, - [286] = {.lex_state = 314}, - [287] = {.lex_state = 314}, - [288] = {.lex_state = 314}, - [289] = {.lex_state = 314}, - [290] = {.lex_state = 314}, - [291] = {.lex_state = 312}, - [292] = {.lex_state = 314}, - [293] = {.lex_state = 314}, - [294] = {.lex_state = 314}, - [295] = {.lex_state = 314}, - [296] = {.lex_state = 314}, - [297] = {.lex_state = 314}, - [298] = {.lex_state = 314}, - [299] = {.lex_state = 314}, - [300] = {.lex_state = 314}, - [301] = {.lex_state = 314}, - [302] = {.lex_state = 314}, - [303] = {.lex_state = 314}, - [304] = {.lex_state = 314}, - [305] = {.lex_state = 314}, - [306] = {.lex_state = 314}, - [307] = {.lex_state = 312}, - [308] = {.lex_state = 312}, - [309] = {.lex_state = 312}, - [310] = {.lex_state = 312}, - [311] = {.lex_state = 312}, - [312] = {.lex_state = 312}, - [313] = {.lex_state = 312}, - [314] = {.lex_state = 312}, - [315] = {.lex_state = 312}, - [316] = {.lex_state = 312}, - [317] = {.lex_state = 312}, - [318] = {.lex_state = 312}, - [319] = {.lex_state = 312}, - [320] = {.lex_state = 312}, - [321] = {.lex_state = 312}, - [322] = {.lex_state = 312}, - [323] = {.lex_state = 312}, - [324] = {.lex_state = 312}, - [325] = {.lex_state = 312}, - [326] = {.lex_state = 312}, - [327] = {.lex_state = 312}, - [328] = {.lex_state = 312}, - [329] = {.lex_state = 312}, - [330] = {.lex_state = 312}, - [331] = {.lex_state = 312}, - [332] = {.lex_state = 312}, - [333] = {.lex_state = 312}, - [334] = {.lex_state = 312}, - [335] = {.lex_state = 312}, - [336] = {.lex_state = 312}, - [337] = {.lex_state = 312}, - [338] = {.lex_state = 312}, - [339] = {.lex_state = 312}, - [340] = {.lex_state = 312}, - [341] = {.lex_state = 312}, - [342] = {.lex_state = 312}, - [343] = {.lex_state = 312}, - [344] = {.lex_state = 312}, - [345] = {.lex_state = 312}, - [346] = {.lex_state = 312}, - [347] = {.lex_state = 312}, - [348] = {.lex_state = 312}, - [349] = {.lex_state = 312}, - [350] = {.lex_state = 312}, - [351] = {.lex_state = 312}, - [352] = {.lex_state = 312}, - [353] = {.lex_state = 333}, - [354] = {.lex_state = 333}, - [355] = {.lex_state = 312}, - [356] = {.lex_state = 333}, - [357] = {.lex_state = 312}, - [358] = {.lex_state = 312}, - [359] = {.lex_state = 312}, - [360] = {.lex_state = 312}, - [361] = {.lex_state = 312}, - [362] = {.lex_state = 333}, - [363] = {.lex_state = 333}, - [364] = {.lex_state = 312}, - [365] = {.lex_state = 333}, - [366] = {.lex_state = 312}, - [367] = {.lex_state = 333}, - [368] = {.lex_state = 333}, - [369] = {.lex_state = 312}, - [370] = {.lex_state = 333}, - [371] = {.lex_state = 312}, - [372] = {.lex_state = 312}, - [373] = {.lex_state = 333}, - [374] = {.lex_state = 312}, - [375] = {.lex_state = 312}, - [376] = {.lex_state = 312}, - [377] = {.lex_state = 312}, - [378] = {.lex_state = 333}, - [379] = {.lex_state = 333}, - [380] = {.lex_state = 333}, - [381] = {.lex_state = 312}, - [382] = {.lex_state = 333}, - [383] = {.lex_state = 333}, - [384] = {.lex_state = 333}, - [385] = {.lex_state = 333}, - [386] = {.lex_state = 312}, - [387] = {.lex_state = 312}, - [388] = {.lex_state = 333}, - [389] = {.lex_state = 333}, - [390] = {.lex_state = 312}, - [391] = {.lex_state = 333}, - [392] = {.lex_state = 312}, - [393] = {.lex_state = 333}, - [394] = {.lex_state = 333}, - [395] = {.lex_state = 312}, - [396] = {.lex_state = 312}, - [397] = {.lex_state = 312}, - [398] = {.lex_state = 312}, - [399] = {.lex_state = 312}, - [400] = {.lex_state = 312}, - [401] = {.lex_state = 333}, - [402] = {.lex_state = 333}, - [403] = {.lex_state = 333}, - [404] = {.lex_state = 312}, - [405] = {.lex_state = 312}, - [406] = {.lex_state = 312}, - [407] = {.lex_state = 312}, - [408] = {.lex_state = 312}, - [409] = {.lex_state = 312}, - [410] = {.lex_state = 312}, - [411] = {.lex_state = 312}, - [412] = {.lex_state = 312}, - [413] = {.lex_state = 312}, - [414] = {.lex_state = 312}, - [415] = {.lex_state = 312}, - [416] = {.lex_state = 327}, - [417] = {.lex_state = 312}, - [418] = {.lex_state = 312}, - [419] = {.lex_state = 312}, - [420] = {.lex_state = 312}, - [421] = {.lex_state = 312}, - [422] = {.lex_state = 312}, - [423] = {.lex_state = 333}, - [424] = {.lex_state = 333}, - [425] = {.lex_state = 327}, - [426] = {.lex_state = 312}, - [427] = {.lex_state = 333}, - [428] = {.lex_state = 333}, - [429] = {.lex_state = 333}, - [430] = {.lex_state = 333}, - [431] = {.lex_state = 333}, - [432] = {.lex_state = 333}, - [433] = {.lex_state = 333}, - [434] = {.lex_state = 333}, - [435] = {.lex_state = 333}, - [436] = {.lex_state = 333}, - [437] = {.lex_state = 333}, - [438] = {.lex_state = 333}, - [439] = {.lex_state = 333}, - [440] = {.lex_state = 333}, - [441] = {.lex_state = 333}, - [442] = {.lex_state = 333}, - [443] = {.lex_state = 333}, - [444] = {.lex_state = 333}, - [445] = {.lex_state = 333}, - [446] = {.lex_state = 333}, - [447] = {.lex_state = 333}, - [448] = {.lex_state = 333}, - [449] = {.lex_state = 333}, - [450] = {.lex_state = 326}, - [451] = {.lex_state = 326}, - [452] = {.lex_state = 26}, - [453] = {.lex_state = 326}, - [454] = {.lex_state = 26}, - [455] = {.lex_state = 326}, - [456] = {.lex_state = 326}, - [457] = {.lex_state = 326}, - [458] = {.lex_state = 326}, - [459] = {.lex_state = 326}, - [460] = {.lex_state = 26}, - [461] = {.lex_state = 26}, - [462] = {.lex_state = 26}, - [463] = {.lex_state = 26}, - [464] = {.lex_state = 26}, - [465] = {.lex_state = 26}, - [466] = {.lex_state = 26}, - [467] = {.lex_state = 326}, - [468] = {.lex_state = 26}, - [469] = {.lex_state = 26}, - [470] = {.lex_state = 26}, - [471] = {.lex_state = 326}, - [472] = {.lex_state = 326}, - [473] = {.lex_state = 326}, - [474] = {.lex_state = 26}, - [475] = {.lex_state = 326}, - [476] = {.lex_state = 324}, - [477] = {.lex_state = 26}, - [478] = {.lex_state = 26}, - [479] = {.lex_state = 326}, - [480] = {.lex_state = 326}, - [481] = {.lex_state = 326}, - [482] = {.lex_state = 325}, - [483] = {.lex_state = 326}, - [484] = {.lex_state = 326}, - [485] = {.lex_state = 326}, - [486] = {.lex_state = 326}, - [487] = {.lex_state = 325}, - [488] = {.lex_state = 325}, - [489] = {.lex_state = 326}, - [490] = {.lex_state = 26}, - [491] = {.lex_state = 325}, - [492] = {.lex_state = 326}, - [493] = {.lex_state = 26}, - [494] = {.lex_state = 26}, - [495] = {.lex_state = 26}, - [496] = {.lex_state = 26}, - [497] = {.lex_state = 327}, - [498] = {.lex_state = 326}, - [499] = {.lex_state = 326}, - [500] = {.lex_state = 26}, - [501] = {.lex_state = 26}, - [502] = {.lex_state = 26}, - [503] = {.lex_state = 325}, - [504] = {.lex_state = 325}, - [505] = {.lex_state = 327}, - [506] = {.lex_state = 325}, + [132] = {.lex_state = 315}, + [133] = {.lex_state = 315}, + [134] = {.lex_state = 315}, + [135] = {.lex_state = 315}, + [136] = {.lex_state = 315}, + [137] = {.lex_state = 315}, + [138] = {.lex_state = 315}, + [139] = {.lex_state = 315}, + [140] = {.lex_state = 315}, + [141] = {.lex_state = 315}, + [142] = {.lex_state = 315}, + [143] = {.lex_state = 315}, + [144] = {.lex_state = 315}, + [145] = {.lex_state = 315}, + [146] = {.lex_state = 315}, + [147] = {.lex_state = 315}, + [148] = {.lex_state = 315}, + [149] = {.lex_state = 315}, + [150] = {.lex_state = 315}, + [151] = {.lex_state = 315}, + [152] = {.lex_state = 315}, + [153] = {.lex_state = 315}, + [154] = {.lex_state = 315}, + [155] = {.lex_state = 315}, + [156] = {.lex_state = 315}, + [157] = {.lex_state = 315}, + [158] = {.lex_state = 315}, + [159] = {.lex_state = 315}, + [160] = {.lex_state = 315}, + [161] = {.lex_state = 315}, + [162] = {.lex_state = 315}, + [163] = {.lex_state = 315}, + [164] = {.lex_state = 315}, + [165] = {.lex_state = 315}, + [166] = {.lex_state = 315}, + [167] = {.lex_state = 315}, + [168] = {.lex_state = 313}, + [169] = {.lex_state = 315}, + [170] = {.lex_state = 315}, + [171] = {.lex_state = 313}, + [172] = {.lex_state = 313}, + [173] = {.lex_state = 313}, + [174] = {.lex_state = 315}, + [175] = {.lex_state = 313}, + [176] = {.lex_state = 313}, + [177] = {.lex_state = 315}, + [178] = {.lex_state = 315}, + [179] = {.lex_state = 313}, + [180] = {.lex_state = 315}, + [181] = {.lex_state = 315}, + [182] = {.lex_state = 315}, + [183] = {.lex_state = 313}, + [184] = {.lex_state = 315}, + [185] = {.lex_state = 315}, + [186] = {.lex_state = 313}, + [187] = {.lex_state = 315}, + [188] = {.lex_state = 315}, + [189] = {.lex_state = 315}, + [190] = {.lex_state = 315}, + [191] = {.lex_state = 315}, + [192] = {.lex_state = 315}, + [193] = {.lex_state = 313}, + [194] = {.lex_state = 315}, + [195] = {.lex_state = 313}, + [196] = {.lex_state = 315}, + [197] = {.lex_state = 315}, + [198] = {.lex_state = 315}, + [199] = {.lex_state = 315}, + [200] = {.lex_state = 315}, + [201] = {.lex_state = 315}, + [202] = {.lex_state = 315}, + [203] = {.lex_state = 315}, + [204] = {.lex_state = 315}, + [205] = {.lex_state = 313}, + [206] = {.lex_state = 315}, + [207] = {.lex_state = 315}, + [208] = {.lex_state = 315}, + [209] = {.lex_state = 315}, + [210] = {.lex_state = 313}, + [211] = {.lex_state = 315}, + [212] = {.lex_state = 315}, + [213] = {.lex_state = 315}, + [214] = {.lex_state = 315}, + [215] = {.lex_state = 315}, + [216] = {.lex_state = 315}, + [217] = {.lex_state = 313}, + [218] = {.lex_state = 313}, + [219] = {.lex_state = 315}, + [220] = {.lex_state = 315}, + [221] = {.lex_state = 313}, + [222] = {.lex_state = 313}, + [223] = {.lex_state = 313}, + [224] = {.lex_state = 313}, + [225] = {.lex_state = 315}, + [226] = {.lex_state = 313}, + [227] = {.lex_state = 315}, + [228] = {.lex_state = 315}, + [229] = {.lex_state = 315}, + [230] = {.lex_state = 315}, + [231] = {.lex_state = 315}, + [232] = {.lex_state = 315}, + [233] = {.lex_state = 315}, + [234] = {.lex_state = 315}, + [235] = {.lex_state = 315}, + [236] = {.lex_state = 315}, + [237] = {.lex_state = 315}, + [238] = {.lex_state = 315}, + [239] = {.lex_state = 313}, + [240] = {.lex_state = 315}, + [241] = {.lex_state = 315}, + [242] = {.lex_state = 313}, + [243] = {.lex_state = 315}, + [244] = {.lex_state = 315}, + [245] = {.lex_state = 313}, + [246] = {.lex_state = 313}, + [247] = {.lex_state = 313}, + [248] = {.lex_state = 315}, + [249] = {.lex_state = 315}, + [250] = {.lex_state = 315}, + [251] = {.lex_state = 315}, + [252] = {.lex_state = 315}, + [253] = {.lex_state = 315}, + [254] = {.lex_state = 315}, + [255] = {.lex_state = 315}, + [256] = {.lex_state = 315}, + [257] = {.lex_state = 315}, + [258] = {.lex_state = 315}, + [259] = {.lex_state = 315}, + [260] = {.lex_state = 315}, + [261] = {.lex_state = 315}, + [262] = {.lex_state = 315}, + [263] = {.lex_state = 313}, + [264] = {.lex_state = 315}, + [265] = {.lex_state = 315}, + [266] = {.lex_state = 313}, + [267] = {.lex_state = 315}, + [268] = {.lex_state = 315}, + [269] = {.lex_state = 315}, + [270] = {.lex_state = 315}, + [271] = {.lex_state = 315}, + [272] = {.lex_state = 315}, + [273] = {.lex_state = 315}, + [274] = {.lex_state = 315}, + [275] = {.lex_state = 315}, + [276] = {.lex_state = 315}, + [277] = {.lex_state = 315}, + [278] = {.lex_state = 315}, + [279] = {.lex_state = 315}, + [280] = {.lex_state = 315}, + [281] = {.lex_state = 315}, + [282] = {.lex_state = 315}, + [283] = {.lex_state = 315}, + [284] = {.lex_state = 315}, + [285] = {.lex_state = 315}, + [286] = {.lex_state = 313}, + [287] = {.lex_state = 315}, + [288] = {.lex_state = 313}, + [289] = {.lex_state = 315}, + [290] = {.lex_state = 315}, + [291] = {.lex_state = 315}, + [292] = {.lex_state = 315}, + [293] = {.lex_state = 315}, + [294] = {.lex_state = 315}, + [295] = {.lex_state = 315}, + [296] = {.lex_state = 315}, + [297] = {.lex_state = 313}, + [298] = {.lex_state = 313}, + [299] = {.lex_state = 315}, + [300] = {.lex_state = 315}, + [301] = {.lex_state = 315}, + [302] = {.lex_state = 315}, + [303] = {.lex_state = 315}, + [304] = {.lex_state = 315}, + [305] = {.lex_state = 315}, + [306] = {.lex_state = 315}, + [307] = {.lex_state = 315}, + [308] = {.lex_state = 315}, + [309] = {.lex_state = 315}, + [310] = {.lex_state = 315}, + [311] = {.lex_state = 315}, + [312] = {.lex_state = 315}, + [313] = {.lex_state = 313}, + [314] = {.lex_state = 315}, + [315] = {.lex_state = 315}, + [316] = {.lex_state = 315}, + [317] = {.lex_state = 313}, + [318] = {.lex_state = 315}, + [319] = {.lex_state = 315}, + [320] = {.lex_state = 315}, + [321] = {.lex_state = 315}, + [322] = {.lex_state = 315}, + [323] = {.lex_state = 315}, + [324] = {.lex_state = 315}, + [325] = {.lex_state = 313}, + [326] = {.lex_state = 315}, + [327] = {.lex_state = 315}, + [328] = {.lex_state = 315}, + [329] = {.lex_state = 315}, + [330] = {.lex_state = 315}, + [331] = {.lex_state = 313}, + [332] = {.lex_state = 315}, + [333] = {.lex_state = 315}, + [334] = {.lex_state = 315}, + [335] = {.lex_state = 313}, + [336] = {.lex_state = 313}, + [337] = {.lex_state = 313}, + [338] = {.lex_state = 313}, + [339] = {.lex_state = 313}, + [340] = {.lex_state = 313}, + [341] = {.lex_state = 313}, + [342] = {.lex_state = 313}, + [343] = {.lex_state = 313}, + [344] = {.lex_state = 313}, + [345] = {.lex_state = 313}, + [346] = {.lex_state = 313}, + [347] = {.lex_state = 313}, + [348] = {.lex_state = 313}, + [349] = {.lex_state = 313}, + [350] = {.lex_state = 313}, + [351] = {.lex_state = 313}, + [352] = {.lex_state = 313}, + [353] = {.lex_state = 313}, + [354] = {.lex_state = 313}, + [355] = {.lex_state = 313}, + [356] = {.lex_state = 313}, + [357] = {.lex_state = 313}, + [358] = {.lex_state = 313}, + [359] = {.lex_state = 313}, + [360] = {.lex_state = 313}, + [361] = {.lex_state = 313}, + [362] = {.lex_state = 313}, + [363] = {.lex_state = 313}, + [364] = {.lex_state = 313}, + [365] = {.lex_state = 313}, + [366] = {.lex_state = 313}, + [367] = {.lex_state = 313}, + [368] = {.lex_state = 313}, + [369] = {.lex_state = 313}, + [370] = {.lex_state = 313}, + [371] = {.lex_state = 313}, + [372] = {.lex_state = 313}, + [373] = {.lex_state = 313}, + [374] = {.lex_state = 313}, + [375] = {.lex_state = 313}, + [376] = {.lex_state = 313}, + [377] = {.lex_state = 313}, + [378] = {.lex_state = 313}, + [379] = {.lex_state = 313}, + [380] = {.lex_state = 313}, + [381] = {.lex_state = 313}, + [382] = {.lex_state = 313}, + [383] = {.lex_state = 313}, + [384] = {.lex_state = 313}, + [385] = {.lex_state = 313}, + [386] = {.lex_state = 313}, + [387] = {.lex_state = 313}, + [388] = {.lex_state = 313}, + [389] = {.lex_state = 313}, + [390] = {.lex_state = 313}, + [391] = {.lex_state = 313}, + [392] = {.lex_state = 313}, + [393] = {.lex_state = 313}, + [394] = {.lex_state = 313}, + [395] = {.lex_state = 313}, + [396] = {.lex_state = 313}, + [397] = {.lex_state = 313}, + [398] = {.lex_state = 313}, + [399] = {.lex_state = 313}, + [400] = {.lex_state = 313}, + [401] = {.lex_state = 313}, + [402] = {.lex_state = 313}, + [403] = {.lex_state = 313}, + [404] = {.lex_state = 313}, + [405] = {.lex_state = 313}, + [406] = {.lex_state = 313}, + [407] = {.lex_state = 313}, + [408] = {.lex_state = 313}, + [409] = {.lex_state = 313}, + [410] = {.lex_state = 313}, + [411] = {.lex_state = 313}, + [412] = {.lex_state = 313}, + [413] = {.lex_state = 313}, + [414] = {.lex_state = 313}, + [415] = {.lex_state = 313}, + [416] = {.lex_state = 313}, + [417] = {.lex_state = 313}, + [418] = {.lex_state = 313}, + [419] = {.lex_state = 313}, + [420] = {.lex_state = 313}, + [421] = {.lex_state = 313}, + [422] = {.lex_state = 313}, + [423] = {.lex_state = 313}, + [424] = {.lex_state = 313}, + [425] = {.lex_state = 313}, + [426] = {.lex_state = 328}, + [427] = {.lex_state = 313}, + [428] = {.lex_state = 313}, + [429] = {.lex_state = 313}, + [430] = {.lex_state = 313}, + [431] = {.lex_state = 313}, + [432] = {.lex_state = 313}, + [433] = {.lex_state = 334}, + [434] = {.lex_state = 313}, + [435] = {.lex_state = 313}, + [436] = {.lex_state = 313}, + [437] = {.lex_state = 313}, + [438] = {.lex_state = 313}, + [439] = {.lex_state = 313}, + [440] = {.lex_state = 313}, + [441] = {.lex_state = 313}, + [442] = {.lex_state = 313}, + [443] = {.lex_state = 313}, + [444] = {.lex_state = 313}, + [445] = {.lex_state = 313}, + [446] = {.lex_state = 313}, + [447] = {.lex_state = 313}, + [448] = {.lex_state = 313}, + [449] = {.lex_state = 313}, + [450] = {.lex_state = 313}, + [451] = {.lex_state = 313}, + [452] = {.lex_state = 313}, + [453] = {.lex_state = 334}, + [454] = {.lex_state = 334}, + [455] = {.lex_state = 334}, + [456] = {.lex_state = 313}, + [457] = {.lex_state = 334}, + [458] = {.lex_state = 334}, + [459] = {.lex_state = 334}, + [460] = {.lex_state = 334}, + [461] = {.lex_state = 313}, + [462] = {.lex_state = 334}, + [463] = {.lex_state = 334}, + [464] = {.lex_state = 334}, + [465] = {.lex_state = 334}, + [466] = {.lex_state = 334}, + [467] = {.lex_state = 334}, + [468] = {.lex_state = 334}, + [469] = {.lex_state = 334}, + [470] = {.lex_state = 334}, + [471] = {.lex_state = 334}, + [472] = {.lex_state = 334}, + [473] = {.lex_state = 334}, + [474] = {.lex_state = 334}, + [475] = {.lex_state = 334}, + [476] = {.lex_state = 334}, + [477] = {.lex_state = 334}, + [478] = {.lex_state = 334}, + [479] = {.lex_state = 334}, + [480] = {.lex_state = 334}, + [481] = {.lex_state = 334}, + [482] = {.lex_state = 334}, + [483] = {.lex_state = 334}, + [484] = {.lex_state = 334}, + [485] = {.lex_state = 334}, + [486] = {.lex_state = 313}, + [487] = {.lex_state = 334}, + [488] = {.lex_state = 334}, + [489] = {.lex_state = 334}, + [490] = {.lex_state = 334}, + [491] = {.lex_state = 334}, + [492] = {.lex_state = 334}, + [493] = {.lex_state = 334}, + [494] = {.lex_state = 334}, + [495] = {.lex_state = 334}, + [496] = {.lex_state = 334}, + [497] = {.lex_state = 334}, + [498] = {.lex_state = 334}, + [499] = {.lex_state = 334}, + [500] = {.lex_state = 334}, + [501] = {.lex_state = 334}, + [502] = {.lex_state = 334}, + [503] = {.lex_state = 334}, + [504] = {.lex_state = 334}, + [505] = {.lex_state = 328}, + [506] = {.lex_state = 26}, [507] = {.lex_state = 327}, - [508] = {.lex_state = 324}, - [509] = {.lex_state = 26}, + [508] = {.lex_state = 327}, + [509] = {.lex_state = 327}, [510] = {.lex_state = 26}, - [511] = {.lex_state = 325}, - [512] = {.lex_state = 326}, - [513] = {.lex_state = 324}, - [514] = {.lex_state = 336}, - [515] = {.lex_state = 324}, - [516] = {.lex_state = 324}, - [517] = {.lex_state = 324}, - [518] = {.lex_state = 324}, - [519] = {.lex_state = 324}, - [520] = {.lex_state = 336}, - [521] = {.lex_state = 324}, - [522] = {.lex_state = 327}, - [523] = {.lex_state = 324}, - [524] = {.lex_state = 324}, - [525] = {.lex_state = 336}, - [526] = {.lex_state = 336}, - [527] = {.lex_state = 324}, - [528] = {.lex_state = 324}, - [529] = {.lex_state = 324}, - [530] = {.lex_state = 324}, - [531] = {.lex_state = 324}, - [532] = {.lex_state = 324}, - [533] = {.lex_state = 324}, - [534] = {.lex_state = 324}, - [535] = {.lex_state = 26}, - [536] = {.lex_state = 333}, - [537] = {.lex_state = 327}, - [538] = {.lex_state = 324}, - [539] = {.lex_state = 324}, - [540] = {.lex_state = 326}, - [541] = {.lex_state = 324}, - [542] = {.lex_state = 333}, - [543] = {.lex_state = 333}, - [544] = {.lex_state = 324}, - [545] = {.lex_state = 324}, - [546] = {.lex_state = 324}, - [547] = {.lex_state = 324}, - [548] = {.lex_state = 324}, - [549] = {.lex_state = 336}, - [550] = {.lex_state = 324}, - [551] = {.lex_state = 324}, - [552] = {.lex_state = 324}, - [553] = {.lex_state = 324}, - [554] = {.lex_state = 324}, - [555] = {.lex_state = 324}, - [556] = {.lex_state = 327}, - [557] = {.lex_state = 324}, - [558] = {.lex_state = 324}, - [559] = {.lex_state = 324}, - [560] = {.lex_state = 324}, - [561] = {.lex_state = 324}, - [562] = {.lex_state = 324}, - [563] = {.lex_state = 326}, - [564] = {.lex_state = 324}, - [565] = {.lex_state = 324}, - [566] = {.lex_state = 326}, - [567] = {.lex_state = 324}, - [568] = {.lex_state = 324}, - [569] = {.lex_state = 324}, - [570] = {.lex_state = 324}, - [571] = {.lex_state = 324}, - [572] = {.lex_state = 26}, - [573] = {.lex_state = 333}, - [574] = {.lex_state = 324}, - [575] = {.lex_state = 333}, - [576] = {.lex_state = 336}, - [577] = {.lex_state = 333}, - [578] = {.lex_state = 333}, - [579] = {.lex_state = 333}, - [580] = {.lex_state = 333}, - [581] = {.lex_state = 324}, - [582] = {.lex_state = 333}, - [583] = {.lex_state = 324}, - [584] = {.lex_state = 333}, - [585] = {.lex_state = 324}, - [586] = {.lex_state = 333}, - [587] = {.lex_state = 333}, - [588] = {.lex_state = 324}, - [589] = {.lex_state = 324}, - [590] = {.lex_state = 333}, - [591] = {.lex_state = 333}, - [592] = {.lex_state = 324}, - [593] = {.lex_state = 324}, - [594] = {.lex_state = 333}, - [595] = {.lex_state = 324}, - [596] = {.lex_state = 324}, - [597] = {.lex_state = 324}, - [598] = {.lex_state = 324}, - [599] = {.lex_state = 333}, - [600] = {.lex_state = 324}, - [601] = {.lex_state = 336}, - [602] = {.lex_state = 324}, - [603] = {.lex_state = 333}, - [604] = {.lex_state = 324}, - [605] = {.lex_state = 324}, - [606] = {.lex_state = 333}, - [607] = {.lex_state = 333}, - [608] = {.lex_state = 336}, - [609] = {.lex_state = 324}, - [610] = {.lex_state = 324}, - [611] = {.lex_state = 324}, - [612] = {.lex_state = 324}, - [613] = {.lex_state = 333}, - [614] = {.lex_state = 324}, - [615] = {.lex_state = 333}, - [616] = {.lex_state = 333}, - [617] = {.lex_state = 324}, - [618] = {.lex_state = 324}, - [619] = {.lex_state = 324}, - [620] = {.lex_state = 333}, - [621] = {.lex_state = 324}, - [622] = {.lex_state = 333}, - [623] = {.lex_state = 324}, - [624] = {.lex_state = 324}, - [625] = {.lex_state = 324}, - [626] = {.lex_state = 333}, - [627] = {.lex_state = 336}, - [628] = {.lex_state = 333}, - [629] = {.lex_state = 333}, - [630] = {.lex_state = 336}, - [631] = {.lex_state = 333}, - [632] = {.lex_state = 333}, - [633] = {.lex_state = 324}, - [634] = {.lex_state = 324}, - [635] = {.lex_state = 333}, - [636] = {.lex_state = 324}, - [637] = {.lex_state = 333}, - [638] = {.lex_state = 333}, - [639] = {.lex_state = 333}, - [640] = {.lex_state = 333}, - [641] = {.lex_state = 324}, - [642] = {.lex_state = 333}, - [643] = {.lex_state = 333}, - [644] = {.lex_state = 333}, - [645] = {.lex_state = 324}, - [646] = {.lex_state = 324}, - [647] = {.lex_state = 324}, - [648] = {.lex_state = 324}, - [649] = {.lex_state = 324}, - [650] = {.lex_state = 324}, - [651] = {.lex_state = 324}, - [652] = {.lex_state = 324}, - [653] = {.lex_state = 324}, - [654] = {.lex_state = 324}, - [655] = {.lex_state = 333}, - [656] = {.lex_state = 324}, - [657] = {.lex_state = 324}, - [658] = {.lex_state = 324}, - [659] = {.lex_state = 324}, - [660] = {.lex_state = 338}, - [661] = {.lex_state = 333}, - [662] = {.lex_state = 333}, - [663] = {.lex_state = 333}, - [664] = {.lex_state = 333}, - [665] = {.lex_state = 333}, - [666] = {.lex_state = 333}, - [667] = {.lex_state = 333}, - [668] = {.lex_state = 333}, - [669] = {.lex_state = 333}, - [670] = {.lex_state = 333}, - [671] = {.lex_state = 333}, - [672] = {.lex_state = 333}, - [673] = {.lex_state = 333}, - [674] = {.lex_state = 333}, - [675] = {.lex_state = 333}, - [676] = {.lex_state = 333}, - [677] = {.lex_state = 333}, - [678] = {.lex_state = 333}, - [679] = {.lex_state = 333}, - [680] = {.lex_state = 333}, - [681] = {.lex_state = 333}, - [682] = {.lex_state = 333}, - [683] = {.lex_state = 333}, - [684] = {.lex_state = 339}, - [685] = {.lex_state = 333}, - [686] = {.lex_state = 333}, - [687] = {.lex_state = 333}, - [688] = {.lex_state = 333}, - [689] = {.lex_state = 333}, - [690] = {.lex_state = 333}, - [691] = {.lex_state = 333}, - [692] = {.lex_state = 333}, - [693] = {.lex_state = 333}, - [694] = {.lex_state = 333}, - [695] = {.lex_state = 333}, - [696] = {.lex_state = 333}, - [697] = {.lex_state = 336}, - [698] = {.lex_state = 333}, - [699] = {.lex_state = 327}, - [700] = {.lex_state = 339}, - [701] = {.lex_state = 333}, - [702] = {.lex_state = 333}, - [703] = {.lex_state = 327}, - [704] = {.lex_state = 336}, - [705] = {.lex_state = 333}, - [706] = {.lex_state = 327}, - [707] = {.lex_state = 333}, - [708] = {.lex_state = 343}, - [709] = {.lex_state = 336}, - [710] = {.lex_state = 343}, - [711] = {.lex_state = 327}, - [712] = {.lex_state = 327}, - [713] = {.lex_state = 333}, - [714] = {.lex_state = 343}, - [715] = {.lex_state = 343}, - [716] = {.lex_state = 341}, - [717] = {.lex_state = 333}, - [718] = {.lex_state = 327}, - [719] = {.lex_state = 327}, - [720] = {.lex_state = 343}, - [721] = {.lex_state = 327}, - [722] = {.lex_state = 333}, - [723] = {.lex_state = 338}, - [724] = {.lex_state = 333}, - [725] = {.lex_state = 333}, - [726] = {.lex_state = 333}, - [727] = {.lex_state = 327}, - [728] = {.lex_state = 343}, - [729] = {.lex_state = 343}, - [730] = {.lex_state = 333}, - [731] = {.lex_state = 333}, - [732] = {.lex_state = 343}, - [733] = {.lex_state = 333}, - [734] = {.lex_state = 330}, - [735] = {.lex_state = 336}, - [736] = {.lex_state = 333}, - [737] = {.lex_state = 327}, - [738] = {.lex_state = 327}, - [739] = {.lex_state = 327}, - [740] = {.lex_state = 329}, - [741] = {.lex_state = 343}, - [742] = {.lex_state = 327}, - [743] = {.lex_state = 343}, - [744] = {.lex_state = 333}, - [745] = {.lex_state = 327}, - [746] = {.lex_state = 343}, - [747] = {.lex_state = 327}, - [748] = {.lex_state = 327}, - [749] = {.lex_state = 329}, - [750] = {.lex_state = 343}, - [751] = {.lex_state = 343}, - [752] = {.lex_state = 330}, - [753] = {.lex_state = 327}, - [754] = {.lex_state = 327}, - [755] = {.lex_state = 336}, - [756] = {.lex_state = 327}, - [757] = {.lex_state = 343}, - [758] = {.lex_state = 330}, - [759] = {.lex_state = 336}, - [760] = {.lex_state = 329}, - [761] = {.lex_state = 327}, - [762] = {.lex_state = 343}, - [763] = {.lex_state = 341}, - [764] = {.lex_state = 332}, - [765] = {.lex_state = 327}, - [766] = {.lex_state = 327}, - [767] = {.lex_state = 327}, - [768] = {.lex_state = 327}, - [769] = {.lex_state = 327}, - [770] = {.lex_state = 329}, - [771] = {.lex_state = 327}, - [772] = {.lex_state = 327}, - [773] = {.lex_state = 327}, - [774] = {.lex_state = 327}, - [775] = {.lex_state = 327}, - [776] = {.lex_state = 327}, - [777] = {.lex_state = 327}, - [778] = {.lex_state = 327}, - [779] = {.lex_state = 327}, - [780] = {.lex_state = 327}, - [781] = {.lex_state = 330}, - [782] = {.lex_state = 327}, - [783] = {.lex_state = 327}, - [784] = {.lex_state = 330}, - [785] = {.lex_state = 327}, - [786] = {.lex_state = 327}, - [787] = {.lex_state = 327}, - [788] = {.lex_state = 327}, - [789] = {.lex_state = 330}, - [790] = {.lex_state = 343}, - [791] = {.lex_state = 327}, - [792] = {.lex_state = 327}, - [793] = {.lex_state = 327}, - [794] = {.lex_state = 327}, - [795] = {.lex_state = 327}, - [796] = {.lex_state = 327}, - [797] = {.lex_state = 327}, - [798] = {.lex_state = 327}, - [799] = {.lex_state = 327}, - [800] = {.lex_state = 327}, - [801] = {.lex_state = 343}, - [802] = {.lex_state = 343}, - [803] = {.lex_state = 327}, - [804] = {.lex_state = 343}, - [805] = {.lex_state = 327}, - [806] = {.lex_state = 327}, - [807] = {.lex_state = 327}, - [808] = {.lex_state = 329}, - [809] = {.lex_state = 327}, - [810] = {.lex_state = 327}, - [811] = {.lex_state = 332}, - [812] = {.lex_state = 327}, - [813] = {.lex_state = 327}, - [814] = {.lex_state = 327}, - [815] = {.lex_state = 329}, - [816] = {.lex_state = 327}, - [817] = {.lex_state = 327}, - [818] = {.lex_state = 327}, - [819] = {.lex_state = 327}, - [820] = {.lex_state = 327}, - [821] = {.lex_state = 327}, - [822] = {.lex_state = 327}, - [823] = {.lex_state = 327}, - [824] = {.lex_state = 327}, - [825] = {.lex_state = 327}, - [826] = {.lex_state = 327}, - [827] = {.lex_state = 327}, - [828] = {.lex_state = 327}, - [829] = {.lex_state = 327}, - [830] = {.lex_state = 327}, - [831] = {.lex_state = 327}, - [832] = {.lex_state = 327}, - [833] = {.lex_state = 327}, - [834] = {.lex_state = 327}, - [835] = {.lex_state = 327}, - [836] = {.lex_state = 327}, - [837] = {.lex_state = 327}, - [838] = {.lex_state = 327}, - [839] = {.lex_state = 327}, - [840] = {.lex_state = 327}, - [841] = {.lex_state = 327}, - [842] = {.lex_state = 327}, - [843] = {.lex_state = 327}, - [844] = {.lex_state = 327}, - [845] = {.lex_state = 327}, - [846] = {.lex_state = 327}, - [847] = {.lex_state = 327}, - [848] = {.lex_state = 327}, - [849] = {.lex_state = 327}, - [850] = {.lex_state = 327}, - [851] = {.lex_state = 327}, - [852] = {.lex_state = 327}, - [853] = {.lex_state = 327}, - [854] = {.lex_state = 327}, - [855] = {.lex_state = 327}, - [856] = {.lex_state = 327}, - [857] = {.lex_state = 327}, - [858] = {.lex_state = 327}, - [859] = {.lex_state = 327}, - [860] = {.lex_state = 327}, - [861] = {.lex_state = 327}, - [862] = {.lex_state = 327}, - [863] = {.lex_state = 327}, - [864] = {.lex_state = 327}, - [865] = {.lex_state = 327}, - [866] = {.lex_state = 327}, - [867] = {.lex_state = 327}, - [868] = {.lex_state = 327}, - [869] = {.lex_state = 327}, - [870] = {.lex_state = 327}, - [871] = {.lex_state = 327}, - [872] = {.lex_state = 327}, - [873] = {.lex_state = 327}, - [874] = {.lex_state = 327}, - [875] = {.lex_state = 327}, - [876] = {.lex_state = 327}, - [877] = {.lex_state = 327}, - [878] = {.lex_state = 327}, - [879] = {.lex_state = 327}, - [880] = {.lex_state = 327}, - [881] = {.lex_state = 327}, - [882] = {.lex_state = 327}, - [883] = {.lex_state = 327}, - [884] = {.lex_state = 327}, - [885] = {.lex_state = 327}, - [886] = {.lex_state = 327}, - [887] = {.lex_state = 327}, - [888] = {.lex_state = 327}, - [889] = {.lex_state = 327}, - [890] = {.lex_state = 327}, - [891] = {.lex_state = 327}, - [892] = {.lex_state = 327}, - [893] = {.lex_state = 327}, - [894] = {.lex_state = 327}, - [895] = {.lex_state = 327}, - [896] = {.lex_state = 327}, - [897] = {.lex_state = 327}, - [898] = {.lex_state = 327}, - [899] = {.lex_state = 327}, - [900] = {.lex_state = 327}, - [901] = {.lex_state = 327}, - [902] = {.lex_state = 327}, - [903] = {.lex_state = 327}, - [904] = {.lex_state = 327}, - [905] = {.lex_state = 327}, - [906] = {.lex_state = 327}, - [907] = {.lex_state = 327}, - [908] = {.lex_state = 327}, - [909] = {.lex_state = 327}, - [910] = {.lex_state = 327}, - [911] = {.lex_state = 327}, - [912] = {.lex_state = 327}, - [913] = {.lex_state = 327}, - [914] = {.lex_state = 327}, - [915] = {.lex_state = 327}, - [916] = {.lex_state = 327}, - [917] = {.lex_state = 327}, - [918] = {.lex_state = 327}, - [919] = {.lex_state = 327}, - [920] = {.lex_state = 327}, - [921] = {.lex_state = 327}, - [922] = {.lex_state = 327}, - [923] = {.lex_state = 327}, - [924] = {.lex_state = 327}, - [925] = {.lex_state = 327}, - [926] = {.lex_state = 327}, - [927] = {.lex_state = 327}, - [928] = {.lex_state = 327}, - [929] = {.lex_state = 327}, - [930] = {.lex_state = 327}, - [931] = {.lex_state = 327}, - [932] = {.lex_state = 327}, - [933] = {.lex_state = 327}, - [934] = {.lex_state = 327}, - [935] = {.lex_state = 327}, - [936] = {.lex_state = 327}, - [937] = {.lex_state = 327}, - [938] = {.lex_state = 327}, - [939] = {.lex_state = 327}, - [940] = {.lex_state = 327}, - [941] = {.lex_state = 327}, - [942] = {.lex_state = 327}, - [943] = {.lex_state = 327}, - [944] = {.lex_state = 327}, - [945] = {.lex_state = 327}, - [946] = {.lex_state = 327}, - [947] = {.lex_state = 327}, - [948] = {.lex_state = 327}, - [949] = {.lex_state = 327}, - [950] = {.lex_state = 327}, - [951] = {.lex_state = 327}, - [952] = {.lex_state = 327}, - [953] = {.lex_state = 327}, - [954] = {.lex_state = 327}, - [955] = {.lex_state = 327}, - [956] = {.lex_state = 327}, - [957] = {.lex_state = 4}, - [958] = {.lex_state = 327}, - [959] = {.lex_state = 327}, - [960] = {.lex_state = 327}, - [961] = {.lex_state = 327}, - [962] = {.lex_state = 327}, - [963] = {.lex_state = 327}, - [964] = {.lex_state = 327}, - [965] = {.lex_state = 327}, - [966] = {.lex_state = 327}, - [967] = {.lex_state = 327}, - [968] = {.lex_state = 327}, - [969] = {.lex_state = 327}, - [970] = {.lex_state = 327}, - [971] = {.lex_state = 327}, - [972] = {.lex_state = 327}, - [973] = {.lex_state = 327}, - [974] = {.lex_state = 327}, - [975] = {.lex_state = 327}, - [976] = {.lex_state = 327}, - [977] = {.lex_state = 327}, - [978] = {.lex_state = 327}, - [979] = {.lex_state = 327}, - [980] = {.lex_state = 327}, - [981] = {.lex_state = 327}, - [982] = {.lex_state = 327}, - [983] = {.lex_state = 327}, - [984] = {.lex_state = 327}, - [985] = {.lex_state = 327}, - [986] = {.lex_state = 327}, - [987] = {.lex_state = 327}, - [988] = {.lex_state = 327}, - [989] = {.lex_state = 327}, - [990] = {.lex_state = 327}, - [991] = {.lex_state = 327}, - [992] = {.lex_state = 327}, - [993] = {.lex_state = 327}, - [994] = {.lex_state = 327}, - [995] = {.lex_state = 327}, - [996] = {.lex_state = 327}, - [997] = {.lex_state = 327}, - [998] = {.lex_state = 327}, - [999] = {.lex_state = 327}, - [1000] = {.lex_state = 327}, - [1001] = {.lex_state = 327}, - [1002] = {.lex_state = 327}, - [1003] = {.lex_state = 327}, - [1004] = {.lex_state = 331}, - [1005] = {.lex_state = 327}, - [1006] = {.lex_state = 327}, - [1007] = {.lex_state = 4}, - [1008] = {.lex_state = 327}, - [1009] = {.lex_state = 327}, - [1010] = {.lex_state = 327}, - [1011] = {.lex_state = 327}, - [1012] = {.lex_state = 327}, - [1013] = {.lex_state = 327}, - [1014] = {.lex_state = 327}, - [1015] = {.lex_state = 327}, - [1016] = {.lex_state = 327}, - [1017] = {.lex_state = 327}, - [1018] = {.lex_state = 327}, - [1019] = {.lex_state = 327}, - [1020] = {.lex_state = 327}, - [1021] = {.lex_state = 327}, - [1022] = {.lex_state = 327}, - [1023] = {.lex_state = 327}, - [1024] = {.lex_state = 327}, - [1025] = {.lex_state = 327}, - [1026] = {.lex_state = 327}, - [1027] = {.lex_state = 4}, - [1028] = {.lex_state = 4}, - [1029] = {.lex_state = 327}, - [1030] = {.lex_state = 327}, - [1031] = {.lex_state = 327}, - [1032] = {.lex_state = 327}, - [1033] = {.lex_state = 327}, - [1034] = {.lex_state = 331}, - [1035] = {.lex_state = 327}, - [1036] = {.lex_state = 327}, - [1037] = {.lex_state = 327}, - [1038] = {.lex_state = 327}, - [1039] = {.lex_state = 327}, - [1040] = {.lex_state = 327}, - [1041] = {.lex_state = 327}, - [1042] = {.lex_state = 4}, - [1043] = {.lex_state = 327}, - [1044] = {.lex_state = 4}, - [1045] = {.lex_state = 327}, - [1046] = {.lex_state = 327}, - [1047] = {.lex_state = 327}, - [1048] = {.lex_state = 327}, - [1049] = {.lex_state = 327}, - [1050] = {.lex_state = 327}, - [1051] = {.lex_state = 327}, - [1052] = {.lex_state = 4}, - [1053] = {.lex_state = 327}, - [1054] = {.lex_state = 327}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 352}, - [1057] = {.lex_state = 4}, - [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 37}, - [1060] = {.lex_state = 5}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 4}, - [1064] = {.lex_state = 4}, - [1065] = {.lex_state = 4}, - [1066] = {.lex_state = 4}, - [1067] = {.lex_state = 5}, - [1068] = {.lex_state = 5}, - [1069] = {.lex_state = 5}, - [1070] = {.lex_state = 5}, - [1071] = {.lex_state = 4}, - [1072] = {.lex_state = 5}, - [1073] = {.lex_state = 5}, - [1074] = {.lex_state = 4}, - [1075] = {.lex_state = 4}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 4}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 4}, - [1081] = {.lex_state = 5}, - [1082] = {.lex_state = 5}, - [1083] = {.lex_state = 4}, + [511] = {.lex_state = 26}, + [512] = {.lex_state = 26}, + [513] = {.lex_state = 26}, + [514] = {.lex_state = 327}, + [515] = {.lex_state = 327}, + [516] = {.lex_state = 327}, + [517] = {.lex_state = 26}, + [518] = {.lex_state = 26}, + [519] = {.lex_state = 327}, + [520] = {.lex_state = 26}, + [521] = {.lex_state = 26}, + [522] = {.lex_state = 26}, + [523] = {.lex_state = 327}, + [524] = {.lex_state = 26}, + [525] = {.lex_state = 327}, + [526] = {.lex_state = 327}, + [527] = {.lex_state = 26}, + [528] = {.lex_state = 327}, + [529] = {.lex_state = 327}, + [530] = {.lex_state = 26}, + [531] = {.lex_state = 26}, + [532] = {.lex_state = 327}, + [533] = {.lex_state = 26}, + [534] = {.lex_state = 327}, + [535] = {.lex_state = 327}, + [536] = {.lex_state = 26}, + [537] = {.lex_state = 326}, + [538] = {.lex_state = 26}, + [539] = {.lex_state = 327}, + [540] = {.lex_state = 327}, + [541] = {.lex_state = 26}, + [542] = {.lex_state = 325}, + [543] = {.lex_state = 26}, + [544] = {.lex_state = 327}, + [545] = {.lex_state = 326}, + [546] = {.lex_state = 26}, + [547] = {.lex_state = 326}, + [548] = {.lex_state = 327}, + [549] = {.lex_state = 327}, + [550] = {.lex_state = 326}, + [551] = {.lex_state = 327}, + [552] = {.lex_state = 327}, + [553] = {.lex_state = 326}, + [554] = {.lex_state = 26}, + [555] = {.lex_state = 26}, + [556] = {.lex_state = 326}, + [557] = {.lex_state = 326}, + [558] = {.lex_state = 328}, + [559] = {.lex_state = 327}, + [560] = {.lex_state = 325}, + [561] = {.lex_state = 326}, + [562] = {.lex_state = 328}, + [563] = {.lex_state = 327}, + [564] = {.lex_state = 327}, + [565] = {.lex_state = 26}, + [566] = {.lex_state = 26}, + [567] = {.lex_state = 328}, + [568] = {.lex_state = 26}, + [569] = {.lex_state = 325}, + [570] = {.lex_state = 325}, + [571] = {.lex_state = 325}, + [572] = {.lex_state = 325}, + [573] = {.lex_state = 325}, + [574] = {.lex_state = 325}, + [575] = {.lex_state = 334}, + [576] = {.lex_state = 325}, + [577] = {.lex_state = 325}, + [578] = {.lex_state = 325}, + [579] = {.lex_state = 325}, + [580] = {.lex_state = 325}, + [581] = {.lex_state = 325}, + [582] = {.lex_state = 325}, + [583] = {.lex_state = 325}, + [584] = {.lex_state = 325}, + [585] = {.lex_state = 325}, + [586] = {.lex_state = 325}, + [587] = {.lex_state = 325}, + [588] = {.lex_state = 325}, + [589] = {.lex_state = 325}, + [590] = {.lex_state = 325}, + [591] = {.lex_state = 26}, + [592] = {.lex_state = 325}, + [593] = {.lex_state = 325}, + [594] = {.lex_state = 325}, + [595] = {.lex_state = 334}, + [596] = {.lex_state = 325}, + [597] = {.lex_state = 325}, + [598] = {.lex_state = 325}, + [599] = {.lex_state = 325}, + [600] = {.lex_state = 325}, + [601] = {.lex_state = 325}, + [602] = {.lex_state = 325}, + [603] = {.lex_state = 325}, + [604] = {.lex_state = 325}, + [605] = {.lex_state = 325}, + [606] = {.lex_state = 325}, + [607] = {.lex_state = 327}, + [608] = {.lex_state = 325}, + [609] = {.lex_state = 325}, + [610] = {.lex_state = 328}, + [611] = {.lex_state = 327}, + [612] = {.lex_state = 327}, + [613] = {.lex_state = 325}, + [614] = {.lex_state = 325}, + [615] = {.lex_state = 325}, + [616] = {.lex_state = 325}, + [617] = {.lex_state = 337}, + [618] = {.lex_state = 334}, + [619] = {.lex_state = 325}, + [620] = {.lex_state = 325}, + [621] = {.lex_state = 337}, + [622] = {.lex_state = 325}, + [623] = {.lex_state = 325}, + [624] = {.lex_state = 325}, + [625] = {.lex_state = 325}, + [626] = {.lex_state = 325}, + [627] = {.lex_state = 328}, + [628] = {.lex_state = 325}, + [629] = {.lex_state = 325}, + [630] = {.lex_state = 325}, + [631] = {.lex_state = 337}, + [632] = {.lex_state = 337}, + [633] = {.lex_state = 328}, + [634] = {.lex_state = 325}, + [635] = {.lex_state = 325}, + [636] = {.lex_state = 325}, + [637] = {.lex_state = 325}, + [638] = {.lex_state = 26}, + [639] = {.lex_state = 325}, + [640] = {.lex_state = 334}, + [641] = {.lex_state = 325}, + [642] = {.lex_state = 325}, + [643] = {.lex_state = 337}, + [644] = {.lex_state = 325}, + [645] = {.lex_state = 325}, + [646] = {.lex_state = 325}, + [647] = {.lex_state = 325}, + [648] = {.lex_state = 325}, + [649] = {.lex_state = 325}, + [650] = {.lex_state = 334}, + [651] = {.lex_state = 334}, + [652] = {.lex_state = 334}, + [653] = {.lex_state = 334}, + [654] = {.lex_state = 325}, + [655] = {.lex_state = 325}, + [656] = {.lex_state = 325}, + [657] = {.lex_state = 334}, + [658] = {.lex_state = 334}, + [659] = {.lex_state = 334}, + [660] = {.lex_state = 325}, + [661] = {.lex_state = 325}, + [662] = {.lex_state = 325}, + [663] = {.lex_state = 325}, + [664] = {.lex_state = 325}, + [665] = {.lex_state = 325}, + [666] = {.lex_state = 334}, + [667] = {.lex_state = 334}, + [668] = {.lex_state = 334}, + [669] = {.lex_state = 334}, + [670] = {.lex_state = 334}, + [671] = {.lex_state = 334}, + [672] = {.lex_state = 325}, + [673] = {.lex_state = 325}, + [674] = {.lex_state = 334}, + [675] = {.lex_state = 334}, + [676] = {.lex_state = 334}, + [677] = {.lex_state = 334}, + [678] = {.lex_state = 334}, + [679] = {.lex_state = 325}, + [680] = {.lex_state = 337}, + [681] = {.lex_state = 334}, + [682] = {.lex_state = 334}, + [683] = {.lex_state = 334}, + [684] = {.lex_state = 334}, + [685] = {.lex_state = 334}, + [686] = {.lex_state = 325}, + [687] = {.lex_state = 334}, + [688] = {.lex_state = 334}, + [689] = {.lex_state = 334}, + [690] = {.lex_state = 334}, + [691] = {.lex_state = 334}, + [692] = {.lex_state = 325}, + [693] = {.lex_state = 325}, + [694] = {.lex_state = 325}, + [695] = {.lex_state = 325}, + [696] = {.lex_state = 325}, + [697] = {.lex_state = 334}, + [698] = {.lex_state = 325}, + [699] = {.lex_state = 325}, + [700] = {.lex_state = 325}, + [701] = {.lex_state = 325}, + [702] = {.lex_state = 334}, + [703] = {.lex_state = 325}, + [704] = {.lex_state = 325}, + [705] = {.lex_state = 325}, + [706] = {.lex_state = 325}, + [707] = {.lex_state = 325}, + [708] = {.lex_state = 337}, + [709] = {.lex_state = 325}, + [710] = {.lex_state = 325}, + [711] = {.lex_state = 325}, + [712] = {.lex_state = 325}, + [713] = {.lex_state = 325}, + [714] = {.lex_state = 325}, + [715] = {.lex_state = 325}, + [716] = {.lex_state = 334}, + [717] = {.lex_state = 325}, + [718] = {.lex_state = 325}, + [719] = {.lex_state = 334}, + [720] = {.lex_state = 325}, + [721] = {.lex_state = 325}, + [722] = {.lex_state = 325}, + [723] = {.lex_state = 325}, + [724] = {.lex_state = 337}, + [725] = {.lex_state = 337}, + [726] = {.lex_state = 325}, + [727] = {.lex_state = 325}, + [728] = {.lex_state = 325}, + [729] = {.lex_state = 325}, + [730] = {.lex_state = 334}, + [731] = {.lex_state = 337}, + [732] = {.lex_state = 325}, + [733] = {.lex_state = 325}, + [734] = {.lex_state = 325}, + [735] = {.lex_state = 334}, + [736] = {.lex_state = 334}, + [737] = {.lex_state = 325}, + [738] = {.lex_state = 325}, + [739] = {.lex_state = 325}, + [740] = {.lex_state = 325}, + [741] = {.lex_state = 325}, + [742] = {.lex_state = 325}, + [743] = {.lex_state = 325}, + [744] = {.lex_state = 334}, + [745] = {.lex_state = 339}, + [746] = {.lex_state = 334}, + [747] = {.lex_state = 334}, + [748] = {.lex_state = 334}, + [749] = {.lex_state = 334}, + [750] = {.lex_state = 334}, + [751] = {.lex_state = 340}, + [752] = {.lex_state = 334}, + [753] = {.lex_state = 334}, + [754] = {.lex_state = 334}, + [755] = {.lex_state = 334}, + [756] = {.lex_state = 334}, + [757] = {.lex_state = 334}, + [758] = {.lex_state = 334}, + [759] = {.lex_state = 334}, + [760] = {.lex_state = 334}, + [761] = {.lex_state = 334}, + [762] = {.lex_state = 334}, + [763] = {.lex_state = 334}, + [764] = {.lex_state = 334}, + [765] = {.lex_state = 334}, + [766] = {.lex_state = 334}, + [767] = {.lex_state = 334}, + [768] = {.lex_state = 334}, + [769] = {.lex_state = 334}, + [770] = {.lex_state = 334}, + [771] = {.lex_state = 334}, + [772] = {.lex_state = 334}, + [773] = {.lex_state = 334}, + [774] = {.lex_state = 334}, + [775] = {.lex_state = 334}, + [776] = {.lex_state = 334}, + [777] = {.lex_state = 334}, + [778] = {.lex_state = 334}, + [779] = {.lex_state = 334}, + [780] = {.lex_state = 328}, + [781] = {.lex_state = 334}, + [782] = {.lex_state = 334}, + [783] = {.lex_state = 334}, + [784] = {.lex_state = 344}, + [785] = {.lex_state = 337}, + [786] = {.lex_state = 340}, + [787] = {.lex_state = 344}, + [788] = {.lex_state = 334}, + [789] = {.lex_state = 342}, + [790] = {.lex_state = 328}, + [791] = {.lex_state = 344}, + [792] = {.lex_state = 337}, + [793] = {.lex_state = 334}, + [794] = {.lex_state = 328}, + [795] = {.lex_state = 334}, + [796] = {.lex_state = 334}, + [797] = {.lex_state = 344}, + [798] = {.lex_state = 334}, + [799] = {.lex_state = 337}, + [800] = {.lex_state = 328}, + [801] = {.lex_state = 334}, + [802] = {.lex_state = 334}, + [803] = {.lex_state = 328}, + [804] = {.lex_state = 328}, + [805] = {.lex_state = 339}, + [806] = {.lex_state = 344}, + [807] = {.lex_state = 328}, + [808] = {.lex_state = 328}, + [809] = {.lex_state = 331}, + [810] = {.lex_state = 328}, + [811] = {.lex_state = 330}, + [812] = {.lex_state = 328}, + [813] = {.lex_state = 334}, + [814] = {.lex_state = 328}, + [815] = {.lex_state = 328}, + [816] = {.lex_state = 330}, + [817] = {.lex_state = 328}, + [818] = {.lex_state = 328}, + [819] = {.lex_state = 344}, + [820] = {.lex_state = 337}, + [821] = {.lex_state = 344}, + [822] = {.lex_state = 344}, + [823] = {.lex_state = 337}, + [824] = {.lex_state = 328}, + [825] = {.lex_state = 328}, + [826] = {.lex_state = 331}, + [827] = {.lex_state = 344}, + [828] = {.lex_state = 344}, + [829] = {.lex_state = 334}, + [830] = {.lex_state = 344}, + [831] = {.lex_state = 334}, + [832] = {.lex_state = 331}, + [833] = {.lex_state = 344}, + [834] = {.lex_state = 330}, + [835] = {.lex_state = 337}, + [836] = {.lex_state = 344}, + [837] = {.lex_state = 334}, + [838] = {.lex_state = 334}, + [839] = {.lex_state = 334}, + [840] = {.lex_state = 333}, + [841] = {.lex_state = 344}, + [842] = {.lex_state = 328}, + [843] = {.lex_state = 328}, + [844] = {.lex_state = 334}, + [845] = {.lex_state = 342}, + [846] = {.lex_state = 328}, + [847] = {.lex_state = 328}, + [848] = {.lex_state = 344}, + [849] = {.lex_state = 328}, + [850] = {.lex_state = 328}, + [851] = {.lex_state = 328}, + [852] = {.lex_state = 328}, + [853] = {.lex_state = 344}, + [854] = {.lex_state = 331}, + [855] = {.lex_state = 328}, + [856] = {.lex_state = 328}, + [857] = {.lex_state = 331}, + [858] = {.lex_state = 328}, + [859] = {.lex_state = 330}, + [860] = {.lex_state = 328}, + [861] = {.lex_state = 328}, + [862] = {.lex_state = 328}, + [863] = {.lex_state = 328}, + [864] = {.lex_state = 328}, + [865] = {.lex_state = 328}, + [866] = {.lex_state = 328}, + [867] = {.lex_state = 328}, + [868] = {.lex_state = 328}, + [869] = {.lex_state = 328}, + [870] = {.lex_state = 328}, + [871] = {.lex_state = 328}, + [872] = {.lex_state = 328}, + [873] = {.lex_state = 328}, + [874] = {.lex_state = 328}, + [875] = {.lex_state = 344}, + [876] = {.lex_state = 328}, + [877] = {.lex_state = 328}, + [878] = {.lex_state = 328}, + [879] = {.lex_state = 328}, + [880] = {.lex_state = 328}, + [881] = {.lex_state = 328}, + [882] = {.lex_state = 328}, + [883] = {.lex_state = 328}, + [884] = {.lex_state = 328}, + [885] = {.lex_state = 328}, + [886] = {.lex_state = 328}, + [887] = {.lex_state = 328}, + [888] = {.lex_state = 328}, + [889] = {.lex_state = 328}, + [890] = {.lex_state = 330}, + [891] = {.lex_state = 328}, + [892] = {.lex_state = 344}, + [893] = {.lex_state = 328}, + [894] = {.lex_state = 330}, + [895] = {.lex_state = 333}, + [896] = {.lex_state = 344}, + [897] = {.lex_state = 328}, + [898] = {.lex_state = 328}, + [899] = {.lex_state = 328}, + [900] = {.lex_state = 328}, + [901] = {.lex_state = 331}, + [902] = {.lex_state = 328}, + [903] = {.lex_state = 328}, + [904] = {.lex_state = 328}, + [905] = {.lex_state = 328}, + [906] = {.lex_state = 328}, + [907] = {.lex_state = 328}, + [908] = {.lex_state = 328}, + [909] = {.lex_state = 328}, + [910] = {.lex_state = 328}, + [911] = {.lex_state = 328}, + [912] = {.lex_state = 328}, + [913] = {.lex_state = 328}, + [914] = {.lex_state = 328}, + [915] = {.lex_state = 328}, + [916] = {.lex_state = 328}, + [917] = {.lex_state = 328}, + [918] = {.lex_state = 328}, + [919] = {.lex_state = 328}, + [920] = {.lex_state = 328}, + [921] = {.lex_state = 328}, + [922] = {.lex_state = 328}, + [923] = {.lex_state = 328}, + [924] = {.lex_state = 328}, + [925] = {.lex_state = 328}, + [926] = {.lex_state = 328}, + [927] = {.lex_state = 328}, + [928] = {.lex_state = 328}, + [929] = {.lex_state = 328}, + [930] = {.lex_state = 328}, + [931] = {.lex_state = 328}, + [932] = {.lex_state = 328}, + [933] = {.lex_state = 328}, + [934] = {.lex_state = 328}, + [935] = {.lex_state = 328}, + [936] = {.lex_state = 328}, + [937] = {.lex_state = 328}, + [938] = {.lex_state = 328}, + [939] = {.lex_state = 328}, + [940] = {.lex_state = 328}, + [941] = {.lex_state = 328}, + [942] = {.lex_state = 328}, + [943] = {.lex_state = 328}, + [944] = {.lex_state = 328}, + [945] = {.lex_state = 328}, + [946] = {.lex_state = 328}, + [947] = {.lex_state = 328}, + [948] = {.lex_state = 328}, + [949] = {.lex_state = 328}, + [950] = {.lex_state = 328}, + [951] = {.lex_state = 328}, + [952] = {.lex_state = 328}, + [953] = {.lex_state = 328}, + [954] = {.lex_state = 328}, + [955] = {.lex_state = 328}, + [956] = {.lex_state = 328}, + [957] = {.lex_state = 328}, + [958] = {.lex_state = 328}, + [959] = {.lex_state = 328}, + [960] = {.lex_state = 328}, + [961] = {.lex_state = 328}, + [962] = {.lex_state = 328}, + [963] = {.lex_state = 328}, + [964] = {.lex_state = 328}, + [965] = {.lex_state = 328}, + [966] = {.lex_state = 328}, + [967] = {.lex_state = 328}, + [968] = {.lex_state = 328}, + [969] = {.lex_state = 328}, + [970] = {.lex_state = 328}, + [971] = {.lex_state = 328}, + [972] = {.lex_state = 328}, + [973] = {.lex_state = 328}, + [974] = {.lex_state = 328}, + [975] = {.lex_state = 328}, + [976] = {.lex_state = 328}, + [977] = {.lex_state = 328}, + [978] = {.lex_state = 328}, + [979] = {.lex_state = 328}, + [980] = {.lex_state = 328}, + [981] = {.lex_state = 328}, + [982] = {.lex_state = 328}, + [983] = {.lex_state = 328}, + [984] = {.lex_state = 328}, + [985] = {.lex_state = 328}, + [986] = {.lex_state = 328}, + [987] = {.lex_state = 328}, + [988] = {.lex_state = 328}, + [989] = {.lex_state = 328}, + [990] = {.lex_state = 328}, + [991] = {.lex_state = 328}, + [992] = {.lex_state = 328}, + [993] = {.lex_state = 328}, + [994] = {.lex_state = 328}, + [995] = {.lex_state = 328}, + [996] = {.lex_state = 328}, + [997] = {.lex_state = 328}, + [998] = {.lex_state = 328}, + [999] = {.lex_state = 328}, + [1000] = {.lex_state = 328}, + [1001] = {.lex_state = 328}, + [1002] = {.lex_state = 328}, + [1003] = {.lex_state = 328}, + [1004] = {.lex_state = 328}, + [1005] = {.lex_state = 328}, + [1006] = {.lex_state = 328}, + [1007] = {.lex_state = 328}, + [1008] = {.lex_state = 328}, + [1009] = {.lex_state = 328}, + [1010] = {.lex_state = 328}, + [1011] = {.lex_state = 328}, + [1012] = {.lex_state = 328}, + [1013] = {.lex_state = 328}, + [1014] = {.lex_state = 328}, + [1015] = {.lex_state = 328}, + [1016] = {.lex_state = 328}, + [1017] = {.lex_state = 328}, + [1018] = {.lex_state = 328}, + [1019] = {.lex_state = 328}, + [1020] = {.lex_state = 328}, + [1021] = {.lex_state = 328}, + [1022] = {.lex_state = 328}, + [1023] = {.lex_state = 328}, + [1024] = {.lex_state = 328}, + [1025] = {.lex_state = 328}, + [1026] = {.lex_state = 328}, + [1027] = {.lex_state = 328}, + [1028] = {.lex_state = 328}, + [1029] = {.lex_state = 328}, + [1030] = {.lex_state = 328}, + [1031] = {.lex_state = 328}, + [1032] = {.lex_state = 328}, + [1033] = {.lex_state = 328}, + [1034] = {.lex_state = 328}, + [1035] = {.lex_state = 328}, + [1036] = {.lex_state = 328}, + [1037] = {.lex_state = 328}, + [1038] = {.lex_state = 332}, + [1039] = {.lex_state = 328}, + [1040] = {.lex_state = 328}, + [1041] = {.lex_state = 328}, + [1042] = {.lex_state = 328}, + [1043] = {.lex_state = 328}, + [1044] = {.lex_state = 328}, + [1045] = {.lex_state = 328}, + [1046] = {.lex_state = 328}, + [1047] = {.lex_state = 328}, + [1048] = {.lex_state = 328}, + [1049] = {.lex_state = 328}, + [1050] = {.lex_state = 328}, + [1051] = {.lex_state = 328}, + [1052] = {.lex_state = 328}, + [1053] = {.lex_state = 328}, + [1054] = {.lex_state = 328}, + [1055] = {.lex_state = 328}, + [1056] = {.lex_state = 328}, + [1057] = {.lex_state = 328}, + [1058] = {.lex_state = 328}, + [1059] = {.lex_state = 328}, + [1060] = {.lex_state = 328}, + [1061] = {.lex_state = 328}, + [1062] = {.lex_state = 328}, + [1063] = {.lex_state = 328}, + [1064] = {.lex_state = 328}, + [1065] = {.lex_state = 328}, + [1066] = {.lex_state = 328}, + [1067] = {.lex_state = 328}, + [1068] = {.lex_state = 328}, + [1069] = {.lex_state = 328}, + [1070] = {.lex_state = 328}, + [1071] = {.lex_state = 328}, + [1072] = {.lex_state = 328}, + [1073] = {.lex_state = 328}, + [1074] = {.lex_state = 328}, + [1075] = {.lex_state = 328}, + [1076] = {.lex_state = 328}, + [1077] = {.lex_state = 328}, + [1078] = {.lex_state = 328}, + [1079] = {.lex_state = 328}, + [1080] = {.lex_state = 328}, + [1081] = {.lex_state = 328}, + [1082] = {.lex_state = 328}, + [1083] = {.lex_state = 328}, [1084] = {.lex_state = 4}, - [1085] = {.lex_state = 4}, - [1086] = {.lex_state = 5}, - [1087] = {.lex_state = 352}, - [1088] = {.lex_state = 352}, - [1089] = {.lex_state = 334}, - [1090] = {.lex_state = 334}, - [1091] = {.lex_state = 334}, - [1092] = {.lex_state = 334}, - [1093] = {.lex_state = 334}, - [1094] = {.lex_state = 4}, - [1095] = {.lex_state = 334}, - [1096] = {.lex_state = 334}, - [1097] = {.lex_state = 334}, - [1098] = {.lex_state = 334}, - [1099] = {.lex_state = 4}, - [1100] = {.lex_state = 334}, - [1101] = {.lex_state = 334}, - [1102] = {.lex_state = 334}, - [1103] = {.lex_state = 334}, - [1104] = {.lex_state = 334}, - [1105] = {.lex_state = 334}, + [1085] = {.lex_state = 328}, + [1086] = {.lex_state = 328}, + [1087] = {.lex_state = 328}, + [1088] = {.lex_state = 328}, + [1089] = {.lex_state = 328}, + [1090] = {.lex_state = 328}, + [1091] = {.lex_state = 328}, + [1092] = {.lex_state = 4}, + [1093] = {.lex_state = 328}, + [1094] = {.lex_state = 328}, + [1095] = {.lex_state = 328}, + [1096] = {.lex_state = 328}, + [1097] = {.lex_state = 328}, + [1098] = {.lex_state = 328}, + [1099] = {.lex_state = 328}, + [1100] = {.lex_state = 328}, + [1101] = {.lex_state = 328}, + [1102] = {.lex_state = 328}, + [1103] = {.lex_state = 328}, + [1104] = {.lex_state = 328}, + [1105] = {.lex_state = 328}, [1106] = {.lex_state = 4}, - [1107] = {.lex_state = 334}, - [1108] = {.lex_state = 334}, - [1109] = {.lex_state = 334}, - [1110] = {.lex_state = 4}, - [1111] = {.lex_state = 334}, - [1112] = {.lex_state = 4}, - [1113] = {.lex_state = 5}, - [1114] = {.lex_state = 4}, - [1115] = {.lex_state = 4}, - [1116] = {.lex_state = 4}, - [1117] = {.lex_state = 4}, - [1118] = {.lex_state = 4}, - [1119] = {.lex_state = 4}, - [1120] = {.lex_state = 4}, - [1121] = {.lex_state = 4}, - [1122] = {.lex_state = 4}, - [1123] = {.lex_state = 4}, - [1124] = {.lex_state = 4}, - [1125] = {.lex_state = 4}, - [1126] = {.lex_state = 4}, - [1127] = {.lex_state = 334}, - [1128] = {.lex_state = 334}, - [1129] = {.lex_state = 4}, - [1130] = {.lex_state = 334}, - [1131] = {.lex_state = 334}, - [1132] = {.lex_state = 5}, + [1107] = {.lex_state = 328}, + [1108] = {.lex_state = 4}, + [1109] = {.lex_state = 4}, + [1110] = {.lex_state = 328}, + [1111] = {.lex_state = 328}, + [1112] = {.lex_state = 328}, + [1113] = {.lex_state = 328}, + [1114] = {.lex_state = 328}, + [1115] = {.lex_state = 328}, + [1116] = {.lex_state = 328}, + [1117] = {.lex_state = 328}, + [1118] = {.lex_state = 328}, + [1119] = {.lex_state = 328}, + [1120] = {.lex_state = 328}, + [1121] = {.lex_state = 328}, + [1122] = {.lex_state = 328}, + [1123] = {.lex_state = 328}, + [1124] = {.lex_state = 328}, + [1125] = {.lex_state = 328}, + [1126] = {.lex_state = 328}, + [1127] = {.lex_state = 328}, + [1128] = {.lex_state = 328}, + [1129] = {.lex_state = 332}, + [1130] = {.lex_state = 328}, + [1131] = {.lex_state = 4}, + [1132] = {.lex_state = 328}, [1133] = {.lex_state = 4}, - [1134] = {.lex_state = 5}, - [1135] = {.lex_state = 334}, - [1136] = {.lex_state = 4}, - [1137] = {.lex_state = 334}, - [1138] = {.lex_state = 4}, - [1139] = {.lex_state = 5}, - [1140] = {.lex_state = 4}, - [1141] = {.lex_state = 24}, - [1142] = {.lex_state = 24}, - [1143] = {.lex_state = 5}, + [1134] = {.lex_state = 328}, + [1135] = {.lex_state = 328}, + [1136] = {.lex_state = 328}, + [1137] = {.lex_state = 328}, + [1138] = {.lex_state = 328}, + [1139] = {.lex_state = 351}, + [1140] = {.lex_state = 351}, + [1141] = {.lex_state = 351}, + [1142] = {.lex_state = 4}, + [1143] = {.lex_state = 351}, [1144] = {.lex_state = 4}, [1145] = {.lex_state = 4}, [1146] = {.lex_state = 4}, - [1147] = {.lex_state = 4}, - [1148] = {.lex_state = 334}, - [1149] = {.lex_state = 24}, - [1150] = {.lex_state = 4}, - [1151] = {.lex_state = 4}, + [1147] = {.lex_state = 351}, + [1148] = {.lex_state = 4}, + [1149] = {.lex_state = 351}, + [1150] = {.lex_state = 37}, + [1151] = {.lex_state = 353}, [1152] = {.lex_state = 4}, - [1153] = {.lex_state = 4}, - [1154] = {.lex_state = 4}, - [1155] = {.lex_state = 334}, - [1156] = {.lex_state = 334}, + [1153] = {.lex_state = 351}, + [1154] = {.lex_state = 351}, + [1155] = {.lex_state = 351}, + [1156] = {.lex_state = 4}, [1157] = {.lex_state = 4}, - [1158] = {.lex_state = 4}, - [1159] = {.lex_state = 4}, - [1160] = {.lex_state = 4}, + [1158] = {.lex_state = 351}, + [1159] = {.lex_state = 351}, + [1160] = {.lex_state = 351}, [1161] = {.lex_state = 4}, - [1162] = {.lex_state = 4}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 334}, - [1165] = {.lex_state = 334}, - [1166] = {.lex_state = 334}, + [1162] = {.lex_state = 351}, + [1163] = {.lex_state = 351}, + [1164] = {.lex_state = 353}, + [1165] = {.lex_state = 4}, + [1166] = {.lex_state = 351}, [1167] = {.lex_state = 4}, - [1168] = {.lex_state = 4}, - [1169] = {.lex_state = 4}, - [1170] = {.lex_state = 334}, - [1171] = {.lex_state = 334}, - [1172] = {.lex_state = 334}, - [1173] = {.lex_state = 334}, - [1174] = {.lex_state = 4}, - [1175] = {.lex_state = 334}, - [1176] = {.lex_state = 334}, - [1177] = {.lex_state = 334}, - [1178] = {.lex_state = 334}, - [1179] = {.lex_state = 334}, - [1180] = {.lex_state = 334}, - [1181] = {.lex_state = 334}, - [1182] = {.lex_state = 334}, - [1183] = {.lex_state = 334}, - [1184] = {.lex_state = 334}, - [1185] = {.lex_state = 334}, - [1186] = {.lex_state = 334}, - [1187] = {.lex_state = 334}, - [1188] = {.lex_state = 334}, - [1189] = {.lex_state = 334}, - [1190] = {.lex_state = 5}, - [1191] = {.lex_state = 4}, - [1192] = {.lex_state = 5}, - [1193] = {.lex_state = 4}, - [1194] = {.lex_state = 4}, - [1195] = {.lex_state = 4}, - [1196] = {.lex_state = 4}, - [1197] = {.lex_state = 4}, - [1198] = {.lex_state = 4}, - [1199] = {.lex_state = 4}, - [1200] = {.lex_state = 4}, - [1201] = {.lex_state = 4}, + [1168] = {.lex_state = 351}, + [1169] = {.lex_state = 351}, + [1170] = {.lex_state = 4}, + [1171] = {.lex_state = 4}, + [1172] = {.lex_state = 353}, + [1173] = {.lex_state = 4}, + [1174] = {.lex_state = 335}, + [1175] = {.lex_state = 351}, + [1176] = {.lex_state = 351}, + [1177] = {.lex_state = 4}, + [1178] = {.lex_state = 4}, + [1179] = {.lex_state = 4}, + [1180] = {.lex_state = 4}, + [1181] = {.lex_state = 4}, + [1182] = {.lex_state = 4}, + [1183] = {.lex_state = 4}, + [1184] = {.lex_state = 4}, + [1185] = {.lex_state = 4}, + [1186] = {.lex_state = 4}, + [1187] = {.lex_state = 335}, + [1188] = {.lex_state = 335}, + [1189] = {.lex_state = 335}, + [1190] = {.lex_state = 335}, + [1191] = {.lex_state = 335}, + [1192] = {.lex_state = 335}, + [1193] = {.lex_state = 335}, + [1194] = {.lex_state = 335}, + [1195] = {.lex_state = 335}, + [1196] = {.lex_state = 335}, + [1197] = {.lex_state = 335}, + [1198] = {.lex_state = 351}, + [1199] = {.lex_state = 335}, + [1200] = {.lex_state = 335}, + [1201] = {.lex_state = 335}, [1202] = {.lex_state = 4}, - [1203] = {.lex_state = 4}, - [1204] = {.lex_state = 4}, + [1203] = {.lex_state = 335}, + [1204] = {.lex_state = 335}, [1205] = {.lex_state = 4}, - [1206] = {.lex_state = 4}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 5}, - [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 5}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 5}, + [1206] = {.lex_state = 335}, + [1207] = {.lex_state = 335}, + [1208] = {.lex_state = 4}, + [1209] = {.lex_state = 4}, + [1210] = {.lex_state = 4}, + [1211] = {.lex_state = 4}, + [1212] = {.lex_state = 335}, + [1213] = {.lex_state = 4}, [1214] = {.lex_state = 4}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 5}, - [1217] = {.lex_state = 5}, - [1218] = {.lex_state = 5}, - [1219] = {.lex_state = 5}, + [1215] = {.lex_state = 335}, + [1216] = {.lex_state = 335}, + [1217] = {.lex_state = 335}, + [1218] = {.lex_state = 335}, + [1219] = {.lex_state = 335}, [1220] = {.lex_state = 4}, - [1221] = {.lex_state = 5}, - [1222] = {.lex_state = 5}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 5}, - [1225] = {.lex_state = 24}, - [1226] = {.lex_state = 5}, - [1227] = {.lex_state = 5}, + [1221] = {.lex_state = 4}, + [1222] = {.lex_state = 4}, + [1223] = {.lex_state = 351}, + [1224] = {.lex_state = 335}, + [1225] = {.lex_state = 4}, + [1226] = {.lex_state = 4}, + [1227] = {.lex_state = 4}, [1228] = {.lex_state = 4}, - [1229] = {.lex_state = 5}, - [1230] = {.lex_state = 5}, - [1231] = {.lex_state = 5}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 5}, - [1234] = {.lex_state = 5}, - [1235] = {.lex_state = 5}, - [1236] = {.lex_state = 5}, - [1237] = {.lex_state = 5}, - [1238] = {.lex_state = 5}, + [1229] = {.lex_state = 4}, + [1230] = {.lex_state = 4}, + [1231] = {.lex_state = 4}, + [1232] = {.lex_state = 4}, + [1233] = {.lex_state = 4}, + [1234] = {.lex_state = 4}, + [1235] = {.lex_state = 4}, + [1236] = {.lex_state = 4}, + [1237] = {.lex_state = 4}, + [1238] = {.lex_state = 4}, [1239] = {.lex_state = 4}, - [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, - [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 5}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 24}, - [1250] = {.lex_state = 30}, - [1251] = {.lex_state = 30}, - [1252] = {.lex_state = 30}, - [1253] = {.lex_state = 30}, - [1254] = {.lex_state = 30}, - [1255] = {.lex_state = 30}, - [1256] = {.lex_state = 30}, - [1257] = {.lex_state = 30}, - [1258] = {.lex_state = 23}, - [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 23}, - [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 23}, - [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 23}, - [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, - [1268] = {.lex_state = 23}, - [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 23}, - [1271] = {.lex_state = 23}, - [1272] = {.lex_state = 23}, - [1273] = {.lex_state = 23}, - [1274] = {.lex_state = 23}, - [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, - [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 23}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 23}, - [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 23}, - [1288] = {.lex_state = 23}, - [1289] = {.lex_state = 23}, - [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 23}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 23}, - [1294] = {.lex_state = 23}, - [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 23}, - [1297] = {.lex_state = 23}, - [1298] = {.lex_state = 28}, - [1299] = {.lex_state = 28}, - [1300] = {.lex_state = 28}, - [1301] = {.lex_state = 28}, - [1302] = {.lex_state = 28}, - [1303] = {.lex_state = 28}, - [1304] = {.lex_state = 28}, - [1305] = {.lex_state = 28}, - [1306] = {.lex_state = 28}, - [1307] = {.lex_state = 28}, - [1308] = {.lex_state = 28}, - [1309] = {.lex_state = 28}, - [1310] = {.lex_state = 28}, - [1311] = {.lex_state = 27}, - [1312] = {.lex_state = 27}, - [1313] = {.lex_state = 28}, - [1314] = {.lex_state = 28}, - [1315] = {.lex_state = 28}, - [1316] = {.lex_state = 28}, - [1317] = {.lex_state = 28}, - [1318] = {.lex_state = 28}, - [1319] = {.lex_state = 28}, - [1320] = {.lex_state = 28}, - [1321] = {.lex_state = 28}, - [1322] = {.lex_state = 28}, - [1323] = {.lex_state = 28}, - [1324] = {.lex_state = 28}, - [1325] = {.lex_state = 28}, - [1326] = {.lex_state = 28}, - [1327] = {.lex_state = 28}, - [1328] = {.lex_state = 28}, - [1329] = {.lex_state = 28}, - [1330] = {.lex_state = 28}, - [1331] = {.lex_state = 28}, - [1332] = {.lex_state = 28}, - [1333] = {.lex_state = 28}, - [1334] = {.lex_state = 28}, - [1335] = {.lex_state = 28}, - [1336] = {.lex_state = 28}, - [1337] = {.lex_state = 28}, - [1338] = {.lex_state = 28}, - [1339] = {.lex_state = 28}, - [1340] = {.lex_state = 28}, - [1341] = {.lex_state = 28}, - [1342] = {.lex_state = 28}, - [1343] = {.lex_state = 28}, - [1344] = {.lex_state = 28}, - [1345] = {.lex_state = 28}, - [1346] = {.lex_state = 28}, - [1347] = {.lex_state = 28}, - [1348] = {.lex_state = 28}, - [1349] = {.lex_state = 28}, - [1350] = {.lex_state = 28}, - [1351] = {.lex_state = 28}, - [1352] = {.lex_state = 28}, - [1353] = {.lex_state = 28}, - [1354] = {.lex_state = 28}, - [1355] = {.lex_state = 28}, - [1356] = {.lex_state = 28}, - [1357] = {.lex_state = 28}, - [1358] = {.lex_state = 28}, - [1359] = {.lex_state = 28}, - [1360] = {.lex_state = 28}, - [1361] = {.lex_state = 28}, - [1362] = {.lex_state = 28}, - [1363] = {.lex_state = 28}, - [1364] = {.lex_state = 28}, - [1365] = {.lex_state = 28}, - [1366] = {.lex_state = 28}, - [1367] = {.lex_state = 28}, - [1368] = {.lex_state = 28}, - [1369] = {.lex_state = 28}, - [1370] = {.lex_state = 28}, - [1371] = {.lex_state = 28}, - [1372] = {.lex_state = 28}, - [1373] = {.lex_state = 28}, - [1374] = {.lex_state = 28}, - [1375] = {.lex_state = 28}, - [1376] = {.lex_state = 28}, - [1377] = {.lex_state = 28}, - [1378] = {.lex_state = 28}, - [1379] = {.lex_state = 28}, - [1380] = {.lex_state = 28}, - [1381] = {.lex_state = 28}, - [1382] = {.lex_state = 28}, - [1383] = {.lex_state = 28}, - [1384] = {.lex_state = 28}, - [1385] = {.lex_state = 28}, - [1386] = {.lex_state = 28}, - [1387] = {.lex_state = 28}, - [1388] = {.lex_state = 28}, - [1389] = {.lex_state = 28}, - [1390] = {.lex_state = 28}, - [1391] = {.lex_state = 28}, - [1392] = {.lex_state = 28}, - [1393] = {.lex_state = 28}, - [1394] = {.lex_state = 28}, - [1395] = {.lex_state = 28}, - [1396] = {.lex_state = 28}, - [1397] = {.lex_state = 28}, - [1398] = {.lex_state = 28}, - [1399] = {.lex_state = 28}, - [1400] = {.lex_state = 28}, - [1401] = {.lex_state = 28}, - [1402] = {.lex_state = 28}, - [1403] = {.lex_state = 28}, - [1404] = {.lex_state = 28}, - [1405] = {.lex_state = 28}, - [1406] = {.lex_state = 28}, - [1407] = {.lex_state = 28}, - [1408] = {.lex_state = 28}, - [1409] = {.lex_state = 28}, - [1410] = {.lex_state = 28}, - [1411] = {.lex_state = 28}, - [1412] = {.lex_state = 28}, + [1240] = {.lex_state = 4}, + [1241] = {.lex_state = 4}, + [1242] = {.lex_state = 4}, + [1243] = {.lex_state = 4}, + [1244] = {.lex_state = 4}, + [1245] = {.lex_state = 4}, + [1246] = {.lex_state = 4}, + [1247] = {.lex_state = 4}, + [1248] = {.lex_state = 4}, + [1249] = {.lex_state = 4}, + [1250] = {.lex_state = 351}, + [1251] = {.lex_state = 351}, + [1252] = {.lex_state = 351}, + [1253] = {.lex_state = 351}, + [1254] = {.lex_state = 351}, + [1255] = {.lex_state = 351}, + [1256] = {.lex_state = 351}, + [1257] = {.lex_state = 351}, + [1258] = {.lex_state = 351}, + [1259] = {.lex_state = 4}, + [1260] = {.lex_state = 4}, + [1261] = {.lex_state = 351}, + [1262] = {.lex_state = 351}, + [1263] = {.lex_state = 351}, + [1264] = {.lex_state = 351}, + [1265] = {.lex_state = 351}, + [1266] = {.lex_state = 4}, + [1267] = {.lex_state = 335}, + [1268] = {.lex_state = 351}, + [1269] = {.lex_state = 335}, + [1270] = {.lex_state = 24}, + [1271] = {.lex_state = 4}, + [1272] = {.lex_state = 335}, + [1273] = {.lex_state = 335}, + [1274] = {.lex_state = 351}, + [1275] = {.lex_state = 335}, + [1276] = {.lex_state = 335}, + [1277] = {.lex_state = 335}, + [1278] = {.lex_state = 351}, + [1279] = {.lex_state = 335}, + [1280] = {.lex_state = 335}, + [1281] = {.lex_state = 351}, + [1282] = {.lex_state = 335}, + [1283] = {.lex_state = 351}, + [1284] = {.lex_state = 335}, + [1285] = {.lex_state = 335}, + [1286] = {.lex_state = 335}, + [1287] = {.lex_state = 335}, + [1288] = {.lex_state = 335}, + [1289] = {.lex_state = 4}, + [1290] = {.lex_state = 335}, + [1291] = {.lex_state = 335}, + [1292] = {.lex_state = 24}, + [1293] = {.lex_state = 335}, + [1294] = {.lex_state = 351}, + [1295] = {.lex_state = 24}, + [1296] = {.lex_state = 4}, + [1297] = {.lex_state = 351}, + [1298] = {.lex_state = 351}, + [1299] = {.lex_state = 4}, + [1300] = {.lex_state = 4}, + [1301] = {.lex_state = 4}, + [1302] = {.lex_state = 335}, + [1303] = {.lex_state = 335}, + [1304] = {.lex_state = 335}, + [1305] = {.lex_state = 4}, + [1306] = {.lex_state = 351}, + [1307] = {.lex_state = 351}, + [1308] = {.lex_state = 351}, + [1309] = {.lex_state = 351}, + [1310] = {.lex_state = 351}, + [1311] = {.lex_state = 4}, + [1312] = {.lex_state = 4}, + [1313] = {.lex_state = 4}, + [1314] = {.lex_state = 4}, + [1315] = {.lex_state = 351}, + [1316] = {.lex_state = 351}, + [1317] = {.lex_state = 4}, + [1318] = {.lex_state = 335}, + [1319] = {.lex_state = 335}, + [1320] = {.lex_state = 351}, + [1321] = {.lex_state = 351}, + [1322] = {.lex_state = 351}, + [1323] = {.lex_state = 351}, + [1324] = {.lex_state = 351}, + [1325] = {.lex_state = 4}, + [1326] = {.lex_state = 4}, + [1327] = {.lex_state = 351}, + [1328] = {.lex_state = 4}, + [1329] = {.lex_state = 4}, + [1330] = {.lex_state = 351}, + [1331] = {.lex_state = 4}, + [1332] = {.lex_state = 351}, + [1333] = {.lex_state = 335}, + [1334] = {.lex_state = 24}, + [1335] = {.lex_state = 351}, + [1336] = {.lex_state = 351}, + [1337] = {.lex_state = 351}, + [1338] = {.lex_state = 4}, + [1339] = {.lex_state = 4}, + [1340] = {.lex_state = 4}, + [1341] = {.lex_state = 4}, + [1342] = {.lex_state = 4}, + [1343] = {.lex_state = 351}, + [1344] = {.lex_state = 351}, + [1345] = {.lex_state = 351}, + [1346] = {.lex_state = 4}, + [1347] = {.lex_state = 351}, + [1348] = {.lex_state = 351}, + [1349] = {.lex_state = 351}, + [1350] = {.lex_state = 351}, + [1351] = {.lex_state = 351}, + [1352] = {.lex_state = 4}, + [1353] = {.lex_state = 4}, + [1354] = {.lex_state = 351}, + [1355] = {.lex_state = 351}, + [1356] = {.lex_state = 351}, + [1357] = {.lex_state = 351}, + [1358] = {.lex_state = 351}, + [1359] = {.lex_state = 351}, + [1360] = {.lex_state = 351}, + [1361] = {.lex_state = 24}, + [1362] = {.lex_state = 30}, + [1363] = {.lex_state = 30}, + [1364] = {.lex_state = 30}, + [1365] = {.lex_state = 30}, + [1366] = {.lex_state = 30}, + [1367] = {.lex_state = 30}, + [1368] = {.lex_state = 30}, + [1369] = {.lex_state = 30}, + [1370] = {.lex_state = 23}, + [1371] = {.lex_state = 23}, + [1372] = {.lex_state = 23}, + [1373] = {.lex_state = 23}, + [1374] = {.lex_state = 23}, + [1375] = {.lex_state = 23}, + [1376] = {.lex_state = 23}, + [1377] = {.lex_state = 23}, + [1378] = {.lex_state = 23}, + [1379] = {.lex_state = 23}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 23}, + [1383] = {.lex_state = 23}, + [1384] = {.lex_state = 23}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 23}, + [1387] = {.lex_state = 23}, + [1388] = {.lex_state = 23}, + [1389] = {.lex_state = 23}, + [1390] = {.lex_state = 23}, + [1391] = {.lex_state = 23}, + [1392] = {.lex_state = 23}, + [1393] = {.lex_state = 23}, + [1394] = {.lex_state = 23}, + [1395] = {.lex_state = 23}, + [1396] = {.lex_state = 23}, + [1397] = {.lex_state = 23}, + [1398] = {.lex_state = 23}, + [1399] = {.lex_state = 23}, + [1400] = {.lex_state = 23}, + [1401] = {.lex_state = 23}, + [1402] = {.lex_state = 23}, + [1403] = {.lex_state = 23}, + [1404] = {.lex_state = 23}, + [1405] = {.lex_state = 23}, + [1406] = {.lex_state = 23}, + [1407] = {.lex_state = 23}, + [1408] = {.lex_state = 23}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 36}, + [1411] = {.lex_state = 36}, + [1412] = {.lex_state = 36}, [1413] = {.lex_state = 28}, - [1414] = {.lex_state = 28}, + [1414] = {.lex_state = 36}, [1415] = {.lex_state = 28}, - [1416] = {.lex_state = 28}, - [1417] = {.lex_state = 28}, - [1418] = {.lex_state = 28}, - [1419] = {.lex_state = 28}, - [1420] = {.lex_state = 28}, + [1416] = {.lex_state = 36}, + [1417] = {.lex_state = 36}, + [1418] = {.lex_state = 36}, + [1419] = {.lex_state = 36}, + [1420] = {.lex_state = 36}, [1421] = {.lex_state = 28}, - [1422] = {.lex_state = 28}, - [1423] = {.lex_state = 28}, - [1424] = {.lex_state = 28}, - [1425] = {.lex_state = 28}, - [1426] = {.lex_state = 28}, + [1422] = {.lex_state = 36}, + [1423] = {.lex_state = 36}, + [1424] = {.lex_state = 36}, + [1425] = {.lex_state = 36}, + [1426] = {.lex_state = 36}, [1427] = {.lex_state = 28}, - [1428] = {.lex_state = 28}, + [1428] = {.lex_state = 36}, [1429] = {.lex_state = 28}, - [1430] = {.lex_state = 28}, + [1430] = {.lex_state = 36}, [1431] = {.lex_state = 28}, [1432] = {.lex_state = 28}, [1433] = {.lex_state = 28}, @@ -43802,2431 +44034,2656 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1442] = {.lex_state = 28}, [1443] = {.lex_state = 28}, [1444] = {.lex_state = 28}, - [1445] = {.lex_state = 28}, - [1446] = {.lex_state = 28}, - [1447] = {.lex_state = 28}, - [1448] = {.lex_state = 28}, - [1449] = {.lex_state = 28}, + [1445] = {.lex_state = 36}, + [1446] = {.lex_state = 36}, + [1447] = {.lex_state = 36}, + [1448] = {.lex_state = 36}, + [1449] = {.lex_state = 36}, [1450] = {.lex_state = 28}, - [1451] = {.lex_state = 28}, + [1451] = {.lex_state = 36}, [1452] = {.lex_state = 28}, [1453] = {.lex_state = 28}, [1454] = {.lex_state = 28}, [1455] = {.lex_state = 28}, [1456] = {.lex_state = 28}, - [1457] = {.lex_state = 23}, + [1457] = {.lex_state = 36}, [1458] = {.lex_state = 28}, - [1459] = {.lex_state = 28}, - [1460] = {.lex_state = 28}, - [1461] = {.lex_state = 27}, - [1462] = {.lex_state = 27}, - [1463] = {.lex_state = 27}, - [1464] = {.lex_state = 27}, - [1465] = {.lex_state = 27}, - [1466] = {.lex_state = 27}, - [1467] = {.lex_state = 27}, - [1468] = {.lex_state = 27}, - [1469] = {.lex_state = 27}, - [1470] = {.lex_state = 27}, - [1471] = {.lex_state = 27}, - [1472] = {.lex_state = 27}, - [1473] = {.lex_state = 27}, - [1474] = {.lex_state = 27}, - [1475] = {.lex_state = 27}, - [1476] = {.lex_state = 27}, - [1477] = {.lex_state = 27}, - [1478] = {.lex_state = 27}, - [1479] = {.lex_state = 27}, - [1480] = {.lex_state = 27}, - [1481] = {.lex_state = 27}, - [1482] = {.lex_state = 27}, - [1483] = {.lex_state = 27}, - [1484] = {.lex_state = 27}, - [1485] = {.lex_state = 27}, - [1486] = {.lex_state = 27}, - [1487] = {.lex_state = 27}, - [1488] = {.lex_state = 27}, - [1489] = {.lex_state = 27}, - [1490] = {.lex_state = 27}, - [1491] = {.lex_state = 27}, - [1492] = {.lex_state = 27}, - [1493] = {.lex_state = 27}, - [1494] = {.lex_state = 27}, - [1495] = {.lex_state = 27}, - [1496] = {.lex_state = 27}, - [1497] = {.lex_state = 27}, - [1498] = {.lex_state = 27}, - [1499] = {.lex_state = 27}, - [1500] = {.lex_state = 27}, - [1501] = {.lex_state = 27}, - [1502] = {.lex_state = 27}, - [1503] = {.lex_state = 27}, - [1504] = {.lex_state = 27}, - [1505] = {.lex_state = 27}, - [1506] = {.lex_state = 27}, - [1507] = {.lex_state = 27}, - [1508] = {.lex_state = 27}, - [1509] = {.lex_state = 27}, - [1510] = {.lex_state = 27}, - [1511] = {.lex_state = 27}, - [1512] = {.lex_state = 27}, - [1513] = {.lex_state = 27}, - [1514] = {.lex_state = 27}, - [1515] = {.lex_state = 27}, - [1516] = {.lex_state = 27}, - [1517] = {.lex_state = 27}, - [1518] = {.lex_state = 27}, - [1519] = {.lex_state = 27}, - [1520] = {.lex_state = 27}, - [1521] = {.lex_state = 27}, - [1522] = {.lex_state = 27}, - [1523] = {.lex_state = 27}, - [1524] = {.lex_state = 27}, - [1525] = {.lex_state = 27}, - [1526] = {.lex_state = 27}, - [1527] = {.lex_state = 27}, - [1528] = {.lex_state = 27}, - [1529] = {.lex_state = 27}, - [1530] = {.lex_state = 27}, - [1531] = {.lex_state = 27}, - [1532] = {.lex_state = 27}, - [1533] = {.lex_state = 27}, - [1534] = {.lex_state = 27}, - [1535] = {.lex_state = 27}, - [1536] = {.lex_state = 27}, - [1537] = {.lex_state = 27}, - [1538] = {.lex_state = 27}, - [1539] = {.lex_state = 27}, - [1540] = {.lex_state = 27}, - [1541] = {.lex_state = 27}, - [1542] = {.lex_state = 27}, - [1543] = {.lex_state = 27}, - [1544] = {.lex_state = 27}, - [1545] = {.lex_state = 27}, - [1546] = {.lex_state = 27}, - [1547] = {.lex_state = 27}, - [1548] = {.lex_state = 27}, - [1549] = {.lex_state = 27}, - [1550] = {.lex_state = 27}, - [1551] = {.lex_state = 27}, - [1552] = {.lex_state = 27}, - [1553] = {.lex_state = 27}, - [1554] = {.lex_state = 27}, - [1555] = {.lex_state = 27}, - [1556] = {.lex_state = 27}, - [1557] = {.lex_state = 27}, - [1558] = {.lex_state = 27}, - [1559] = {.lex_state = 27}, - [1560] = {.lex_state = 27}, - [1561] = {.lex_state = 27}, - [1562] = {.lex_state = 27}, - [1563] = {.lex_state = 27}, - [1564] = {.lex_state = 27}, - [1565] = {.lex_state = 27}, - [1566] = {.lex_state = 27}, - [1567] = {.lex_state = 27}, - [1568] = {.lex_state = 27}, - [1569] = {.lex_state = 27}, - [1570] = {.lex_state = 27}, - [1571] = {.lex_state = 27}, - [1572] = {.lex_state = 27}, - [1573] = {.lex_state = 27}, - [1574] = {.lex_state = 27}, - [1575] = {.lex_state = 27}, - [1576] = {.lex_state = 27}, - [1577] = {.lex_state = 27}, - [1578] = {.lex_state = 27}, - [1579] = {.lex_state = 27}, - [1580] = {.lex_state = 27}, - [1581] = {.lex_state = 27}, - [1582] = {.lex_state = 27}, - [1583] = {.lex_state = 27}, - [1584] = {.lex_state = 27}, - [1585] = {.lex_state = 27}, - [1586] = {.lex_state = 27}, - [1587] = {.lex_state = 27}, - [1588] = {.lex_state = 27}, - [1589] = {.lex_state = 27}, - [1590] = {.lex_state = 27}, - [1591] = {.lex_state = 27}, - [1592] = {.lex_state = 27}, - [1593] = {.lex_state = 27}, - [1594] = {.lex_state = 27}, - [1595] = {.lex_state = 27}, - [1596] = {.lex_state = 27}, - [1597] = {.lex_state = 27}, - [1598] = {.lex_state = 27}, - [1599] = {.lex_state = 27}, - [1600] = {.lex_state = 27}, - [1601] = {.lex_state = 27}, - [1602] = {.lex_state = 27}, - [1603] = {.lex_state = 27}, - [1604] = {.lex_state = 27}, - [1605] = {.lex_state = 27}, - [1606] = {.lex_state = 27}, - [1607] = {.lex_state = 27}, - [1608] = {.lex_state = 27}, - [1609] = {.lex_state = 27}, - [1610] = {.lex_state = 27}, - [1611] = {.lex_state = 27}, - [1612] = {.lex_state = 27}, - [1613] = {.lex_state = 27}, - [1614] = {.lex_state = 27}, - [1615] = {.lex_state = 27}, - [1616] = {.lex_state = 27}, - [1617] = {.lex_state = 27}, - [1618] = {.lex_state = 27}, - [1619] = {.lex_state = 27}, - [1620] = {.lex_state = 27}, - [1621] = {.lex_state = 27}, - [1622] = {.lex_state = 27}, - [1623] = {.lex_state = 27}, - [1624] = {.lex_state = 27}, - [1625] = {.lex_state = 27}, - [1626] = {.lex_state = 27}, - [1627] = {.lex_state = 27}, - [1628] = {.lex_state = 27}, - [1629] = {.lex_state = 27}, - [1630] = {.lex_state = 27}, - [1631] = {.lex_state = 27}, - [1632] = {.lex_state = 27}, - [1633] = {.lex_state = 27}, - [1634] = {.lex_state = 27}, - [1635] = {.lex_state = 27}, - [1636] = {.lex_state = 27}, - [1637] = {.lex_state = 27}, - [1638] = {.lex_state = 27}, - [1639] = {.lex_state = 27}, - [1640] = {.lex_state = 27}, - [1641] = {.lex_state = 27}, - [1642] = {.lex_state = 27}, - [1643] = {.lex_state = 27}, - [1644] = {.lex_state = 27}, - [1645] = {.lex_state = 27}, - [1646] = {.lex_state = 27}, - [1647] = {.lex_state = 27}, - [1648] = {.lex_state = 27}, - [1649] = {.lex_state = 27}, - [1650] = {.lex_state = 27}, - [1651] = {.lex_state = 27}, - [1652] = {.lex_state = 27}, - [1653] = {.lex_state = 27}, - [1654] = {.lex_state = 27}, - [1655] = {.lex_state = 27}, - [1656] = {.lex_state = 27}, - [1657] = {.lex_state = 27}, - [1658] = {.lex_state = 27}, - [1659] = {.lex_state = 27}, - [1660] = {.lex_state = 27}, - [1661] = {.lex_state = 27}, - [1662] = {.lex_state = 27}, - [1663] = {.lex_state = 27}, - [1664] = {.lex_state = 27}, - [1665] = {.lex_state = 27}, - [1666] = {.lex_state = 27}, - [1667] = {.lex_state = 27}, - [1668] = {.lex_state = 27}, - [1669] = {.lex_state = 27}, - [1670] = {.lex_state = 27}, - [1671] = {.lex_state = 27}, - [1672] = {.lex_state = 27}, - [1673] = {.lex_state = 27}, - [1674] = {.lex_state = 27}, - [1675] = {.lex_state = 27}, - [1676] = {.lex_state = 27}, - [1677] = {.lex_state = 27}, - [1678] = {.lex_state = 27}, - [1679] = {.lex_state = 27}, - [1680] = {.lex_state = 27}, - [1681] = {.lex_state = 27}, - [1682] = {.lex_state = 27}, - [1683] = {.lex_state = 27}, - [1684] = {.lex_state = 27}, - [1685] = {.lex_state = 27}, - [1686] = {.lex_state = 11}, - [1687] = {.lex_state = 346}, - [1688] = {.lex_state = 346}, - [1689] = {.lex_state = 346}, - [1690] = {.lex_state = 346}, - [1691] = {.lex_state = 346}, - [1692] = {.lex_state = 346}, - [1693] = {.lex_state = 346}, - [1694] = {.lex_state = 317}, - [1695] = {.lex_state = 346}, - [1696] = {.lex_state = 346}, - [1697] = {.lex_state = 346}, - [1698] = {.lex_state = 346}, - [1699] = {.lex_state = 6}, - [1700] = {.lex_state = 345}, - [1701] = {.lex_state = 346}, - [1702] = {.lex_state = 346}, - [1703] = {.lex_state = 346}, - [1704] = {.lex_state = 346}, - [1705] = {.lex_state = 346}, - [1706] = {.lex_state = 346}, - [1707] = {.lex_state = 343}, - [1708] = {.lex_state = 346}, - [1709] = {.lex_state = 346}, - [1710] = {.lex_state = 346}, - [1711] = {.lex_state = 317}, - [1712] = {.lex_state = 345}, - [1713] = {.lex_state = 345}, - [1714] = {.lex_state = 346}, - [1715] = {.lex_state = 16}, - [1716] = {.lex_state = 346}, - [1717] = {.lex_state = 345}, - [1718] = {.lex_state = 345}, - [1719] = {.lex_state = 343}, - [1720] = {.lex_state = 344}, - [1721] = {.lex_state = 316}, - [1722] = {.lex_state = 345}, - [1723] = {.lex_state = 345}, - [1724] = {.lex_state = 346}, - [1725] = {.lex_state = 346}, - [1726] = {.lex_state = 346}, - [1727] = {.lex_state = 345}, - [1728] = {.lex_state = 12}, - [1729] = {.lex_state = 346}, - [1730] = {.lex_state = 343}, - [1731] = {.lex_state = 343}, - [1732] = {.lex_state = 343}, - [1733] = {.lex_state = 343}, - [1734] = {.lex_state = 343}, - [1735] = {.lex_state = 343}, - [1736] = {.lex_state = 343}, - [1737] = {.lex_state = 343}, - [1738] = {.lex_state = 343}, - [1739] = {.lex_state = 343}, - [1740] = {.lex_state = 343}, - [1741] = {.lex_state = 343}, - [1742] = {.lex_state = 316}, - [1743] = {.lex_state = 343}, - [1744] = {.lex_state = 343}, - [1745] = {.lex_state = 343}, - [1746] = {.lex_state = 343}, - [1747] = {.lex_state = 343}, - [1748] = {.lex_state = 343}, - [1749] = {.lex_state = 343}, - [1750] = {.lex_state = 346}, - [1751] = {.lex_state = 343}, - [1752] = {.lex_state = 343}, - [1753] = {.lex_state = 343}, - [1754] = {.lex_state = 343}, - [1755] = {.lex_state = 344}, - [1756] = {.lex_state = 343}, - [1757] = {.lex_state = 343}, - [1758] = {.lex_state = 343}, - [1759] = {.lex_state = 343}, - [1760] = {.lex_state = 343}, - [1761] = {.lex_state = 343}, - [1762] = {.lex_state = 343}, - [1763] = {.lex_state = 343}, - [1764] = {.lex_state = 343}, - [1765] = {.lex_state = 12}, - [1766] = {.lex_state = 12}, - [1767] = {.lex_state = 343}, - [1768] = {.lex_state = 12}, - [1769] = {.lex_state = 343}, - [1770] = {.lex_state = 343}, - [1771] = {.lex_state = 343}, - [1772] = {.lex_state = 346}, - [1773] = {.lex_state = 343}, - [1774] = {.lex_state = 343}, - [1775] = {.lex_state = 343}, - [1776] = {.lex_state = 343}, - [1777] = {.lex_state = 1}, - [1778] = {.lex_state = 1}, - [1779] = {.lex_state = 343}, - [1780] = {.lex_state = 318}, - [1781] = {.lex_state = 343}, - [1782] = {.lex_state = 343}, - [1783] = {.lex_state = 343}, - [1784] = {.lex_state = 1}, - [1785] = {.lex_state = 343}, - [1786] = {.lex_state = 343}, - [1787] = {.lex_state = 343}, - [1788] = {.lex_state = 343}, - [1789] = {.lex_state = 343}, - [1790] = {.lex_state = 343}, - [1791] = {.lex_state = 12}, - [1792] = {.lex_state = 12}, - [1793] = {.lex_state = 17}, - [1794] = {.lex_state = 318}, - [1795] = {.lex_state = 318}, - [1796] = {.lex_state = 343}, - [1797] = {.lex_state = 1}, - [1798] = {.lex_state = 343}, - [1799] = {.lex_state = 343}, - [1800] = {.lex_state = 343}, - [1801] = {.lex_state = 343}, - [1802] = {.lex_state = 343}, - [1803] = {.lex_state = 343}, - [1804] = {.lex_state = 343}, - [1805] = {.lex_state = 343}, - [1806] = {.lex_state = 12}, - [1807] = {.lex_state = 12}, - [1808] = {.lex_state = 343}, - [1809] = {.lex_state = 318}, - [1810] = {.lex_state = 343}, - [1811] = {.lex_state = 343}, - [1812] = {.lex_state = 343}, - [1813] = {.lex_state = 343}, - [1814] = {.lex_state = 343}, - [1815] = {.lex_state = 343}, - [1816] = {.lex_state = 1}, - [1817] = {.lex_state = 343}, - [1818] = {.lex_state = 1}, - [1819] = {.lex_state = 343}, - [1820] = {.lex_state = 343}, - [1821] = {.lex_state = 343}, - [1822] = {.lex_state = 343}, - [1823] = {.lex_state = 343}, - [1824] = {.lex_state = 343}, - [1825] = {.lex_state = 343}, - [1826] = {.lex_state = 343}, - [1827] = {.lex_state = 343}, - [1828] = {.lex_state = 322}, - [1829] = {.lex_state = 44}, - [1830] = {.lex_state = 44}, - [1831] = {.lex_state = 1}, - [1832] = {.lex_state = 318}, - [1833] = {.lex_state = 318}, - [1834] = {.lex_state = 318}, - [1835] = {.lex_state = 318}, - [1836] = {.lex_state = 318}, - [1837] = {.lex_state = 44}, - [1838] = {.lex_state = 322}, - [1839] = {.lex_state = 322}, - [1840] = {.lex_state = 44}, - [1841] = {.lex_state = 12}, - [1842] = {.lex_state = 12}, - [1843] = {.lex_state = 318}, - [1844] = {.lex_state = 1}, - [1845] = {.lex_state = 318}, - [1846] = {.lex_state = 318}, - [1847] = {.lex_state = 322}, - [1848] = {.lex_state = 8}, - [1849] = {.lex_state = 318}, - [1850] = {.lex_state = 322}, - [1851] = {.lex_state = 20}, - [1852] = {.lex_state = 14}, - [1853] = {.lex_state = 322}, - [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 322}, - [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 322}, - [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 14}, - [1860] = {.lex_state = 318}, - [1861] = {.lex_state = 322}, - [1862] = {.lex_state = 14}, - [1863] = {.lex_state = 14}, - [1864] = {.lex_state = 14}, - [1865] = {.lex_state = 20}, - [1866] = {.lex_state = 318}, - [1867] = {.lex_state = 18}, - [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 322}, - [1870] = {.lex_state = 14}, - [1871] = {.lex_state = 318}, + [1459] = {.lex_state = 36}, + [1460] = {.lex_state = 36}, + [1461] = {.lex_state = 36}, + [1462] = {.lex_state = 28}, + [1463] = {.lex_state = 36}, + [1464] = {.lex_state = 36}, + [1465] = {.lex_state = 36}, + [1466] = {.lex_state = 28}, + [1467] = {.lex_state = 36}, + [1468] = {.lex_state = 36}, + [1469] = {.lex_state = 28}, + [1470] = {.lex_state = 28}, + [1471] = {.lex_state = 28}, + [1472] = {.lex_state = 28}, + [1473] = {.lex_state = 28}, + [1474] = {.lex_state = 28}, + [1475] = {.lex_state = 28}, + [1476] = {.lex_state = 28}, + [1477] = {.lex_state = 28}, + [1478] = {.lex_state = 28}, + [1479] = {.lex_state = 28}, + [1480] = {.lex_state = 28}, + [1481] = {.lex_state = 28}, + [1482] = {.lex_state = 36}, + [1483] = {.lex_state = 28}, + [1484] = {.lex_state = 36}, + [1485] = {.lex_state = 36}, + [1486] = {.lex_state = 36}, + [1487] = {.lex_state = 36}, + [1488] = {.lex_state = 36}, + [1489] = {.lex_state = 36}, + [1490] = {.lex_state = 36}, + [1491] = {.lex_state = 28}, + [1492] = {.lex_state = 36}, + [1493] = {.lex_state = 36}, + [1494] = {.lex_state = 36}, + [1495] = {.lex_state = 36}, + [1496] = {.lex_state = 36}, + [1497] = {.lex_state = 28}, + [1498] = {.lex_state = 36}, + [1499] = {.lex_state = 36}, + [1500] = {.lex_state = 36}, + [1501] = {.lex_state = 36}, + [1502] = {.lex_state = 36}, + [1503] = {.lex_state = 36}, + [1504] = {.lex_state = 36}, + [1505] = {.lex_state = 36}, + [1506] = {.lex_state = 36}, + [1507] = {.lex_state = 36}, + [1508] = {.lex_state = 36}, + [1509] = {.lex_state = 36}, + [1510] = {.lex_state = 36}, + [1511] = {.lex_state = 36}, + [1512] = {.lex_state = 36}, + [1513] = {.lex_state = 28}, + [1514] = {.lex_state = 36}, + [1515] = {.lex_state = 36}, + [1516] = {.lex_state = 36}, + [1517] = {.lex_state = 36}, + [1518] = {.lex_state = 36}, + [1519] = {.lex_state = 36}, + [1520] = {.lex_state = 36}, + [1521] = {.lex_state = 36}, + [1522] = {.lex_state = 36}, + [1523] = {.lex_state = 28}, + [1524] = {.lex_state = 36}, + [1525] = {.lex_state = 28}, + [1526] = {.lex_state = 36}, + [1527] = {.lex_state = 28}, + [1528] = {.lex_state = 36}, + [1529] = {.lex_state = 36}, + [1530] = {.lex_state = 36}, + [1531] = {.lex_state = 28}, + [1532] = {.lex_state = 36}, + [1533] = {.lex_state = 28}, + [1534] = {.lex_state = 36}, + [1535] = {.lex_state = 28}, + [1536] = {.lex_state = 36}, + [1537] = {.lex_state = 28}, + [1538] = {.lex_state = 28}, + [1539] = {.lex_state = 28}, + [1540] = {.lex_state = 36}, + [1541] = {.lex_state = 36}, + [1542] = {.lex_state = 28}, + [1543] = {.lex_state = 36}, + [1544] = {.lex_state = 28}, + [1545] = {.lex_state = 28}, + [1546] = {.lex_state = 28}, + [1547] = {.lex_state = 28}, + [1548] = {.lex_state = 36}, + [1549] = {.lex_state = 28}, + [1550] = {.lex_state = 28}, + [1551] = {.lex_state = 36}, + [1552] = {.lex_state = 28}, + [1553] = {.lex_state = 28}, + [1554] = {.lex_state = 28}, + [1555] = {.lex_state = 36}, + [1556] = {.lex_state = 36}, + [1557] = {.lex_state = 28}, + [1558] = {.lex_state = 36}, + [1559] = {.lex_state = 28}, + [1560] = {.lex_state = 36}, + [1561] = {.lex_state = 36}, + [1562] = {.lex_state = 36}, + [1563] = {.lex_state = 36}, + [1564] = {.lex_state = 36}, + [1565] = {.lex_state = 36}, + [1566] = {.lex_state = 36}, + [1567] = {.lex_state = 36}, + [1568] = {.lex_state = 28}, + [1569] = {.lex_state = 28}, + [1570] = {.lex_state = 28}, + [1571] = {.lex_state = 36}, + [1572] = {.lex_state = 28}, + [1573] = {.lex_state = 36}, + [1574] = {.lex_state = 36}, + [1575] = {.lex_state = 28}, + [1576] = {.lex_state = 28}, + [1577] = {.lex_state = 28}, + [1578] = {.lex_state = 36}, + [1579] = {.lex_state = 28}, + [1580] = {.lex_state = 28}, + [1581] = {.lex_state = 36}, + [1582] = {.lex_state = 36}, + [1583] = {.lex_state = 28}, + [1584] = {.lex_state = 36}, + [1585] = {.lex_state = 28}, + [1586] = {.lex_state = 36}, + [1587] = {.lex_state = 36}, + [1588] = {.lex_state = 36}, + [1589] = {.lex_state = 28}, + [1590] = {.lex_state = 28}, + [1591] = {.lex_state = 36}, + [1592] = {.lex_state = 28}, + [1593] = {.lex_state = 28}, + [1594] = {.lex_state = 28}, + [1595] = {.lex_state = 28}, + [1596] = {.lex_state = 28}, + [1597] = {.lex_state = 28}, + [1598] = {.lex_state = 28}, + [1599] = {.lex_state = 28}, + [1600] = {.lex_state = 28}, + [1601] = {.lex_state = 28}, + [1602] = {.lex_state = 28}, + [1603] = {.lex_state = 28}, + [1604] = {.lex_state = 36}, + [1605] = {.lex_state = 28}, + [1606] = {.lex_state = 36}, + [1607] = {.lex_state = 28}, + [1608] = {.lex_state = 28}, + [1609] = {.lex_state = 28}, + [1610] = {.lex_state = 28}, + [1611] = {.lex_state = 36}, + [1612] = {.lex_state = 28}, + [1613] = {.lex_state = 28}, + [1614] = {.lex_state = 36}, + [1615] = {.lex_state = 28}, + [1616] = {.lex_state = 36}, + [1617] = {.lex_state = 36}, + [1618] = {.lex_state = 36}, + [1619] = {.lex_state = 36}, + [1620] = {.lex_state = 28}, + [1621] = {.lex_state = 36}, + [1622] = {.lex_state = 28}, + [1623] = {.lex_state = 36}, + [1624] = {.lex_state = 28}, + [1625] = {.lex_state = 36}, + [1626] = {.lex_state = 28}, + [1627] = {.lex_state = 28}, + [1628] = {.lex_state = 36}, + [1629] = {.lex_state = 36}, + [1630] = {.lex_state = 28}, + [1631] = {.lex_state = 28}, + [1632] = {.lex_state = 28}, + [1633] = {.lex_state = 36}, + [1634] = {.lex_state = 36}, + [1635] = {.lex_state = 36}, + [1636] = {.lex_state = 36}, + [1637] = {.lex_state = 36}, + [1638] = {.lex_state = 36}, + [1639] = {.lex_state = 36}, + [1640] = {.lex_state = 36}, + [1641] = {.lex_state = 36}, + [1642] = {.lex_state = 36}, + [1643] = {.lex_state = 36}, + [1644] = {.lex_state = 36}, + [1645] = {.lex_state = 36}, + [1646] = {.lex_state = 36}, + [1647] = {.lex_state = 36}, + [1648] = {.lex_state = 36}, + [1649] = {.lex_state = 28}, + [1650] = {.lex_state = 28}, + [1651] = {.lex_state = 36}, + [1652] = {.lex_state = 28}, + [1653] = {.lex_state = 28}, + [1654] = {.lex_state = 28}, + [1655] = {.lex_state = 28}, + [1656] = {.lex_state = 28}, + [1657] = {.lex_state = 36}, + [1658] = {.lex_state = 28}, + [1659] = {.lex_state = 36}, + [1660] = {.lex_state = 36}, + [1661] = {.lex_state = 28}, + [1662] = {.lex_state = 36}, + [1663] = {.lex_state = 28}, + [1664] = {.lex_state = 28}, + [1665] = {.lex_state = 36}, + [1666] = {.lex_state = 28}, + [1667] = {.lex_state = 28}, + [1668] = {.lex_state = 28}, + [1669] = {.lex_state = 28}, + [1670] = {.lex_state = 28}, + [1671] = {.lex_state = 36}, + [1672] = {.lex_state = 28}, + [1673] = {.lex_state = 36}, + [1674] = {.lex_state = 36}, + [1675] = {.lex_state = 36}, + [1676] = {.lex_state = 28}, + [1677] = {.lex_state = 28}, + [1678] = {.lex_state = 28}, + [1679] = {.lex_state = 36}, + [1680] = {.lex_state = 36}, + [1681] = {.lex_state = 36}, + [1682] = {.lex_state = 28}, + [1683] = {.lex_state = 28}, + [1684] = {.lex_state = 28}, + [1685] = {.lex_state = 28}, + [1686] = {.lex_state = 36}, + [1687] = {.lex_state = 36}, + [1688] = {.lex_state = 36}, + [1689] = {.lex_state = 28}, + [1690] = {.lex_state = 28}, + [1691] = {.lex_state = 36}, + [1692] = {.lex_state = 36}, + [1693] = {.lex_state = 36}, + [1694] = {.lex_state = 28}, + [1695] = {.lex_state = 36}, + [1696] = {.lex_state = 36}, + [1697] = {.lex_state = 36}, + [1698] = {.lex_state = 36}, + [1699] = {.lex_state = 28}, + [1700] = {.lex_state = 36}, + [1701] = {.lex_state = 28}, + [1702] = {.lex_state = 36}, + [1703] = {.lex_state = 36}, + [1704] = {.lex_state = 36}, + [1705] = {.lex_state = 36}, + [1706] = {.lex_state = 36}, + [1707] = {.lex_state = 36}, + [1708] = {.lex_state = 36}, + [1709] = {.lex_state = 36}, + [1710] = {.lex_state = 36}, + [1711] = {.lex_state = 36}, + [1712] = {.lex_state = 28}, + [1713] = {.lex_state = 28}, + [1714] = {.lex_state = 28}, + [1715] = {.lex_state = 36}, + [1716] = {.lex_state = 36}, + [1717] = {.lex_state = 28}, + [1718] = {.lex_state = 28}, + [1719] = {.lex_state = 28}, + [1720] = {.lex_state = 28}, + [1721] = {.lex_state = 28}, + [1722] = {.lex_state = 36}, + [1723] = {.lex_state = 36}, + [1724] = {.lex_state = 28}, + [1725] = {.lex_state = 28}, + [1726] = {.lex_state = 28}, + [1727] = {.lex_state = 28}, + [1728] = {.lex_state = 28}, + [1729] = {.lex_state = 36}, + [1730] = {.lex_state = 36}, + [1731] = {.lex_state = 36}, + [1732] = {.lex_state = 36}, + [1733] = {.lex_state = 28}, + [1734] = {.lex_state = 28}, + [1735] = {.lex_state = 36}, + [1736] = {.lex_state = 36}, + [1737] = {.lex_state = 36}, + [1738] = {.lex_state = 36}, + [1739] = {.lex_state = 36}, + [1740] = {.lex_state = 36}, + [1741] = {.lex_state = 36}, + [1742] = {.lex_state = 36}, + [1743] = {.lex_state = 36}, + [1744] = {.lex_state = 36}, + [1745] = {.lex_state = 27}, + [1746] = {.lex_state = 36}, + [1747] = {.lex_state = 36}, + [1748] = {.lex_state = 36}, + [1749] = {.lex_state = 36}, + [1750] = {.lex_state = 36}, + [1751] = {.lex_state = 36}, + [1752] = {.lex_state = 36}, + [1753] = {.lex_state = 36}, + [1754] = {.lex_state = 36}, + [1755] = {.lex_state = 36}, + [1756] = {.lex_state = 28}, + [1757] = {.lex_state = 36}, + [1758] = {.lex_state = 27}, + [1759] = {.lex_state = 36}, + [1760] = {.lex_state = 36}, + [1761] = {.lex_state = 36}, + [1762] = {.lex_state = 36}, + [1763] = {.lex_state = 36}, + [1764] = {.lex_state = 36}, + [1765] = {.lex_state = 36}, + [1766] = {.lex_state = 36}, + [1767] = {.lex_state = 36}, + [1768] = {.lex_state = 36}, + [1769] = {.lex_state = 36}, + [1770] = {.lex_state = 28}, + [1771] = {.lex_state = 36}, + [1772] = {.lex_state = 36}, + [1773] = {.lex_state = 28}, + [1774] = {.lex_state = 28}, + [1775] = {.lex_state = 28}, + [1776] = {.lex_state = 28}, + [1777] = {.lex_state = 23}, + [1778] = {.lex_state = 28}, + [1779] = {.lex_state = 28}, + [1780] = {.lex_state = 28}, + [1781] = {.lex_state = 27}, + [1782] = {.lex_state = 27}, + [1783] = {.lex_state = 27}, + [1784] = {.lex_state = 27}, + [1785] = {.lex_state = 27}, + [1786] = {.lex_state = 27}, + [1787] = {.lex_state = 27}, + [1788] = {.lex_state = 27}, + [1789] = {.lex_state = 27}, + [1790] = {.lex_state = 27}, + [1791] = {.lex_state = 27}, + [1792] = {.lex_state = 27}, + [1793] = {.lex_state = 27}, + [1794] = {.lex_state = 27}, + [1795] = {.lex_state = 27}, + [1796] = {.lex_state = 27}, + [1797] = {.lex_state = 27}, + [1798] = {.lex_state = 11}, + [1799] = {.lex_state = 347}, + [1800] = {.lex_state = 347}, + [1801] = {.lex_state = 347}, + [1802] = {.lex_state = 347}, + [1803] = {.lex_state = 347}, + [1804] = {.lex_state = 347}, + [1805] = {.lex_state = 347}, + [1806] = {.lex_state = 347}, + [1807] = {.lex_state = 347}, + [1808] = {.lex_state = 347}, + [1809] = {.lex_state = 347}, + [1810] = {.lex_state = 318}, + [1811] = {.lex_state = 347}, + [1812] = {.lex_state = 347}, + [1813] = {.lex_state = 346}, + [1814] = {.lex_state = 346}, + [1815] = {.lex_state = 344}, + [1816] = {.lex_state = 347}, + [1817] = {.lex_state = 347}, + [1818] = {.lex_state = 347}, + [1819] = {.lex_state = 6}, + [1820] = {.lex_state = 347}, + [1821] = {.lex_state = 347}, + [1822] = {.lex_state = 318}, + [1823] = {.lex_state = 347}, + [1824] = {.lex_state = 347}, + [1825] = {.lex_state = 16}, + [1826] = {.lex_state = 346}, + [1827] = {.lex_state = 347}, + [1828] = {.lex_state = 347}, + [1829] = {.lex_state = 346}, + [1830] = {.lex_state = 347}, + [1831] = {.lex_state = 317}, + [1832] = {.lex_state = 346}, + [1833] = {.lex_state = 346}, + [1834] = {.lex_state = 347}, + [1835] = {.lex_state = 345}, + [1836] = {.lex_state = 346}, + [1837] = {.lex_state = 346}, + [1838] = {.lex_state = 347}, + [1839] = {.lex_state = 344}, + [1840] = {.lex_state = 344}, + [1841] = {.lex_state = 344}, + [1842] = {.lex_state = 344}, + [1843] = {.lex_state = 344}, + [1844] = {.lex_state = 344}, + [1845] = {.lex_state = 344}, + [1846] = {.lex_state = 344}, + [1847] = {.lex_state = 344}, + [1848] = {.lex_state = 344}, + [1849] = {.lex_state = 344}, + [1850] = {.lex_state = 344}, + [1851] = {.lex_state = 344}, + [1852] = {.lex_state = 344}, + [1853] = {.lex_state = 344}, + [1854] = {.lex_state = 344}, + [1855] = {.lex_state = 344}, + [1856] = {.lex_state = 344}, + [1857] = {.lex_state = 344}, + [1858] = {.lex_state = 344}, + [1859] = {.lex_state = 344}, + [1860] = {.lex_state = 344}, + [1861] = {.lex_state = 344}, + [1862] = {.lex_state = 344}, + [1863] = {.lex_state = 12}, + [1864] = {.lex_state = 344}, + [1865] = {.lex_state = 344}, + [1866] = {.lex_state = 347}, + [1867] = {.lex_state = 344}, + [1868] = {.lex_state = 344}, + [1869] = {.lex_state = 344}, + [1870] = {.lex_state = 347}, + [1871] = {.lex_state = 345}, [1872] = {.lex_state = 12}, - [1873] = {.lex_state = 18}, - [1874] = {.lex_state = 322}, - [1875] = {.lex_state = 20}, - [1876] = {.lex_state = 26}, - [1877] = {.lex_state = 20}, - [1878] = {.lex_state = 8}, - [1879] = {.lex_state = 12}, - [1880] = {.lex_state = 322}, - [1881] = {.lex_state = 14}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 8}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 318}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 318}, - [1888] = {.lex_state = 318}, - [1889] = {.lex_state = 14}, - [1890] = {.lex_state = 8}, - [1891] = {.lex_state = 334}, - [1892] = {.lex_state = 322}, - [1893] = {.lex_state = 20}, - [1894] = {.lex_state = 318}, - [1895] = {.lex_state = 318}, - [1896] = {.lex_state = 8}, - [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 322}, - [1899] = {.lex_state = 20}, - [1900] = {.lex_state = 334}, - [1901] = {.lex_state = 320}, - [1902] = {.lex_state = 322}, - [1903] = {.lex_state = 8}, - [1904] = {.lex_state = 20}, - [1905] = {.lex_state = 8}, - [1906] = {.lex_state = 14}, - [1907] = {.lex_state = 334}, - [1908] = {.lex_state = 320}, - [1909] = {.lex_state = 320}, - [1910] = {.lex_state = 14}, - [1911] = {.lex_state = 8}, - [1912] = {.lex_state = 14}, - [1913] = {.lex_state = 322}, - [1914] = {.lex_state = 320}, - [1915] = {.lex_state = 318}, - [1916] = {.lex_state = 14}, - [1917] = {.lex_state = 318}, - [1918] = {.lex_state = 322}, - [1919] = {.lex_state = 322}, - [1920] = {.lex_state = 318}, - [1921] = {.lex_state = 26}, - [1922] = {.lex_state = 334}, - [1923] = {.lex_state = 20}, - [1924] = {.lex_state = 334}, - [1925] = {.lex_state = 334}, - [1926] = {.lex_state = 321}, - [1927] = {.lex_state = 334}, - [1928] = {.lex_state = 334}, - [1929] = {.lex_state = 321}, - [1930] = {.lex_state = 44}, - [1931] = {.lex_state = 8}, - [1932] = {.lex_state = 321}, - [1933] = {.lex_state = 322}, - [1934] = {.lex_state = 320}, - [1935] = {.lex_state = 321}, - [1936] = {.lex_state = 318}, - [1937] = {.lex_state = 14}, - [1938] = {.lex_state = 321}, - [1939] = {.lex_state = 320}, - [1940] = {.lex_state = 44}, - [1941] = {.lex_state = 322}, - [1942] = {.lex_state = 334}, - [1943] = {.lex_state = 14}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 334}, - [1946] = {.lex_state = 321}, - [1947] = {.lex_state = 320}, - [1948] = {.lex_state = 334}, + [1873] = {.lex_state = 344}, + [1874] = {.lex_state = 344}, + [1875] = {.lex_state = 344}, + [1876] = {.lex_state = 12}, + [1877] = {.lex_state = 344}, + [1878] = {.lex_state = 344}, + [1879] = {.lex_state = 347}, + [1880] = {.lex_state = 344}, + [1881] = {.lex_state = 12}, + [1882] = {.lex_state = 344}, + [1883] = {.lex_state = 344}, + [1884] = {.lex_state = 317}, + [1885] = {.lex_state = 344}, + [1886] = {.lex_state = 344}, + [1887] = {.lex_state = 344}, + [1888] = {.lex_state = 12}, + [1889] = {.lex_state = 344}, + [1890] = {.lex_state = 12}, + [1891] = {.lex_state = 344}, + [1892] = {.lex_state = 319}, + [1893] = {.lex_state = 344}, + [1894] = {.lex_state = 344}, + [1895] = {.lex_state = 344}, + [1896] = {.lex_state = 1}, + [1897] = {.lex_state = 344}, + [1898] = {.lex_state = 344}, + [1899] = {.lex_state = 1}, + [1900] = {.lex_state = 344}, + [1901] = {.lex_state = 1}, + [1902] = {.lex_state = 344}, + [1903] = {.lex_state = 344}, + [1904] = {.lex_state = 344}, + [1905] = {.lex_state = 344}, + [1906] = {.lex_state = 344}, + [1907] = {.lex_state = 344}, + [1908] = {.lex_state = 344}, + [1909] = {.lex_state = 344}, + [1910] = {.lex_state = 344}, + [1911] = {.lex_state = 344}, + [1912] = {.lex_state = 1}, + [1913] = {.lex_state = 344}, + [1914] = {.lex_state = 344}, + [1915] = {.lex_state = 17}, + [1916] = {.lex_state = 344}, + [1917] = {.lex_state = 344}, + [1918] = {.lex_state = 344}, + [1919] = {.lex_state = 344}, + [1920] = {.lex_state = 344}, + [1921] = {.lex_state = 1}, + [1922] = {.lex_state = 344}, + [1923] = {.lex_state = 1}, + [1924] = {.lex_state = 12}, + [1925] = {.lex_state = 344}, + [1926] = {.lex_state = 344}, + [1927] = {.lex_state = 344}, + [1928] = {.lex_state = 319}, + [1929] = {.lex_state = 344}, + [1930] = {.lex_state = 344}, + [1931] = {.lex_state = 344}, + [1932] = {.lex_state = 319}, + [1933] = {.lex_state = 344}, + [1934] = {.lex_state = 344}, + [1935] = {.lex_state = 319}, + [1936] = {.lex_state = 344}, + [1937] = {.lex_state = 344}, + [1938] = {.lex_state = 344}, + [1939] = {.lex_state = 12}, + [1940] = {.lex_state = 323}, + [1941] = {.lex_state = 319}, + [1942] = {.lex_state = 12}, + [1943] = {.lex_state = 323}, + [1944] = {.lex_state = 44}, + [1945] = {.lex_state = 319}, + [1946] = {.lex_state = 323}, + [1947] = {.lex_state = 1}, + [1948] = {.lex_state = 12}, [1949] = {.lex_state = 44}, - [1950] = {.lex_state = 8}, - [1951] = {.lex_state = 321}, - [1952] = {.lex_state = 322}, - [1953] = {.lex_state = 321}, - [1954] = {.lex_state = 321}, - [1955] = {.lex_state = 321}, - [1956] = {.lex_state = 320}, - [1957] = {.lex_state = 320}, - [1958] = {.lex_state = 334}, - [1959] = {.lex_state = 44}, - [1960] = {.lex_state = 321}, - [1961] = {.lex_state = 20}, - [1962] = {.lex_state = 320}, - [1963] = {.lex_state = 322}, - [1964] = {.lex_state = 320}, - [1965] = {.lex_state = 318}, - [1966] = {.lex_state = 320}, - [1967] = {.lex_state = 20}, - [1968] = {.lex_state = 20}, - [1969] = {.lex_state = 321}, - [1970] = {.lex_state = 334}, - [1971] = {.lex_state = 321}, - [1972] = {.lex_state = 12}, - [1973] = {.lex_state = 7}, - [1974] = {.lex_state = 321}, - [1975] = {.lex_state = 8}, - [1976] = {.lex_state = 19}, - [1977] = {.lex_state = 7}, - [1978] = {.lex_state = 12}, - [1979] = {.lex_state = 12}, - [1980] = {.lex_state = 12}, - [1981] = {.lex_state = 322}, - [1982] = {.lex_state = 12}, - [1983] = {.lex_state = 12}, - [1984] = {.lex_state = 7}, - [1985] = {.lex_state = 12}, - [1986] = {.lex_state = 12}, - [1987] = {.lex_state = 12}, - [1988] = {.lex_state = 12}, - [1989] = {.lex_state = 321}, - [1990] = {.lex_state = 12}, - [1991] = {.lex_state = 19}, - [1992] = {.lex_state = 321}, - [1993] = {.lex_state = 321}, - [1994] = {.lex_state = 321}, + [1950] = {.lex_state = 319}, + [1951] = {.lex_state = 44}, + [1952] = {.lex_state = 319}, + [1953] = {.lex_state = 44}, + [1954] = {.lex_state = 319}, + [1955] = {.lex_state = 319}, + [1956] = {.lex_state = 323}, + [1957] = {.lex_state = 44}, + [1958] = {.lex_state = 44}, + [1959] = {.lex_state = 1}, + [1960] = {.lex_state = 319}, + [1961] = {.lex_state = 319}, + [1962] = {.lex_state = 319}, + [1963] = {.lex_state = 20}, + [1964] = {.lex_state = 12}, + [1965] = {.lex_state = 323}, + [1966] = {.lex_state = 44}, + [1967] = {.lex_state = 14}, + [1968] = {.lex_state = 8}, + [1969] = {.lex_state = 14}, + [1970] = {.lex_state = 26}, + [1971] = {.lex_state = 8}, + [1972] = {.lex_state = 14}, + [1973] = {.lex_state = 14}, + [1974] = {.lex_state = 18}, + [1975] = {.lex_state = 26}, + [1976] = {.lex_state = 20}, + [1977] = {.lex_state = 319}, + [1978] = {.lex_state = 44}, + [1979] = {.lex_state = 319}, + [1980] = {.lex_state = 323}, + [1981] = {.lex_state = 26}, + [1982] = {.lex_state = 323}, + [1983] = {.lex_state = 319}, + [1984] = {.lex_state = 44}, + [1985] = {.lex_state = 14}, + [1986] = {.lex_state = 323}, + [1987] = {.lex_state = 323}, + [1988] = {.lex_state = 14}, + [1989] = {.lex_state = 44}, + [1990] = {.lex_state = 323}, + [1991] = {.lex_state = 26}, + [1992] = {.lex_state = 14}, + [1993] = {.lex_state = 44}, + [1994] = {.lex_state = 319}, [1995] = {.lex_state = 12}, - [1996] = {.lex_state = 12}, - [1997] = {.lex_state = 12}, - [1998] = {.lex_state = 12}, - [1999] = {.lex_state = 321}, - [2000] = {.lex_state = 320}, - [2001] = {.lex_state = 20}, - [2002] = {.lex_state = 12}, - [2003] = {.lex_state = 12}, - [2004] = {.lex_state = 12}, - [2005] = {.lex_state = 12}, - [2006] = {.lex_state = 19}, - [2007] = {.lex_state = 8}, - [2008] = {.lex_state = 7}, - [2009] = {.lex_state = 321}, - [2010] = {.lex_state = 321}, - [2011] = {.lex_state = 320}, - [2012] = {.lex_state = 12}, - [2013] = {.lex_state = 12}, - [2014] = {.lex_state = 334}, - [2015] = {.lex_state = 334}, - [2016] = {.lex_state = 15}, - [2017] = {.lex_state = 7}, - [2018] = {.lex_state = 44}, - [2019] = {.lex_state = 44}, - [2020] = {.lex_state = 334}, - [2021] = {.lex_state = 12}, - [2022] = {.lex_state = 12}, - [2023] = {.lex_state = 12}, - [2024] = {.lex_state = 19}, - [2025] = {.lex_state = 12}, - [2026] = {.lex_state = 19}, - [2027] = {.lex_state = 7}, - [2028] = {.lex_state = 19}, - [2029] = {.lex_state = 12}, - [2030] = {.lex_state = 12}, - [2031] = {.lex_state = 12}, - [2032] = {.lex_state = 12}, - [2033] = {.lex_state = 12}, - [2034] = {.lex_state = 12}, - [2035] = {.lex_state = 12}, - [2036] = {.lex_state = 12}, - [2037] = {.lex_state = 12}, - [2038] = {.lex_state = 19}, - [2039] = {.lex_state = 12}, - [2040] = {.lex_state = 12}, - [2041] = {.lex_state = 7}, - [2042] = {.lex_state = 321}, - [2043] = {.lex_state = 7}, - [2044] = {.lex_state = 334}, - [2045] = {.lex_state = 322}, - [2046] = {.lex_state = 320}, - [2047] = {.lex_state = 320}, - [2048] = {.lex_state = 12}, - [2049] = {.lex_state = 15}, - [2050] = {.lex_state = 321}, - [2051] = {.lex_state = 19}, - [2052] = {.lex_state = 19}, - [2053] = {.lex_state = 12}, - [2054] = {.lex_state = 44}, - [2055] = {.lex_state = 321}, - [2056] = {.lex_state = 12}, - [2057] = {.lex_state = 334}, - [2058] = {.lex_state = 12}, - [2059] = {.lex_state = 322}, - [2060] = {.lex_state = 334}, - [2061] = {.lex_state = 334}, - [2062] = {.lex_state = 15}, - [2063] = {.lex_state = 7}, - [2064] = {.lex_state = 21}, - [2065] = {.lex_state = 340}, - [2066] = {.lex_state = 21}, - [2067] = {.lex_state = 7}, - [2068] = {.lex_state = 12}, - [2069] = {.lex_state = 15}, + [1996] = {.lex_state = 319}, + [1997] = {.lex_state = 14}, + [1998] = {.lex_state = 319}, + [1999] = {.lex_state = 26}, + [2000] = {.lex_state = 14}, + [2001] = {.lex_state = 323}, + [2002] = {.lex_state = 18}, + [2003] = {.lex_state = 20}, + [2004] = {.lex_state = 14}, + [2005] = {.lex_state = 20}, + [2006] = {.lex_state = 8}, + [2007] = {.lex_state = 323}, + [2008] = {.lex_state = 8}, + [2009] = {.lex_state = 14}, + [2010] = {.lex_state = 8}, + [2011] = {.lex_state = 8}, + [2012] = {.lex_state = 20}, + [2013] = {.lex_state = 323}, + [2014] = {.lex_state = 323}, + [2015] = {.lex_state = 26}, + [2016] = {.lex_state = 20}, + [2017] = {.lex_state = 335}, + [2018] = {.lex_state = 335}, + [2019] = {.lex_state = 20}, + [2020] = {.lex_state = 319}, + [2021] = {.lex_state = 8}, + [2022] = {.lex_state = 323}, + [2023] = {.lex_state = 323}, + [2024] = {.lex_state = 335}, + [2025] = {.lex_state = 14}, + [2026] = {.lex_state = 14}, + [2027] = {.lex_state = 26}, + [2028] = {.lex_state = 321}, + [2029] = {.lex_state = 319}, + [2030] = {.lex_state = 319}, + [2031] = {.lex_state = 321}, + [2032] = {.lex_state = 323}, + [2033] = {.lex_state = 321}, + [2034] = {.lex_state = 323}, + [2035] = {.lex_state = 14}, + [2036] = {.lex_state = 14}, + [2037] = {.lex_state = 321}, + [2038] = {.lex_state = 335}, + [2039] = {.lex_state = 20}, + [2040] = {.lex_state = 8}, + [2041] = {.lex_state = 319}, + [2042] = {.lex_state = 319}, + [2043] = {.lex_state = 322}, + [2044] = {.lex_state = 321}, + [2045] = {.lex_state = 335}, + [2046] = {.lex_state = 322}, + [2047] = {.lex_state = 322}, + [2048] = {.lex_state = 8}, + [2049] = {.lex_state = 319}, + [2050] = {.lex_state = 8}, + [2051] = {.lex_state = 14}, + [2052] = {.lex_state = 335}, + [2053] = {.lex_state = 335}, + [2054] = {.lex_state = 322}, + [2055] = {.lex_state = 335}, + [2056] = {.lex_state = 321}, + [2057] = {.lex_state = 321}, + [2058] = {.lex_state = 44}, + [2059] = {.lex_state = 323}, + [2060] = {.lex_state = 14}, + [2061] = {.lex_state = 322}, + [2062] = {.lex_state = 321}, + [2063] = {.lex_state = 319}, + [2064] = {.lex_state = 322}, + [2065] = {.lex_state = 321}, + [2066] = {.lex_state = 44}, + [2067] = {.lex_state = 14}, + [2068] = {.lex_state = 321}, + [2069] = {.lex_state = 44}, [2070] = {.lex_state = 322}, - [2071] = {.lex_state = 334}, - [2072] = {.lex_state = 322}, - [2073] = {.lex_state = 19}, - [2074] = {.lex_state = 322}, - [2075] = {.lex_state = 321}, - [2076] = {.lex_state = 322}, - [2077] = {.lex_state = 321}, - [2078] = {.lex_state = 322}, - [2079] = {.lex_state = 322}, - [2080] = {.lex_state = 320}, - [2081] = {.lex_state = 19}, - [2082] = {.lex_state = 7}, + [2071] = {.lex_state = 20}, + [2072] = {.lex_state = 321}, + [2073] = {.lex_state = 322}, + [2074] = {.lex_state = 335}, + [2075] = {.lex_state = 322}, + [2076] = {.lex_state = 20}, + [2077] = {.lex_state = 322}, + [2078] = {.lex_state = 323}, + [2079] = {.lex_state = 335}, + [2080] = {.lex_state = 321}, + [2081] = {.lex_state = 323}, + [2082] = {.lex_state = 335}, [2083] = {.lex_state = 322}, - [2084] = {.lex_state = 320}, - [2085] = {.lex_state = 319}, - [2086] = {.lex_state = 319}, - [2087] = {.lex_state = 322}, - [2088] = {.lex_state = 320}, - [2089] = {.lex_state = 15}, - [2090] = {.lex_state = 321}, - [2091] = {.lex_state = 322}, - [2092] = {.lex_state = 21}, - [2093] = {.lex_state = 321}, - [2094] = {.lex_state = 321}, - [2095] = {.lex_state = 321}, - [2096] = {.lex_state = 319}, - [2097] = {.lex_state = 322}, - [2098] = {.lex_state = 334}, - [2099] = {.lex_state = 322}, - [2100] = {.lex_state = 19}, - [2101] = {.lex_state = 319}, - [2102] = {.lex_state = 322}, - [2103] = {.lex_state = 334}, - [2104] = {.lex_state = 319}, - [2105] = {.lex_state = 322}, - [2106] = {.lex_state = 44}, - [2107] = {.lex_state = 319}, - [2108] = {.lex_state = 322}, - [2109] = {.lex_state = 44}, - [2110] = {.lex_state = 44}, - [2111] = {.lex_state = 7}, - [2112] = {.lex_state = 19}, - [2113] = {.lex_state = 334}, - [2114] = {.lex_state = 319}, - [2115] = {.lex_state = 319}, - [2116] = {.lex_state = 321}, - [2117] = {.lex_state = 322}, - [2118] = {.lex_state = 319}, - [2119] = {.lex_state = 44}, - [2120] = {.lex_state = 21}, - [2121] = {.lex_state = 7}, - [2122] = {.lex_state = 320}, - [2123] = {.lex_state = 44}, - [2124] = {.lex_state = 44}, - [2125] = {.lex_state = 322}, - [2126] = {.lex_state = 334}, - [2127] = {.lex_state = 322}, - [2128] = {.lex_state = 319}, - [2129] = {.lex_state = 321}, - [2130] = {.lex_state = 319}, - [2131] = {.lex_state = 321}, - [2132] = {.lex_state = 319}, - [2133] = {.lex_state = 15}, - [2134] = {.lex_state = 15}, - [2135] = {.lex_state = 319}, - [2136] = {.lex_state = 44}, - [2137] = {.lex_state = 319}, - [2138] = {.lex_state = 319}, - [2139] = {.lex_state = 334}, - [2140] = {.lex_state = 319}, - [2141] = {.lex_state = 44}, - [2142] = {.lex_state = 334}, - [2143] = {.lex_state = 334}, - [2144] = {.lex_state = 334}, - [2145] = {.lex_state = 334}, - [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 319}, - [2148] = {.lex_state = 320}, - [2149] = {.lex_state = 340}, - [2150] = {.lex_state = 44}, - [2151] = {.lex_state = 319}, - [2152] = {.lex_state = 319}, - [2153] = {.lex_state = 7}, - [2154] = {.lex_state = 7}, - [2155] = {.lex_state = 334}, - [2156] = {.lex_state = 320}, - [2157] = {.lex_state = 319}, - [2158] = {.lex_state = 322}, - [2159] = {.lex_state = 320}, - [2160] = {.lex_state = 334}, - [2161] = {.lex_state = 322}, - [2162] = {.lex_state = 322}, - [2163] = {.lex_state = 19}, - [2164] = {.lex_state = 334}, - [2165] = {.lex_state = 322}, - [2166] = {.lex_state = 322}, - [2167] = {.lex_state = 322}, - [2168] = {.lex_state = 19}, - [2169] = {.lex_state = 322}, - [2170] = {.lex_state = 334}, - [2171] = {.lex_state = 319}, - [2172] = {.lex_state = 15}, - [2173] = {.lex_state = 7}, + [2084] = {.lex_state = 44}, + [2085] = {.lex_state = 335}, + [2086] = {.lex_state = 323}, + [2087] = {.lex_state = 12}, + [2088] = {.lex_state = 20}, + [2089] = {.lex_state = 20}, + [2090] = {.lex_state = 19}, + [2091] = {.lex_state = 335}, + [2092] = {.lex_state = 322}, + [2093] = {.lex_state = 19}, + [2094] = {.lex_state = 335}, + [2095] = {.lex_state = 7}, + [2096] = {.lex_state = 335}, + [2097] = {.lex_state = 335}, + [2098] = {.lex_state = 15}, + [2099] = {.lex_state = 19}, + [2100] = {.lex_state = 12}, + [2101] = {.lex_state = 322}, + [2102] = {.lex_state = 15}, + [2103] = {.lex_state = 323}, + [2104] = {.lex_state = 322}, + [2105] = {.lex_state = 19}, + [2106] = {.lex_state = 12}, + [2107] = {.lex_state = 12}, + [2108] = {.lex_state = 323}, + [2109] = {.lex_state = 8}, + [2110] = {.lex_state = 322}, + [2111] = {.lex_state = 12}, + [2112] = {.lex_state = 323}, + [2113] = {.lex_state = 12}, + [2114] = {.lex_state = 12}, + [2115] = {.lex_state = 12}, + [2116] = {.lex_state = 323}, + [2117] = {.lex_state = 12}, + [2118] = {.lex_state = 12}, + [2119] = {.lex_state = 12}, + [2120] = {.lex_state = 322}, + [2121] = {.lex_state = 323}, + [2122] = {.lex_state = 12}, + [2123] = {.lex_state = 12}, + [2124] = {.lex_state = 7}, + [2125] = {.lex_state = 323}, + [2126] = {.lex_state = 12}, + [2127] = {.lex_state = 323}, + [2128] = {.lex_state = 12}, + [2129] = {.lex_state = 12}, + [2130] = {.lex_state = 7}, + [2131] = {.lex_state = 12}, + [2132] = {.lex_state = 12}, + [2133] = {.lex_state = 12}, + [2134] = {.lex_state = 335}, + [2135] = {.lex_state = 12}, + [2136] = {.lex_state = 322}, + [2137] = {.lex_state = 321}, + [2138] = {.lex_state = 21}, + [2139] = {.lex_state = 21}, + [2140] = {.lex_state = 7}, + [2141] = {.lex_state = 323}, + [2142] = {.lex_state = 12}, + [2143] = {.lex_state = 321}, + [2144] = {.lex_state = 320}, + [2145] = {.lex_state = 12}, + [2146] = {.lex_state = 335}, + [2147] = {.lex_state = 12}, + [2148] = {.lex_state = 12}, + [2149] = {.lex_state = 12}, + [2150] = {.lex_state = 12}, + [2151] = {.lex_state = 320}, + [2152] = {.lex_state = 12}, + [2153] = {.lex_state = 12}, + [2154] = {.lex_state = 12}, + [2155] = {.lex_state = 12}, + [2156] = {.lex_state = 7}, + [2157] = {.lex_state = 12}, + [2158] = {.lex_state = 12}, + [2159] = {.lex_state = 12}, + [2160] = {.lex_state = 12}, + [2161] = {.lex_state = 12}, + [2162] = {.lex_state = 12}, + [2163] = {.lex_state = 7}, + [2164] = {.lex_state = 322}, + [2165] = {.lex_state = 335}, + [2166] = {.lex_state = 8}, + [2167] = {.lex_state = 323}, + [2168] = {.lex_state = 12}, + [2169] = {.lex_state = 7}, + [2170] = {.lex_state = 322}, + [2171] = {.lex_state = 335}, + [2172] = {.lex_state = 321}, + [2173] = {.lex_state = 19}, [2174] = {.lex_state = 322}, - [2175] = {.lex_state = 319}, - [2176] = {.lex_state = 322}, - [2177] = {.lex_state = 322}, - [2178] = {.lex_state = 320}, + [2175] = {.lex_state = 12}, + [2176] = {.lex_state = 12}, + [2177] = {.lex_state = 19}, + [2178] = {.lex_state = 322}, [2179] = {.lex_state = 7}, - [2180] = {.lex_state = 322}, - [2181] = {.lex_state = 322}, - [2182] = {.lex_state = 322}, - [2183] = {.lex_state = 319}, - [2184] = {.lex_state = 44}, + [2180] = {.lex_state = 12}, + [2181] = {.lex_state = 335}, + [2182] = {.lex_state = 12}, + [2183] = {.lex_state = 322}, + [2184] = {.lex_state = 12}, [2185] = {.lex_state = 322}, - [2186] = {.lex_state = 322}, - [2187] = {.lex_state = 322}, - [2188] = {.lex_state = 319}, - [2189] = {.lex_state = 319}, + [2186] = {.lex_state = 323}, + [2187] = {.lex_state = 19}, + [2188] = {.lex_state = 12}, + [2189] = {.lex_state = 12}, [2190] = {.lex_state = 322}, - [2191] = {.lex_state = 322}, - [2192] = {.lex_state = 319}, - [2193] = {.lex_state = 15}, - [2194] = {.lex_state = 322}, - [2195] = {.lex_state = 44}, - [2196] = {.lex_state = 322}, - [2197] = {.lex_state = 322}, - [2198] = {.lex_state = 322}, - [2199] = {.lex_state = 334}, - [2200] = {.lex_state = 321}, - [2201] = {.lex_state = 319}, + [2191] = {.lex_state = 12}, + [2192] = {.lex_state = 12}, + [2193] = {.lex_state = 12}, + [2194] = {.lex_state = 19}, + [2195] = {.lex_state = 15}, + [2196] = {.lex_state = 12}, + [2197] = {.lex_state = 12}, + [2198] = {.lex_state = 19}, + [2199] = {.lex_state = 7}, + [2200] = {.lex_state = 12}, + [2201] = {.lex_state = 12}, [2202] = {.lex_state = 322}, - [2203] = {.lex_state = 322}, - [2204] = {.lex_state = 322}, - [2205] = {.lex_state = 322}, - [2206] = {.lex_state = 322}, + [2203] = {.lex_state = 12}, + [2204] = {.lex_state = 12}, + [2205] = {.lex_state = 323}, + [2206] = {.lex_state = 7}, [2207] = {.lex_state = 321}, - [2208] = {.lex_state = 322}, - [2209] = {.lex_state = 322}, - [2210] = {.lex_state = 322}, - [2211] = {.lex_state = 319}, - [2212] = {.lex_state = 322}, - [2213] = {.lex_state = 322}, - [2214] = {.lex_state = 322}, - [2215] = {.lex_state = 322}, - [2216] = {.lex_state = 322}, - [2217] = {.lex_state = 319}, - [2218] = {.lex_state = 7}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 319}, - [2221] = {.lex_state = 319}, - [2222] = {.lex_state = 44}, - [2223] = {.lex_state = 322}, - [2224] = {.lex_state = 322}, - [2225] = {.lex_state = 319}, - [2226] = {.lex_state = 319}, - [2227] = {.lex_state = 319}, - [2228] = {.lex_state = 319}, - [2229] = {.lex_state = 322}, - [2230] = {.lex_state = 321}, - [2231] = {.lex_state = 322}, - [2232] = {.lex_state = 334}, - [2233] = {.lex_state = 21}, - [2234] = {.lex_state = 8}, - [2235] = {.lex_state = 322}, - [2236] = {.lex_state = 8}, - [2237] = {.lex_state = 8}, - [2238] = {.lex_state = 8}, - [2239] = {.lex_state = 8}, - [2240] = {.lex_state = 322}, - [2241] = {.lex_state = 322}, - [2242] = {.lex_state = 322}, - [2243] = {.lex_state = 322}, - [2244] = {.lex_state = 319}, - [2245] = {.lex_state = 21}, - [2246] = {.lex_state = 322}, - [2247] = {.lex_state = 8}, - [2248] = {.lex_state = 322}, - [2249] = {.lex_state = 322}, - [2250] = {.lex_state = 322}, - [2251] = {.lex_state = 322}, - [2252] = {.lex_state = 20}, + [2208] = {.lex_state = 19}, + [2209] = {.lex_state = 7}, + [2210] = {.lex_state = 19}, + [2211] = {.lex_state = 322}, + [2212] = {.lex_state = 341}, + [2213] = {.lex_state = 12}, + [2214] = {.lex_state = 12}, + [2215] = {.lex_state = 44}, + [2216] = {.lex_state = 15}, + [2217] = {.lex_state = 321}, + [2218] = {.lex_state = 321}, + [2219] = {.lex_state = 320}, + [2220] = {.lex_state = 320}, + [2221] = {.lex_state = 320}, + [2222] = {.lex_state = 15}, + [2223] = {.lex_state = 321}, + [2224] = {.lex_state = 7}, + [2225] = {.lex_state = 320}, + [2226] = {.lex_state = 320}, + [2227] = {.lex_state = 15}, + [2228] = {.lex_state = 7}, + [2229] = {.lex_state = 335}, + [2230] = {.lex_state = 320}, + [2231] = {.lex_state = 320}, + [2232] = {.lex_state = 335}, + [2233] = {.lex_state = 322}, + [2234] = {.lex_state = 44}, + [2235] = {.lex_state = 335}, + [2236] = {.lex_state = 323}, + [2237] = {.lex_state = 321}, + [2238] = {.lex_state = 323}, + [2239] = {.lex_state = 320}, + [2240] = {.lex_state = 323}, + [2241] = {.lex_state = 320}, + [2242] = {.lex_state = 320}, + [2243] = {.lex_state = 320}, + [2244] = {.lex_state = 323}, + [2245] = {.lex_state = 322}, + [2246] = {.lex_state = 320}, + [2247] = {.lex_state = 19}, + [2248] = {.lex_state = 323}, + [2249] = {.lex_state = 335}, + [2250] = {.lex_state = 19}, + [2251] = {.lex_state = 335}, + [2252] = {.lex_state = 323}, [2253] = {.lex_state = 322}, - [2254] = {.lex_state = 21}, - [2255] = {.lex_state = 8}, - [2256] = {.lex_state = 8}, - [2257] = {.lex_state = 322}, - [2258] = {.lex_state = 8}, - [2259] = {.lex_state = 15}, - [2260] = {.lex_state = 322}, - [2261] = {.lex_state = 322}, - [2262] = {.lex_state = 20}, - [2263] = {.lex_state = 319}, - [2264] = {.lex_state = 8}, - [2265] = {.lex_state = 20}, - [2266] = {.lex_state = 8}, - [2267] = {.lex_state = 8}, - [2268] = {.lex_state = 322}, - [2269] = {.lex_state = 322}, - [2270] = {.lex_state = 322}, - [2271] = {.lex_state = 322}, - [2272] = {.lex_state = 20}, - [2273] = {.lex_state = 20}, - [2274] = {.lex_state = 20}, - [2275] = {.lex_state = 8}, - [2276] = {.lex_state = 21}, - [2277] = {.lex_state = 20}, - [2278] = {.lex_state = 15}, - [2279] = {.lex_state = 20}, - [2280] = {.lex_state = 20}, - [2281] = {.lex_state = 20}, - [2282] = {.lex_state = 319}, - [2283] = {.lex_state = 20}, - [2284] = {.lex_state = 20}, - [2285] = {.lex_state = 20}, - [2286] = {.lex_state = 20}, - [2287] = {.lex_state = 20}, - [2288] = {.lex_state = 20}, - [2289] = {.lex_state = 8}, - [2290] = {.lex_state = 20}, - [2291] = {.lex_state = 319}, - [2292] = {.lex_state = 319}, - [2293] = {.lex_state = 15}, - [2294] = {.lex_state = 15}, - [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 20}, - [2297] = {.lex_state = 322}, + [2254] = {.lex_state = 15}, + [2255] = {.lex_state = 15}, + [2256] = {.lex_state = 21}, + [2257] = {.lex_state = 321}, + [2258] = {.lex_state = 341}, + [2259] = {.lex_state = 320}, + [2260] = {.lex_state = 320}, + [2261] = {.lex_state = 320}, + [2262] = {.lex_state = 323}, + [2263] = {.lex_state = 44}, + [2264] = {.lex_state = 335}, + [2265] = {.lex_state = 323}, + [2266] = {.lex_state = 320}, + [2267] = {.lex_state = 21}, + [2268] = {.lex_state = 44}, + [2269] = {.lex_state = 335}, + [2270] = {.lex_state = 44}, + [2271] = {.lex_state = 7}, + [2272] = {.lex_state = 335}, + [2273] = {.lex_state = 335}, + [2274] = {.lex_state = 321}, + [2275] = {.lex_state = 322}, + [2276] = {.lex_state = 322}, + [2277] = {.lex_state = 322}, + [2278] = {.lex_state = 7}, + [2279] = {.lex_state = 322}, + [2280] = {.lex_state = 320}, + [2281] = {.lex_state = 323}, + [2282] = {.lex_state = 335}, + [2283] = {.lex_state = 323}, + [2284] = {.lex_state = 323}, + [2285] = {.lex_state = 323}, + [2286] = {.lex_state = 335}, + [2287] = {.lex_state = 323}, + [2288] = {.lex_state = 320}, + [2289] = {.lex_state = 323}, + [2290] = {.lex_state = 323}, + [2291] = {.lex_state = 322}, + [2292] = {.lex_state = 323}, + [2293] = {.lex_state = 323}, + [2294] = {.lex_state = 323}, + [2295] = {.lex_state = 323}, + [2296] = {.lex_state = 323}, + [2297] = {.lex_state = 323}, [2298] = {.lex_state = 320}, - [2299] = {.lex_state = 21}, - [2300] = {.lex_state = 8}, - [2301] = {.lex_state = 20}, - [2302] = {.lex_state = 8}, - [2303] = {.lex_state = 20}, - [2304] = {.lex_state = 20}, - [2305] = {.lex_state = 320}, - [2306] = {.lex_state = 20}, - [2307] = {.lex_state = 8}, - [2308] = {.lex_state = 8}, - [2309] = {.lex_state = 20}, - [2310] = {.lex_state = 20}, - [2311] = {.lex_state = 8}, - [2312] = {.lex_state = 8}, - [2313] = {.lex_state = 20}, - [2314] = {.lex_state = 20}, - [2315] = {.lex_state = 322}, - [2316] = {.lex_state = 8}, - [2317] = {.lex_state = 8}, - [2318] = {.lex_state = 21}, - [2319] = {.lex_state = 8}, - [2320] = {.lex_state = 8}, - [2321] = {.lex_state = 322}, - [2322] = {.lex_state = 20}, - [2323] = {.lex_state = 20}, - [2324] = {.lex_state = 21}, - [2325] = {.lex_state = 20}, - [2326] = {.lex_state = 15}, - [2327] = {.lex_state = 21}, - [2328] = {.lex_state = 20}, - [2329] = {.lex_state = 20}, - [2330] = {.lex_state = 20}, - [2331] = {.lex_state = 322}, - [2332] = {.lex_state = 322}, - [2333] = {.lex_state = 322}, - [2334] = {.lex_state = 20}, - [2335] = {.lex_state = 8}, - [2336] = {.lex_state = 322}, - [2337] = {.lex_state = 322}, - [2338] = {.lex_state = 322}, + [2299] = {.lex_state = 320}, + [2300] = {.lex_state = 323}, + [2301] = {.lex_state = 323}, + [2302] = {.lex_state = 19}, + [2303] = {.lex_state = 335}, + [2304] = {.lex_state = 323}, + [2305] = {.lex_state = 323}, + [2306] = {.lex_state = 323}, + [2307] = {.lex_state = 323}, + [2308] = {.lex_state = 335}, + [2309] = {.lex_state = 320}, + [2310] = {.lex_state = 323}, + [2311] = {.lex_state = 323}, + [2312] = {.lex_state = 320}, + [2313] = {.lex_state = 323}, + [2314] = {.lex_state = 323}, + [2315] = {.lex_state = 335}, + [2316] = {.lex_state = 323}, + [2317] = {.lex_state = 323}, + [2318] = {.lex_state = 320}, + [2319] = {.lex_state = 7}, + [2320] = {.lex_state = 320}, + [2321] = {.lex_state = 323}, + [2322] = {.lex_state = 7}, + [2323] = {.lex_state = 321}, + [2324] = {.lex_state = 323}, + [2325] = {.lex_state = 320}, + [2326] = {.lex_state = 7}, + [2327] = {.lex_state = 320}, + [2328] = {.lex_state = 323}, + [2329] = {.lex_state = 323}, + [2330] = {.lex_state = 323}, + [2331] = {.lex_state = 323}, + [2332] = {.lex_state = 323}, + [2333] = {.lex_state = 323}, + [2334] = {.lex_state = 322}, + [2335] = {.lex_state = 335}, + [2336] = {.lex_state = 323}, + [2337] = {.lex_state = 323}, + [2338] = {.lex_state = 320}, [2339] = {.lex_state = 322}, - [2340] = {.lex_state = 322}, - [2341] = {.lex_state = 21}, - [2342] = {.lex_state = 20}, - [2343] = {.lex_state = 8}, - [2344] = {.lex_state = 21}, - [2345] = {.lex_state = 8}, - [2346] = {.lex_state = 322}, - [2347] = {.lex_state = 322}, - [2348] = {.lex_state = 21}, - [2349] = {.lex_state = 21}, - [2350] = {.lex_state = 319}, - [2351] = {.lex_state = 319}, - [2352] = {.lex_state = 15}, - [2353] = {.lex_state = 20}, - [2354] = {.lex_state = 8}, - [2355] = {.lex_state = 322}, - [2356] = {.lex_state = 20}, - [2357] = {.lex_state = 322}, - [2358] = {.lex_state = 15}, - [2359] = {.lex_state = 20}, - [2360] = {.lex_state = 322}, - [2361] = {.lex_state = 20}, - [2362] = {.lex_state = 15}, - [2363] = {.lex_state = 322}, - [2364] = {.lex_state = 20}, - [2365] = {.lex_state = 322}, - [2366] = {.lex_state = 322}, - [2367] = {.lex_state = 322}, - [2368] = {.lex_state = 15}, - [2369] = {.lex_state = 15}, - [2370] = {.lex_state = 15}, - [2371] = {.lex_state = 15}, - [2372] = {.lex_state = 15}, - [2373] = {.lex_state = 15}, + [2340] = {.lex_state = 323}, + [2341] = {.lex_state = 19}, + [2342] = {.lex_state = 323}, + [2343] = {.lex_state = 320}, + [2344] = {.lex_state = 320}, + [2345] = {.lex_state = 320}, + [2346] = {.lex_state = 19}, + [2347] = {.lex_state = 323}, + [2348] = {.lex_state = 323}, + [2349] = {.lex_state = 321}, + [2350] = {.lex_state = 323}, + [2351] = {.lex_state = 323}, + [2352] = {.lex_state = 323}, + [2353] = {.lex_state = 320}, + [2354] = {.lex_state = 44}, + [2355] = {.lex_state = 323}, + [2356] = {.lex_state = 323}, + [2357] = {.lex_state = 15}, + [2358] = {.lex_state = 323}, + [2359] = {.lex_state = 323}, + [2360] = {.lex_state = 323}, + [2361] = {.lex_state = 15}, + [2362] = {.lex_state = 323}, + [2363] = {.lex_state = 320}, + [2364] = {.lex_state = 323}, + [2365] = {.lex_state = 323}, + [2366] = {.lex_state = 44}, + [2367] = {.lex_state = 323}, + [2368] = {.lex_state = 44}, + [2369] = {.lex_state = 323}, + [2370] = {.lex_state = 323}, + [2371] = {.lex_state = 323}, + [2372] = {.lex_state = 320}, + [2373] = {.lex_state = 20}, [2374] = {.lex_state = 8}, - [2375] = {.lex_state = 8}, - [2376] = {.lex_state = 8}, - [2377] = {.lex_state = 8}, - [2378] = {.lex_state = 8}, - [2379] = {.lex_state = 8}, - [2380] = {.lex_state = 8}, + [2375] = {.lex_state = 20}, + [2376] = {.lex_state = 21}, + [2377] = {.lex_state = 21}, + [2378] = {.lex_state = 323}, + [2379] = {.lex_state = 21}, + [2380] = {.lex_state = 323}, [2381] = {.lex_state = 8}, [2382] = {.lex_state = 8}, [2383] = {.lex_state = 8}, - [2384] = {.lex_state = 8}, - [2385] = {.lex_state = 8}, - [2386] = {.lex_state = 8}, - [2387] = {.lex_state = 322}, - [2388] = {.lex_state = 15}, - [2389] = {.lex_state = 15}, - [2390] = {.lex_state = 319}, + [2384] = {.lex_state = 323}, + [2385] = {.lex_state = 21}, + [2386] = {.lex_state = 323}, + [2387] = {.lex_state = 323}, + [2388] = {.lex_state = 8}, + [2389] = {.lex_state = 321}, + [2390] = {.lex_state = 20}, [2391] = {.lex_state = 15}, - [2392] = {.lex_state = 320}, - [2393] = {.lex_state = 320}, - [2394] = {.lex_state = 320}, - [2395] = {.lex_state = 320}, - [2396] = {.lex_state = 320}, - [2397] = {.lex_state = 319}, - [2398] = {.lex_state = 320}, - [2399] = {.lex_state = 320}, - [2400] = {.lex_state = 320}, - [2401] = {.lex_state = 320}, - [2402] = {.lex_state = 320}, - [2403] = {.lex_state = 320}, - [2404] = {.lex_state = 319}, - [2405] = {.lex_state = 320}, - [2406] = {.lex_state = 320}, - [2407] = {.lex_state = 18}, - [2408] = {.lex_state = 320}, - [2409] = {.lex_state = 320}, - [2410] = {.lex_state = 320}, - [2411] = {.lex_state = 320}, - [2412] = {.lex_state = 320}, - [2413] = {.lex_state = 320}, - [2414] = {.lex_state = 320}, - [2415] = {.lex_state = 320}, - [2416] = {.lex_state = 320}, - [2417] = {.lex_state = 320}, - [2418] = {.lex_state = 320}, - [2419] = {.lex_state = 320}, - [2420] = {.lex_state = 320}, - [2421] = {.lex_state = 320}, - [2422] = {.lex_state = 320}, - [2423] = {.lex_state = 320}, - [2424] = {.lex_state = 320}, - [2425] = {.lex_state = 320}, - [2426] = {.lex_state = 320}, - [2427] = {.lex_state = 320}, - [2428] = {.lex_state = 320}, - [2429] = {.lex_state = 320}, - [2430] = {.lex_state = 320}, - [2431] = {.lex_state = 320}, + [2392] = {.lex_state = 15}, + [2393] = {.lex_state = 15}, + [2394] = {.lex_state = 15}, + [2395] = {.lex_state = 20}, + [2396] = {.lex_state = 8}, + [2397] = {.lex_state = 15}, + [2398] = {.lex_state = 20}, + [2399] = {.lex_state = 20}, + [2400] = {.lex_state = 20}, + [2401] = {.lex_state = 20}, + [2402] = {.lex_state = 8}, + [2403] = {.lex_state = 20}, + [2404] = {.lex_state = 320}, + [2405] = {.lex_state = 20}, + [2406] = {.lex_state = 20}, + [2407] = {.lex_state = 20}, + [2408] = {.lex_state = 20}, + [2409] = {.lex_state = 20}, + [2410] = {.lex_state = 20}, + [2411] = {.lex_state = 15}, + [2412] = {.lex_state = 20}, + [2413] = {.lex_state = 20}, + [2414] = {.lex_state = 323}, + [2415] = {.lex_state = 15}, + [2416] = {.lex_state = 323}, + [2417] = {.lex_state = 20}, + [2418] = {.lex_state = 20}, + [2419] = {.lex_state = 323}, + [2420] = {.lex_state = 20}, + [2421] = {.lex_state = 20}, + [2422] = {.lex_state = 323}, + [2423] = {.lex_state = 20}, + [2424] = {.lex_state = 20}, + [2425] = {.lex_state = 20}, + [2426] = {.lex_state = 323}, + [2427] = {.lex_state = 20}, + [2428] = {.lex_state = 20}, + [2429] = {.lex_state = 20}, + [2430] = {.lex_state = 20}, + [2431] = {.lex_state = 20}, [2432] = {.lex_state = 320}, [2433] = {.lex_state = 320}, - [2434] = {.lex_state = 320}, - [2435] = {.lex_state = 320}, - [2436] = {.lex_state = 320}, - [2437] = {.lex_state = 320}, - [2438] = {.lex_state = 320}, - [2439] = {.lex_state = 320}, - [2440] = {.lex_state = 320}, - [2441] = {.lex_state = 320}, - [2442] = {.lex_state = 320}, - [2443] = {.lex_state = 320}, - [2444] = {.lex_state = 320}, - [2445] = {.lex_state = 320}, - [2446] = {.lex_state = 320}, - [2447] = {.lex_state = 320}, - [2448] = {.lex_state = 320}, - [2449] = {.lex_state = 320}, + [2434] = {.lex_state = 20}, + [2435] = {.lex_state = 15}, + [2436] = {.lex_state = 323}, + [2437] = {.lex_state = 323}, + [2438] = {.lex_state = 323}, + [2439] = {.lex_state = 21}, + [2440] = {.lex_state = 323}, + [2441] = {.lex_state = 323}, + [2442] = {.lex_state = 323}, + [2443] = {.lex_state = 323}, + [2444] = {.lex_state = 323}, + [2445] = {.lex_state = 8}, + [2446] = {.lex_state = 20}, + [2447] = {.lex_state = 323}, + [2448] = {.lex_state = 20}, + [2449] = {.lex_state = 21}, [2450] = {.lex_state = 320}, - [2451] = {.lex_state = 320}, - [2452] = {.lex_state = 21}, - [2453] = {.lex_state = 320}, - [2454] = {.lex_state = 320}, - [2455] = {.lex_state = 21}, - [2456] = {.lex_state = 320}, - [2457] = {.lex_state = 320}, - [2458] = {.lex_state = 320}, - [2459] = {.lex_state = 320}, - [2460] = {.lex_state = 320}, - [2461] = {.lex_state = 320}, - [2462] = {.lex_state = 320}, - [2463] = {.lex_state = 320}, - [2464] = {.lex_state = 320}, - [2465] = {.lex_state = 320}, - [2466] = {.lex_state = 320}, - [2467] = {.lex_state = 320}, - [2468] = {.lex_state = 320}, - [2469] = {.lex_state = 320}, - [2470] = {.lex_state = 320}, - [2471] = {.lex_state = 320}, - [2472] = {.lex_state = 320}, - [2473] = {.lex_state = 319}, - [2474] = {.lex_state = 320}, - [2475] = {.lex_state = 320}, - [2476] = {.lex_state = 320}, - [2477] = {.lex_state = 320}, - [2478] = {.lex_state = 320}, - [2479] = {.lex_state = 320}, - [2480] = {.lex_state = 320}, - [2481] = {.lex_state = 320}, - [2482] = {.lex_state = 320}, - [2483] = {.lex_state = 320}, - [2484] = {.lex_state = 20}, - [2485] = {.lex_state = 320}, - [2486] = {.lex_state = 320}, - [2487] = {.lex_state = 320}, - [2488] = {.lex_state = 320}, - [2489] = {.lex_state = 320}, - [2490] = {.lex_state = 320}, - [2491] = {.lex_state = 320}, - [2492] = {.lex_state = 320}, - [2493] = {.lex_state = 320}, - [2494] = {.lex_state = 320}, - [2495] = {.lex_state = 320}, - [2496] = {.lex_state = 320}, - [2497] = {.lex_state = 320}, - [2498] = {.lex_state = 320}, - [2499] = {.lex_state = 320}, - [2500] = {.lex_state = 320}, - [2501] = {.lex_state = 320}, - [2502] = {.lex_state = 320}, - [2503] = {.lex_state = 320}, - [2504] = {.lex_state = 320}, - [2505] = {.lex_state = 320}, - [2506] = {.lex_state = 320}, - [2507] = {.lex_state = 320}, - [2508] = {.lex_state = 320}, - [2509] = {.lex_state = 320}, - [2510] = {.lex_state = 320}, + [2451] = {.lex_state = 20}, + [2452] = {.lex_state = 323}, + [2453] = {.lex_state = 323}, + [2454] = {.lex_state = 20}, + [2455] = {.lex_state = 20}, + [2456] = {.lex_state = 323}, + [2457] = {.lex_state = 323}, + [2458] = {.lex_state = 8}, + [2459] = {.lex_state = 8}, + [2460] = {.lex_state = 8}, + [2461] = {.lex_state = 20}, + [2462] = {.lex_state = 20}, + [2463] = {.lex_state = 20}, + [2464] = {.lex_state = 20}, + [2465] = {.lex_state = 20}, + [2466] = {.lex_state = 20}, + [2467] = {.lex_state = 20}, + [2468] = {.lex_state = 20}, + [2469] = {.lex_state = 8}, + [2470] = {.lex_state = 20}, + [2471] = {.lex_state = 20}, + [2472] = {.lex_state = 20}, + [2473] = {.lex_state = 20}, + [2474] = {.lex_state = 20}, + [2475] = {.lex_state = 20}, + [2476] = {.lex_state = 20}, + [2477] = {.lex_state = 20}, + [2478] = {.lex_state = 20}, + [2479] = {.lex_state = 21}, + [2480] = {.lex_state = 20}, + [2481] = {.lex_state = 15}, + [2482] = {.lex_state = 8}, + [2483] = {.lex_state = 21}, + [2484] = {.lex_state = 8}, + [2485] = {.lex_state = 8}, + [2486] = {.lex_state = 321}, + [2487] = {.lex_state = 8}, + [2488] = {.lex_state = 8}, + [2489] = {.lex_state = 8}, + [2490] = {.lex_state = 15}, + [2491] = {.lex_state = 8}, + [2492] = {.lex_state = 8}, + [2493] = {.lex_state = 8}, + [2494] = {.lex_state = 8}, + [2495] = {.lex_state = 15}, + [2496] = {.lex_state = 15}, + [2497] = {.lex_state = 8}, + [2498] = {.lex_state = 8}, + [2499] = {.lex_state = 15}, + [2500] = {.lex_state = 15}, + [2501] = {.lex_state = 323}, + [2502] = {.lex_state = 8}, + [2503] = {.lex_state = 8}, + [2504] = {.lex_state = 21}, + [2505] = {.lex_state = 15}, + [2506] = {.lex_state = 8}, + [2507] = {.lex_state = 323}, + [2508] = {.lex_state = 15}, + [2509] = {.lex_state = 21}, + [2510] = {.lex_state = 323}, [2511] = {.lex_state = 320}, - [2512] = {.lex_state = 320}, - [2513] = {.lex_state = 320}, - [2514] = {.lex_state = 320}, - [2515] = {.lex_state = 320}, - [2516] = {.lex_state = 320}, - [2517] = {.lex_state = 320}, - [2518] = {.lex_state = 320}, - [2519] = {.lex_state = 320}, - [2520] = {.lex_state = 320}, - [2521] = {.lex_state = 320}, - [2522] = {.lex_state = 320}, - [2523] = {.lex_state = 320}, - [2524] = {.lex_state = 320}, - [2525] = {.lex_state = 320}, - [2526] = {.lex_state = 320}, - [2527] = {.lex_state = 320}, - [2528] = {.lex_state = 320}, - [2529] = {.lex_state = 320}, - [2530] = {.lex_state = 320}, - [2531] = {.lex_state = 320}, - [2532] = {.lex_state = 320}, - [2533] = {.lex_state = 320}, - [2534] = {.lex_state = 320}, - [2535] = {.lex_state = 320}, - [2536] = {.lex_state = 320}, - [2537] = {.lex_state = 320}, - [2538] = {.lex_state = 320}, - [2539] = {.lex_state = 320}, - [2540] = {.lex_state = 320}, - [2541] = {.lex_state = 320}, - [2542] = {.lex_state = 320}, - [2543] = {.lex_state = 320}, - [2544] = {.lex_state = 320}, - [2545] = {.lex_state = 320}, - [2546] = {.lex_state = 320}, - [2547] = {.lex_state = 320}, - [2548] = {.lex_state = 320}, - [2549] = {.lex_state = 320}, - [2550] = {.lex_state = 320}, - [2551] = {.lex_state = 320}, - [2552] = {.lex_state = 320}, - [2553] = {.lex_state = 320}, - [2554] = {.lex_state = 320}, + [2512] = {.lex_state = 323}, + [2513] = {.lex_state = 323}, + [2514] = {.lex_state = 323}, + [2515] = {.lex_state = 323}, + [2516] = {.lex_state = 323}, + [2517] = {.lex_state = 323}, + [2518] = {.lex_state = 323}, + [2519] = {.lex_state = 323}, + [2520] = {.lex_state = 323}, + [2521] = {.lex_state = 323}, + [2522] = {.lex_state = 323}, + [2523] = {.lex_state = 8}, + [2524] = {.lex_state = 323}, + [2525] = {.lex_state = 323}, + [2526] = {.lex_state = 8}, + [2527] = {.lex_state = 8}, + [2528] = {.lex_state = 8}, + [2529] = {.lex_state = 8}, + [2530] = {.lex_state = 8}, + [2531] = {.lex_state = 8}, + [2532] = {.lex_state = 8}, + [2533] = {.lex_state = 8}, + [2534] = {.lex_state = 8}, + [2535] = {.lex_state = 8}, + [2536] = {.lex_state = 8}, + [2537] = {.lex_state = 8}, + [2538] = {.lex_state = 8}, + [2539] = {.lex_state = 8}, + [2540] = {.lex_state = 8}, + [2541] = {.lex_state = 8}, + [2542] = {.lex_state = 8}, + [2543] = {.lex_state = 8}, + [2544] = {.lex_state = 8}, + [2545] = {.lex_state = 8}, + [2546] = {.lex_state = 8}, + [2547] = {.lex_state = 8}, + [2548] = {.lex_state = 8}, + [2549] = {.lex_state = 8}, + [2550] = {.lex_state = 8}, + [2551] = {.lex_state = 8}, + [2552] = {.lex_state = 323}, + [2553] = {.lex_state = 323}, + [2554] = {.lex_state = 323}, [2555] = {.lex_state = 320}, - [2556] = {.lex_state = 320}, + [2556] = {.lex_state = 323}, [2557] = {.lex_state = 320}, - [2558] = {.lex_state = 320}, - [2559] = {.lex_state = 320}, - [2560] = {.lex_state = 320}, - [2561] = {.lex_state = 320}, - [2562] = {.lex_state = 320}, - [2563] = {.lex_state = 320}, + [2558] = {.lex_state = 323}, + [2559] = {.lex_state = 323}, + [2560] = {.lex_state = 8}, + [2561] = {.lex_state = 323}, + [2562] = {.lex_state = 323}, + [2563] = {.lex_state = 323}, [2564] = {.lex_state = 320}, - [2565] = {.lex_state = 320}, - [2566] = {.lex_state = 320}, - [2567] = {.lex_state = 320}, - [2568] = {.lex_state = 320}, - [2569] = {.lex_state = 320}, - [2570] = {.lex_state = 320}, - [2571] = {.lex_state = 320}, - [2572] = {.lex_state = 320}, - [2573] = {.lex_state = 320}, - [2574] = {.lex_state = 320}, - [2575] = {.lex_state = 320}, - [2576] = {.lex_state = 320}, - [2577] = {.lex_state = 320}, - [2578] = {.lex_state = 320}, - [2579] = {.lex_state = 320}, - [2580] = {.lex_state = 320}, - [2581] = {.lex_state = 320}, - [2582] = {.lex_state = 320}, - [2583] = {.lex_state = 320}, - [2584] = {.lex_state = 320}, - [2585] = {.lex_state = 320}, - [2586] = {.lex_state = 320}, - [2587] = {.lex_state = 320}, - [2588] = {.lex_state = 320}, - [2589] = {.lex_state = 320}, - [2590] = {.lex_state = 320}, - [2591] = {.lex_state = 320}, - [2592] = {.lex_state = 320}, - [2593] = {.lex_state = 320}, - [2594] = {.lex_state = 320}, - [2595] = {.lex_state = 320}, - [2596] = {.lex_state = 320}, - [2597] = {.lex_state = 320}, - [2598] = {.lex_state = 23}, - [2599] = {.lex_state = 320}, - [2600] = {.lex_state = 24}, - [2601] = {.lex_state = 320}, - [2602] = {.lex_state = 320}, - [2603] = {.lex_state = 320}, - [2604] = {.lex_state = 320}, - [2605] = {.lex_state = 24}, - [2606] = {.lex_state = 320}, - [2607] = {.lex_state = 320}, - [2608] = {.lex_state = 320}, - [2609] = {.lex_state = 320}, - [2610] = {.lex_state = 320}, - [2611] = {.lex_state = 320}, - [2612] = {.lex_state = 320}, - [2613] = {.lex_state = 320}, - [2614] = {.lex_state = 320}, - [2615] = {.lex_state = 320}, - [2616] = {.lex_state = 320}, - [2617] = {.lex_state = 320}, - [2618] = {.lex_state = 320}, - [2619] = {.lex_state = 320}, - [2620] = {.lex_state = 320}, - [2621] = {.lex_state = 320}, - [2622] = {.lex_state = 320}, - [2623] = {.lex_state = 320}, - [2624] = {.lex_state = 320}, - [2625] = {.lex_state = 320}, - [2626] = {.lex_state = 320}, - [2627] = {.lex_state = 24}, - [2628] = {.lex_state = 320}, - [2629] = {.lex_state = 320}, - [2630] = {.lex_state = 320}, - [2631] = {.lex_state = 320}, - [2632] = {.lex_state = 320}, - [2633] = {.lex_state = 320}, - [2634] = {.lex_state = 320}, - [2635] = {.lex_state = 320}, - [2636] = {.lex_state = 320}, - [2637] = {.lex_state = 320}, - [2638] = {.lex_state = 320}, - [2639] = {.lex_state = 320}, - [2640] = {.lex_state = 320}, - [2641] = {.lex_state = 320}, - [2642] = {.lex_state = 320}, - [2643] = {.lex_state = 320}, - [2644] = {.lex_state = 320}, - [2645] = {.lex_state = 320}, - [2646] = {.lex_state = 320}, - [2647] = {.lex_state = 320}, - [2648] = {.lex_state = 320}, - [2649] = {.lex_state = 320}, - [2650] = {.lex_state = 320}, - [2651] = {.lex_state = 320}, - [2652] = {.lex_state = 320}, - [2653] = {.lex_state = 320}, - [2654] = {.lex_state = 15}, - [2655] = {.lex_state = 15}, - [2656] = {.lex_state = 15}, - [2657] = {.lex_state = 15}, - [2658] = {.lex_state = 15}, - [2659] = {.lex_state = 15}, - [2660] = {.lex_state = 15}, - [2661] = {.lex_state = 15}, - [2662] = {.lex_state = 15}, - [2663] = {.lex_state = 24}, - [2664] = {.lex_state = 15}, - [2665] = {.lex_state = 15}, - [2666] = {.lex_state = 320}, - [2667] = {.lex_state = 15}, - [2668] = {.lex_state = 15}, - [2669] = {.lex_state = 15}, - [2670] = {.lex_state = 15}, - [2671] = {.lex_state = 23}, - [2672] = {.lex_state = 15}, - [2673] = {.lex_state = 320}, - [2674] = {.lex_state = 15}, - [2675] = {.lex_state = 15}, - [2676] = {.lex_state = 15}, - [2677] = {.lex_state = 15}, - [2678] = {.lex_state = 15}, - [2679] = {.lex_state = 15}, - [2680] = {.lex_state = 15}, - [2681] = {.lex_state = 23}, - [2682] = {.lex_state = 15}, - [2683] = {.lex_state = 15}, - [2684] = {.lex_state = 15}, - [2685] = {.lex_state = 15}, - [2686] = {.lex_state = 15}, - [2687] = {.lex_state = 15}, - [2688] = {.lex_state = 15}, - [2689] = {.lex_state = 15}, - [2690] = {.lex_state = 15}, - [2691] = {.lex_state = 15}, - [2692] = {.lex_state = 15}, - [2693] = {.lex_state = 15}, - [2694] = {.lex_state = 15}, - [2695] = {.lex_state = 24}, - [2696] = {.lex_state = 15}, - [2697] = {.lex_state = 15}, - [2698] = {.lex_state = 15}, - [2699] = {.lex_state = 20}, - [2700] = {.lex_state = 20}, - [2701] = {.lex_state = 20}, - [2702] = {.lex_state = 20}, - [2703] = {.lex_state = 20}, - [2704] = {.lex_state = 20}, - [2705] = {.lex_state = 29}, - [2706] = {.lex_state = 20}, - [2707] = {.lex_state = 20}, - [2708] = {.lex_state = 20}, - [2709] = {.lex_state = 20}, - [2710] = {.lex_state = 20}, - [2711] = {.lex_state = 27}, - [2712] = {.lex_state = 27}, - [2713] = {.lex_state = 33}, - [2714] = {.lex_state = 31}, - [2715] = {.lex_state = 31}, - [2716] = {.lex_state = 31}, - [2717] = {.lex_state = 31}, - [2718] = {.lex_state = 31}, - [2719] = {.lex_state = 41}, - [2720] = {.lex_state = 41}, - [2721] = {.lex_state = 33}, - [2722] = {.lex_state = 33}, - [2723] = {.lex_state = 31}, - [2724] = {.lex_state = 31}, - [2725] = {.lex_state = 33}, - [2726] = {.lex_state = 33}, - [2727] = {.lex_state = 31}, - [2728] = {.lex_state = 33}, - [2729] = {.lex_state = 33}, - [2730] = {.lex_state = 31}, - [2731] = {.lex_state = 31}, - [2732] = {.lex_state = 31}, - [2733] = {.lex_state = 31}, - [2734] = {.lex_state = 31}, - [2735] = {.lex_state = 31}, - [2736] = {.lex_state = 31}, - [2737] = {.lex_state = 31}, - [2738] = {.lex_state = 31}, - [2739] = {.lex_state = 31}, - [2740] = {.lex_state = 33}, - [2741] = {.lex_state = 31}, - [2742] = {.lex_state = 31}, - [2743] = {.lex_state = 31}, - [2744] = {.lex_state = 31}, - [2745] = {.lex_state = 31}, - [2746] = {.lex_state = 31}, - [2747] = {.lex_state = 31}, - [2748] = {.lex_state = 31}, - [2749] = {.lex_state = 15}, - [2750] = {.lex_state = 15}, - [2751] = {.lex_state = 15}, - [2752] = {.lex_state = 31}, - [2753] = {.lex_state = 33}, - [2754] = {.lex_state = 40}, - [2755] = {.lex_state = 33}, - [2756] = {.lex_state = 40}, - [2757] = {.lex_state = 16}, - [2758] = {.lex_state = 15}, - [2759] = {.lex_state = 15}, - [2760] = {.lex_state = 33}, - [2761] = {.lex_state = 31}, - [2762] = {.lex_state = 40}, - [2763] = {.lex_state = 16}, - [2764] = {.lex_state = 15}, - [2765] = {.lex_state = 15}, - [2766] = {.lex_state = 33}, - [2767] = {.lex_state = 31}, - [2768] = {.lex_state = 40}, - [2769] = {.lex_state = 31}, - [2770] = {.lex_state = 16}, - [2771] = {.lex_state = 40}, - [2772] = {.lex_state = 33}, - [2773] = {.lex_state = 40}, - [2774] = {.lex_state = 16}, - [2775] = {.lex_state = 16}, - [2776] = {.lex_state = 31}, - [2777] = {.lex_state = 40}, - [2778] = {.lex_state = 33}, - [2779] = {.lex_state = 15}, - [2780] = {.lex_state = 33}, - [2781] = {.lex_state = 40}, - [2782] = {.lex_state = 16}, - [2783] = {.lex_state = 31}, - [2784] = {.lex_state = 31}, - [2785] = {.lex_state = 33}, - [2786] = {.lex_state = 15}, - [2787] = {.lex_state = 33}, - [2788] = {.lex_state = 16}, - [2789] = {.lex_state = 15}, - [2790] = {.lex_state = 15}, - [2791] = {.lex_state = 40}, - [2792] = {.lex_state = 40}, - [2793] = {.lex_state = 31}, - [2794] = {.lex_state = 31}, - [2795] = {.lex_state = 15}, - [2796] = {.lex_state = 16}, - [2797] = {.lex_state = 15}, - [2798] = {.lex_state = 33}, - [2799] = {.lex_state = 40}, - [2800] = {.lex_state = 16}, - [2801] = {.lex_state = 16}, - [2802] = {.lex_state = 15}, - [2803] = {.lex_state = 15}, - [2804] = {.lex_state = 33}, - [2805] = {.lex_state = 31}, - [2806] = {.lex_state = 16}, - [2807] = {.lex_state = 31}, - [2808] = {.lex_state = 16}, - [2809] = {.lex_state = 40}, - [2810] = {.lex_state = 33}, - [2811] = {.lex_state = 40}, - [2812] = {.lex_state = 16}, - [2813] = {.lex_state = 15}, - [2814] = {.lex_state = 33}, - [2815] = {.lex_state = 40}, - [2816] = {.lex_state = 16}, - [2817] = {.lex_state = 33}, - [2818] = {.lex_state = 40}, - [2819] = {.lex_state = 16}, - [2820] = {.lex_state = 16}, - [2821] = {.lex_state = 31}, - [2822] = {.lex_state = 33}, - [2823] = {.lex_state = 40}, - [2824] = {.lex_state = 33}, - [2825] = {.lex_state = 16}, - [2826] = {.lex_state = 33}, - [2827] = {.lex_state = 33}, - [2828] = {.lex_state = 16}, - [2829] = {.lex_state = 35}, - [2830] = {.lex_state = 31}, - [2831] = {.lex_state = 31}, - [2832] = {.lex_state = 31}, - [2833] = {.lex_state = 35}, - [2834] = {.lex_state = 31}, - [2835] = {.lex_state = 322}, - [2836] = {.lex_state = 35}, - [2837] = {.lex_state = 43}, - [2838] = {.lex_state = 33}, - [2839] = {.lex_state = 33}, - [2840] = {.lex_state = 322}, - [2841] = {.lex_state = 31}, - [2842] = {.lex_state = 35}, - [2843] = {.lex_state = 33}, - [2844] = {.lex_state = 31}, - [2845] = {.lex_state = 31}, - [2846] = {.lex_state = 31}, - [2847] = {.lex_state = 33}, - [2848] = {.lex_state = 33}, - [2849] = {.lex_state = 35}, - [2850] = {.lex_state = 43}, - [2851] = {.lex_state = 33}, - [2852] = {.lex_state = 33}, - [2853] = {.lex_state = 33}, - [2854] = {.lex_state = 33}, - [2855] = {.lex_state = 322}, - [2856] = {.lex_state = 322}, - [2857] = {.lex_state = 322}, - [2858] = {.lex_state = 322}, - [2859] = {.lex_state = 33}, - [2860] = {.lex_state = 322}, - [2861] = {.lex_state = 322}, - [2862] = {.lex_state = 322}, - [2863] = {.lex_state = 322}, - [2864] = {.lex_state = 322}, - [2865] = {.lex_state = 322}, - [2866] = {.lex_state = 33}, - [2867] = {.lex_state = 33}, - [2868] = {.lex_state = 322}, - [2869] = {.lex_state = 322}, - [2870] = {.lex_state = 322}, - [2871] = {.lex_state = 322}, - [2872] = {.lex_state = 322}, - [2873] = {.lex_state = 322}, - [2874] = {.lex_state = 33}, - [2875] = {.lex_state = 33}, - [2876] = {.lex_state = 322}, - [2877] = {.lex_state = 322}, - [2878] = {.lex_state = 322}, - [2879] = {.lex_state = 33}, - [2880] = {.lex_state = 322}, - [2881] = {.lex_state = 33}, - [2882] = {.lex_state = 322}, - [2883] = {.lex_state = 33}, - [2884] = {.lex_state = 33}, - [2885] = {.lex_state = 322}, - [2886] = {.lex_state = 322}, - [2887] = {.lex_state = 322}, - [2888] = {.lex_state = 33}, - [2889] = {.lex_state = 33}, - [2890] = {.lex_state = 35}, - [2891] = {.lex_state = 33}, - [2892] = {.lex_state = 35}, - [2893] = {.lex_state = 33}, - [2894] = {.lex_state = 322}, - [2895] = {.lex_state = 33}, - [2896] = {.lex_state = 31}, - [2897] = {.lex_state = 322}, - [2898] = {.lex_state = 31}, - [2899] = {.lex_state = 322}, - [2900] = {.lex_state = 31}, - [2901] = {.lex_state = 31}, - [2902] = {.lex_state = 31}, - [2903] = {.lex_state = 322}, - [2904] = {.lex_state = 322}, - [2905] = {.lex_state = 33}, - [2906] = {.lex_state = 322}, - [2907] = {.lex_state = 322}, - [2908] = {.lex_state = 322}, - [2909] = {.lex_state = 322}, - [2910] = {.lex_state = 348}, - [2911] = {.lex_state = 322}, - [2912] = {.lex_state = 322}, - [2913] = {.lex_state = 322}, - [2914] = {.lex_state = 31}, - [2915] = {.lex_state = 322}, - [2916] = {.lex_state = 322}, - [2917] = {.lex_state = 322}, - [2918] = {.lex_state = 322}, - [2919] = {.lex_state = 322}, - [2920] = {.lex_state = 322}, - [2921] = {.lex_state = 31}, - [2922] = {.lex_state = 31}, - [2923] = {.lex_state = 322}, - [2924] = {.lex_state = 322}, - [2925] = {.lex_state = 322}, - [2926] = {.lex_state = 31}, - [2927] = {.lex_state = 33}, - [2928] = {.lex_state = 322}, - [2929] = {.lex_state = 33}, - [2930] = {.lex_state = 322}, - [2931] = {.lex_state = 322}, - [2932] = {.lex_state = 322}, - [2933] = {.lex_state = 322}, - [2934] = {.lex_state = 31}, - [2935] = {.lex_state = 31}, - [2936] = {.lex_state = 322}, - [2937] = {.lex_state = 33}, + [2565] = {.lex_state = 323}, + [2566] = {.lex_state = 323}, + [2567] = {.lex_state = 323}, + [2568] = {.lex_state = 21}, + [2569] = {.lex_state = 15}, + [2570] = {.lex_state = 323}, + [2571] = {.lex_state = 21}, + [2572] = {.lex_state = 15}, + [2573] = {.lex_state = 323}, + [2574] = {.lex_state = 321}, + [2575] = {.lex_state = 321}, + [2576] = {.lex_state = 321}, + [2577] = {.lex_state = 321}, + [2578] = {.lex_state = 321}, + [2579] = {.lex_state = 321}, + [2580] = {.lex_state = 321}, + [2581] = {.lex_state = 321}, + [2582] = {.lex_state = 321}, + [2583] = {.lex_state = 321}, + [2584] = {.lex_state = 321}, + [2585] = {.lex_state = 321}, + [2586] = {.lex_state = 321}, + [2587] = {.lex_state = 321}, + [2588] = {.lex_state = 321}, + [2589] = {.lex_state = 321}, + [2590] = {.lex_state = 321}, + [2591] = {.lex_state = 321}, + [2592] = {.lex_state = 321}, + [2593] = {.lex_state = 321}, + [2594] = {.lex_state = 321}, + [2595] = {.lex_state = 321}, + [2596] = {.lex_state = 321}, + [2597] = {.lex_state = 321}, + [2598] = {.lex_state = 321}, + [2599] = {.lex_state = 321}, + [2600] = {.lex_state = 321}, + [2601] = {.lex_state = 321}, + [2602] = {.lex_state = 321}, + [2603] = {.lex_state = 321}, + [2604] = {.lex_state = 321}, + [2605] = {.lex_state = 321}, + [2606] = {.lex_state = 321}, + [2607] = {.lex_state = 321}, + [2608] = {.lex_state = 321}, + [2609] = {.lex_state = 321}, + [2610] = {.lex_state = 321}, + [2611] = {.lex_state = 321}, + [2612] = {.lex_state = 321}, + [2613] = {.lex_state = 321}, + [2614] = {.lex_state = 321}, + [2615] = {.lex_state = 321}, + [2616] = {.lex_state = 321}, + [2617] = {.lex_state = 321}, + [2618] = {.lex_state = 321}, + [2619] = {.lex_state = 321}, + [2620] = {.lex_state = 321}, + [2621] = {.lex_state = 321}, + [2622] = {.lex_state = 20}, + [2623] = {.lex_state = 321}, + [2624] = {.lex_state = 321}, + [2625] = {.lex_state = 321}, + [2626] = {.lex_state = 321}, + [2627] = {.lex_state = 321}, + [2628] = {.lex_state = 321}, + [2629] = {.lex_state = 321}, + [2630] = {.lex_state = 321}, + [2631] = {.lex_state = 321}, + [2632] = {.lex_state = 321}, + [2633] = {.lex_state = 321}, + [2634] = {.lex_state = 321}, + [2635] = {.lex_state = 321}, + [2636] = {.lex_state = 321}, + [2637] = {.lex_state = 321}, + [2638] = {.lex_state = 321}, + [2639] = {.lex_state = 321}, + [2640] = {.lex_state = 321}, + [2641] = {.lex_state = 321}, + [2642] = {.lex_state = 321}, + [2643] = {.lex_state = 321}, + [2644] = {.lex_state = 321}, + [2645] = {.lex_state = 321}, + [2646] = {.lex_state = 321}, + [2647] = {.lex_state = 321}, + [2648] = {.lex_state = 321}, + [2649] = {.lex_state = 321}, + [2650] = {.lex_state = 321}, + [2651] = {.lex_state = 321}, + [2652] = {.lex_state = 321}, + [2653] = {.lex_state = 321}, + [2654] = {.lex_state = 321}, + [2655] = {.lex_state = 321}, + [2656] = {.lex_state = 321}, + [2657] = {.lex_state = 321}, + [2658] = {.lex_state = 321}, + [2659] = {.lex_state = 321}, + [2660] = {.lex_state = 321}, + [2661] = {.lex_state = 321}, + [2662] = {.lex_state = 321}, + [2663] = {.lex_state = 321}, + [2664] = {.lex_state = 321}, + [2665] = {.lex_state = 321}, + [2666] = {.lex_state = 321}, + [2667] = {.lex_state = 321}, + [2668] = {.lex_state = 321}, + [2669] = {.lex_state = 321}, + [2670] = {.lex_state = 321}, + [2671] = {.lex_state = 321}, + [2672] = {.lex_state = 321}, + [2673] = {.lex_state = 321}, + [2674] = {.lex_state = 321}, + [2675] = {.lex_state = 321}, + [2676] = {.lex_state = 321}, + [2677] = {.lex_state = 321}, + [2678] = {.lex_state = 321}, + [2679] = {.lex_state = 321}, + [2680] = {.lex_state = 321}, + [2681] = {.lex_state = 321}, + [2682] = {.lex_state = 321}, + [2683] = {.lex_state = 321}, + [2684] = {.lex_state = 321}, + [2685] = {.lex_state = 321}, + [2686] = {.lex_state = 321}, + [2687] = {.lex_state = 321}, + [2688] = {.lex_state = 321}, + [2689] = {.lex_state = 321}, + [2690] = {.lex_state = 321}, + [2691] = {.lex_state = 321}, + [2692] = {.lex_state = 321}, + [2693] = {.lex_state = 321}, + [2694] = {.lex_state = 321}, + [2695] = {.lex_state = 321}, + [2696] = {.lex_state = 321}, + [2697] = {.lex_state = 321}, + [2698] = {.lex_state = 321}, + [2699] = {.lex_state = 321}, + [2700] = {.lex_state = 321}, + [2701] = {.lex_state = 321}, + [2702] = {.lex_state = 321}, + [2703] = {.lex_state = 321}, + [2704] = {.lex_state = 321}, + [2705] = {.lex_state = 18}, + [2706] = {.lex_state = 320}, + [2707] = {.lex_state = 321}, + [2708] = {.lex_state = 321}, + [2709] = {.lex_state = 321}, + [2710] = {.lex_state = 321}, + [2711] = {.lex_state = 320}, + [2712] = {.lex_state = 321}, + [2713] = {.lex_state = 321}, + [2714] = {.lex_state = 321}, + [2715] = {.lex_state = 321}, + [2716] = {.lex_state = 321}, + [2717] = {.lex_state = 321}, + [2718] = {.lex_state = 320}, + [2719] = {.lex_state = 21}, + [2720] = {.lex_state = 21}, + [2721] = {.lex_state = 321}, + [2722] = {.lex_state = 321}, + [2723] = {.lex_state = 23}, + [2724] = {.lex_state = 321}, + [2725] = {.lex_state = 321}, + [2726] = {.lex_state = 321}, + [2727] = {.lex_state = 321}, + [2728] = {.lex_state = 321}, + [2729] = {.lex_state = 321}, + [2730] = {.lex_state = 321}, + [2731] = {.lex_state = 321}, + [2732] = {.lex_state = 321}, + [2733] = {.lex_state = 321}, + [2734] = {.lex_state = 321}, + [2735] = {.lex_state = 321}, + [2736] = {.lex_state = 321}, + [2737] = {.lex_state = 321}, + [2738] = {.lex_state = 321}, + [2739] = {.lex_state = 321}, + [2740] = {.lex_state = 321}, + [2741] = {.lex_state = 321}, + [2742] = {.lex_state = 321}, + [2743] = {.lex_state = 321}, + [2744] = {.lex_state = 321}, + [2745] = {.lex_state = 321}, + [2746] = {.lex_state = 321}, + [2747] = {.lex_state = 321}, + [2748] = {.lex_state = 321}, + [2749] = {.lex_state = 321}, + [2750] = {.lex_state = 321}, + [2751] = {.lex_state = 321}, + [2752] = {.lex_state = 321}, + [2753] = {.lex_state = 321}, + [2754] = {.lex_state = 321}, + [2755] = {.lex_state = 321}, + [2756] = {.lex_state = 321}, + [2757] = {.lex_state = 321}, + [2758] = {.lex_state = 321}, + [2759] = {.lex_state = 321}, + [2760] = {.lex_state = 321}, + [2761] = {.lex_state = 321}, + [2762] = {.lex_state = 321}, + [2763] = {.lex_state = 321}, + [2764] = {.lex_state = 321}, + [2765] = {.lex_state = 321}, + [2766] = {.lex_state = 321}, + [2767] = {.lex_state = 321}, + [2768] = {.lex_state = 321}, + [2769] = {.lex_state = 321}, + [2770] = {.lex_state = 321}, + [2771] = {.lex_state = 321}, + [2772] = {.lex_state = 321}, + [2773] = {.lex_state = 321}, + [2774] = {.lex_state = 321}, + [2775] = {.lex_state = 321}, + [2776] = {.lex_state = 321}, + [2777] = {.lex_state = 321}, + [2778] = {.lex_state = 321}, + [2779] = {.lex_state = 321}, + [2780] = {.lex_state = 321}, + [2781] = {.lex_state = 321}, + [2782] = {.lex_state = 321}, + [2783] = {.lex_state = 321}, + [2784] = {.lex_state = 321}, + [2785] = {.lex_state = 321}, + [2786] = {.lex_state = 321}, + [2787] = {.lex_state = 321}, + [2788] = {.lex_state = 321}, + [2789] = {.lex_state = 321}, + [2790] = {.lex_state = 321}, + [2791] = {.lex_state = 321}, + [2792] = {.lex_state = 321}, + [2793] = {.lex_state = 321}, + [2794] = {.lex_state = 321}, + [2795] = {.lex_state = 321}, + [2796] = {.lex_state = 321}, + [2797] = {.lex_state = 321}, + [2798] = {.lex_state = 321}, + [2799] = {.lex_state = 321}, + [2800] = {.lex_state = 321}, + [2801] = {.lex_state = 321}, + [2802] = {.lex_state = 321}, + [2803] = {.lex_state = 321}, + [2804] = {.lex_state = 321}, + [2805] = {.lex_state = 321}, + [2806] = {.lex_state = 321}, + [2807] = {.lex_state = 321}, + [2808] = {.lex_state = 321}, + [2809] = {.lex_state = 321}, + [2810] = {.lex_state = 321}, + [2811] = {.lex_state = 321}, + [2812] = {.lex_state = 321}, + [2813] = {.lex_state = 321}, + [2814] = {.lex_state = 321}, + [2815] = {.lex_state = 321}, + [2816] = {.lex_state = 321}, + [2817] = {.lex_state = 321}, + [2818] = {.lex_state = 321}, + [2819] = {.lex_state = 321}, + [2820] = {.lex_state = 321}, + [2821] = {.lex_state = 321}, + [2822] = {.lex_state = 321}, + [2823] = {.lex_state = 321}, + [2824] = {.lex_state = 321}, + [2825] = {.lex_state = 321}, + [2826] = {.lex_state = 321}, + [2827] = {.lex_state = 321}, + [2828] = {.lex_state = 321}, + [2829] = {.lex_state = 24}, + [2830] = {.lex_state = 321}, + [2831] = {.lex_state = 321}, + [2832] = {.lex_state = 321}, + [2833] = {.lex_state = 321}, + [2834] = {.lex_state = 321}, + [2835] = {.lex_state = 321}, + [2836] = {.lex_state = 321}, + [2837] = {.lex_state = 321}, + [2838] = {.lex_state = 321}, + [2839] = {.lex_state = 321}, + [2840] = {.lex_state = 24}, + [2841] = {.lex_state = 321}, + [2842] = {.lex_state = 24}, + [2843] = {.lex_state = 321}, + [2844] = {.lex_state = 321}, + [2845] = {.lex_state = 321}, + [2846] = {.lex_state = 321}, + [2847] = {.lex_state = 321}, + [2848] = {.lex_state = 321}, + [2849] = {.lex_state = 321}, + [2850] = {.lex_state = 321}, + [2851] = {.lex_state = 321}, + [2852] = {.lex_state = 321}, + [2853] = {.lex_state = 321}, + [2854] = {.lex_state = 321}, + [2855] = {.lex_state = 321}, + [2856] = {.lex_state = 321}, + [2857] = {.lex_state = 321}, + [2858] = {.lex_state = 321}, + [2859] = {.lex_state = 321}, + [2860] = {.lex_state = 321}, + [2861] = {.lex_state = 321}, + [2862] = {.lex_state = 321}, + [2863] = {.lex_state = 321}, + [2864] = {.lex_state = 15}, + [2865] = {.lex_state = 15}, + [2866] = {.lex_state = 15}, + [2867] = {.lex_state = 24}, + [2868] = {.lex_state = 15}, + [2869] = {.lex_state = 15}, + [2870] = {.lex_state = 24}, + [2871] = {.lex_state = 15}, + [2872] = {.lex_state = 23}, + [2873] = {.lex_state = 15}, + [2874] = {.lex_state = 15}, + [2875] = {.lex_state = 15}, + [2876] = {.lex_state = 15}, + [2877] = {.lex_state = 15}, + [2878] = {.lex_state = 15}, + [2879] = {.lex_state = 15}, + [2880] = {.lex_state = 15}, + [2881] = {.lex_state = 15}, + [2882] = {.lex_state = 15}, + [2883] = {.lex_state = 15}, + [2884] = {.lex_state = 321}, + [2885] = {.lex_state = 15}, + [2886] = {.lex_state = 15}, + [2887] = {.lex_state = 15}, + [2888] = {.lex_state = 15}, + [2889] = {.lex_state = 15}, + [2890] = {.lex_state = 15}, + [2891] = {.lex_state = 23}, + [2892] = {.lex_state = 15}, + [2893] = {.lex_state = 15}, + [2894] = {.lex_state = 15}, + [2895] = {.lex_state = 15}, + [2896] = {.lex_state = 15}, + [2897] = {.lex_state = 15}, + [2898] = {.lex_state = 15}, + [2899] = {.lex_state = 15}, + [2900] = {.lex_state = 15}, + [2901] = {.lex_state = 15}, + [2902] = {.lex_state = 15}, + [2903] = {.lex_state = 15}, + [2904] = {.lex_state = 15}, + [2905] = {.lex_state = 321}, + [2906] = {.lex_state = 15}, + [2907] = {.lex_state = 15}, + [2908] = {.lex_state = 15}, + [2909] = {.lex_state = 15}, + [2910] = {.lex_state = 15}, + [2911] = {.lex_state = 15}, + [2912] = {.lex_state = 15}, + [2913] = {.lex_state = 15}, + [2914] = {.lex_state = 15}, + [2915] = {.lex_state = 15}, + [2916] = {.lex_state = 15}, + [2917] = {.lex_state = 15}, + [2918] = {.lex_state = 15}, + [2919] = {.lex_state = 15}, + [2920] = {.lex_state = 15}, + [2921] = {.lex_state = 15}, + [2922] = {.lex_state = 15}, + [2923] = {.lex_state = 29}, + [2924] = {.lex_state = 20}, + [2925] = {.lex_state = 20}, + [2926] = {.lex_state = 20}, + [2927] = {.lex_state = 20}, + [2928] = {.lex_state = 20}, + [2929] = {.lex_state = 20}, + [2930] = {.lex_state = 20}, + [2931] = {.lex_state = 20}, + [2932] = {.lex_state = 20}, + [2933] = {.lex_state = 20}, + [2934] = {.lex_state = 27}, + [2935] = {.lex_state = 27}, + [2936] = {.lex_state = 20}, + [2937] = {.lex_state = 31}, [2938] = {.lex_state = 31}, - [2939] = {.lex_state = 322}, - [2940] = {.lex_state = 33}, - [2941] = {.lex_state = 35}, - [2942] = {.lex_state = 33}, - [2943] = {.lex_state = 33}, - [2944] = {.lex_state = 350}, - [2945] = {.lex_state = 33}, - [2946] = {.lex_state = 24}, - [2947] = {.lex_state = 35}, - [2948] = {.lex_state = 35}, - [2949] = {.lex_state = 35}, - [2950] = {.lex_state = 35}, - [2951] = {.lex_state = 350}, - [2952] = {.lex_state = 35}, - [2953] = {.lex_state = 350}, - [2954] = {.lex_state = 35}, - [2955] = {.lex_state = 35}, - [2956] = {.lex_state = 35}, - [2957] = {.lex_state = 35}, - [2958] = {.lex_state = 35}, - [2959] = {.lex_state = 35}, - [2960] = {.lex_state = 33}, - [2961] = {.lex_state = 35}, - [2962] = {.lex_state = 35}, - [2963] = {.lex_state = 35}, - [2964] = {.lex_state = 33}, - [2965] = {.lex_state = 35}, - [2966] = {.lex_state = 33}, - [2967] = {.lex_state = 33}, - [2968] = {.lex_state = 35}, - [2969] = {.lex_state = 24}, - [2970] = {.lex_state = 35}, - [2971] = {.lex_state = 38}, - [2972] = {.lex_state = 33}, - [2973] = {.lex_state = 38}, - [2974] = {.lex_state = 33}, - [2975] = {.lex_state = 33}, - [2976] = {.lex_state = 35}, - [2977] = {.lex_state = 33}, - [2978] = {.lex_state = 24}, - [2979] = {.lex_state = 35}, - [2980] = {.lex_state = 35}, - [2981] = {.lex_state = 33}, - [2982] = {.lex_state = 35}, - [2983] = {.lex_state = 24}, - [2984] = {.lex_state = 322}, - [2985] = {.lex_state = 35}, - [2986] = {.lex_state = 44}, - [2987] = {.lex_state = 38}, - [2988] = {.lex_state = 35}, - [2989] = {.lex_state = 38}, - [2990] = {.lex_state = 24}, - [2991] = {.lex_state = 35}, - [2992] = {.lex_state = 33}, - [2993] = {.lex_state = 322}, - [2994] = {.lex_state = 35}, - [2995] = {.lex_state = 44}, - [2996] = {.lex_state = 348}, - [2997] = {.lex_state = 35}, - [2998] = {.lex_state = 35}, - [2999] = {.lex_state = 35}, - [3000] = {.lex_state = 35}, - [3001] = {.lex_state = 44}, - [3002] = {.lex_state = 35}, - [3003] = {.lex_state = 35}, - [3004] = {.lex_state = 35}, - [3005] = {.lex_state = 35}, - [3006] = {.lex_state = 35}, - [3007] = {.lex_state = 350}, - [3008] = {.lex_state = 35}, - [3009] = {.lex_state = 35}, - [3010] = {.lex_state = 33}, - [3011] = {.lex_state = 35}, - [3012] = {.lex_state = 22}, - [3013] = {.lex_state = 315}, - [3014] = {.lex_state = 22}, - [3015] = {.lex_state = 315}, - [3016] = {.lex_state = 22}, - [3017] = {.lex_state = 22}, - [3018] = {.lex_state = 33}, - [3019] = {.lex_state = 22}, + [2939] = {.lex_state = 31}, + [2940] = {.lex_state = 31}, + [2941] = {.lex_state = 31}, + [2942] = {.lex_state = 41}, + [2943] = {.lex_state = 41}, + [2944] = {.lex_state = 31}, + [2945] = {.lex_state = 31}, + [2946] = {.lex_state = 31}, + [2947] = {.lex_state = 31}, + [2948] = {.lex_state = 31}, + [2949] = {.lex_state = 31}, + [2950] = {.lex_state = 31}, + [2951] = {.lex_state = 31}, + [2952] = {.lex_state = 31}, + [2953] = {.lex_state = 31}, + [2954] = {.lex_state = 31}, + [2955] = {.lex_state = 31}, + [2956] = {.lex_state = 31}, + [2957] = {.lex_state = 31}, + [2958] = {.lex_state = 31}, + [2959] = {.lex_state = 31}, + [2960] = {.lex_state = 31}, + [2961] = {.lex_state = 31}, + [2962] = {.lex_state = 31}, + [2963] = {.lex_state = 31}, + [2964] = {.lex_state = 31}, + [2965] = {.lex_state = 40}, + [2966] = {.lex_state = 40}, + [2967] = {.lex_state = 16}, + [2968] = {.lex_state = 31}, + [2969] = {.lex_state = 16}, + [2970] = {.lex_state = 31}, + [2971] = {.lex_state = 15}, + [2972] = {.lex_state = 40}, + [2973] = {.lex_state = 31}, + [2974] = {.lex_state = 31}, + [2975] = {.lex_state = 31}, + [2976] = {.lex_state = 40}, + [2977] = {.lex_state = 16}, + [2978] = {.lex_state = 16}, + [2979] = {.lex_state = 40}, + [2980] = {.lex_state = 16}, + [2981] = {.lex_state = 31}, + [2982] = {.lex_state = 16}, + [2983] = {.lex_state = 31}, + [2984] = {.lex_state = 15}, + [2985] = {.lex_state = 16}, + [2986] = {.lex_state = 31}, + [2987] = {.lex_state = 31}, + [2988] = {.lex_state = 16}, + [2989] = {.lex_state = 40}, + [2990] = {.lex_state = 40}, + [2991] = {.lex_state = 15}, + [2992] = {.lex_state = 40}, + [2993] = {.lex_state = 31}, + [2994] = {.lex_state = 31}, + [2995] = {.lex_state = 15}, + [2996] = {.lex_state = 16}, + [2997] = {.lex_state = 16}, + [2998] = {.lex_state = 31}, + [2999] = {.lex_state = 31}, + [3000] = {.lex_state = 40}, + [3001] = {.lex_state = 31}, + [3002] = {.lex_state = 31}, + [3003] = {.lex_state = 31}, + [3004] = {.lex_state = 15}, + [3005] = {.lex_state = 31}, + [3006] = {.lex_state = 40}, + [3007] = {.lex_state = 15}, + [3008] = {.lex_state = 15}, + [3009] = {.lex_state = 31}, + [3010] = {.lex_state = 31}, + [3011] = {.lex_state = 16}, + [3012] = {.lex_state = 40}, + [3013] = {.lex_state = 31}, + [3014] = {.lex_state = 31}, + [3015] = {.lex_state = 16}, + [3016] = {.lex_state = 31}, + [3017] = {.lex_state = 31}, + [3018] = {.lex_state = 40}, + [3019] = {.lex_state = 16}, [3020] = {.lex_state = 15}, - [3021] = {.lex_state = 22}, - [3022] = {.lex_state = 315}, - [3023] = {.lex_state = 42}, - [3024] = {.lex_state = 15}, - [3025] = {.lex_state = 315}, - [3026] = {.lex_state = 315}, - [3027] = {.lex_state = 22}, - [3028] = {.lex_state = 322}, - [3029] = {.lex_state = 22}, - [3030] = {.lex_state = 33}, - [3031] = {.lex_state = 43}, - [3032] = {.lex_state = 22}, - [3033] = {.lex_state = 22}, - [3034] = {.lex_state = 22}, - [3035] = {.lex_state = 35}, - [3036] = {.lex_state = 22}, - [3037] = {.lex_state = 22}, - [3038] = {.lex_state = 43}, - [3039] = {.lex_state = 22}, - [3040] = {.lex_state = 33}, - [3041] = {.lex_state = 22}, - [3042] = {.lex_state = 33}, - [3043] = {.lex_state = 43}, - [3044] = {.lex_state = 22}, - [3045] = {.lex_state = 22}, - [3046] = {.lex_state = 22}, - [3047] = {.lex_state = 33}, - [3048] = {.lex_state = 22}, - [3049] = {.lex_state = 33}, - [3050] = {.lex_state = 22}, - [3051] = {.lex_state = 22}, - [3052] = {.lex_state = 22}, - [3053] = {.lex_state = 33}, - [3054] = {.lex_state = 22}, - [3055] = {.lex_state = 43}, - [3056] = {.lex_state = 22}, - [3057] = {.lex_state = 320}, - [3058] = {.lex_state = 22}, - [3059] = {.lex_state = 322}, - [3060] = {.lex_state = 22}, - [3061] = {.lex_state = 348}, - [3062] = {.lex_state = 33}, - [3063] = {.lex_state = 22}, - [3064] = {.lex_state = 22}, - [3065] = {.lex_state = 33}, - [3066] = {.lex_state = 35}, - [3067] = {.lex_state = 43}, - [3068] = {.lex_state = 22}, - [3069] = {.lex_state = 22}, - [3070] = {.lex_state = 22}, - [3071] = {.lex_state = 320}, - [3072] = {.lex_state = 22}, - [3073] = {.lex_state = 22}, - [3074] = {.lex_state = 22}, - [3075] = {.lex_state = 22}, - [3076] = {.lex_state = 22}, - [3077] = {.lex_state = 22}, - [3078] = {.lex_state = 315}, - [3079] = {.lex_state = 35}, - [3080] = {.lex_state = 33}, - [3081] = {.lex_state = 33}, - [3082] = {.lex_state = 35}, - [3083] = {.lex_state = 53}, - [3084] = {.lex_state = 53}, - [3085] = {.lex_state = 33}, - [3086] = {.lex_state = 33}, - [3087] = {.lex_state = 44}, - [3088] = {.lex_state = 315}, - [3089] = {.lex_state = 15}, - [3090] = {.lex_state = 315}, - [3091] = {.lex_state = 15}, - [3092] = {.lex_state = 48}, - [3093] = {.lex_state = 33}, - [3094] = {.lex_state = 33}, - [3095] = {.lex_state = 315}, - [3096] = {.lex_state = 48}, - [3097] = {.lex_state = 315}, - [3098] = {.lex_state = 315}, - [3099] = {.lex_state = 315}, - [3100] = {.lex_state = 38}, - [3101] = {.lex_state = 315}, - [3102] = {.lex_state = 315}, - [3103] = {.lex_state = 38}, - [3104] = {.lex_state = 33}, - [3105] = {.lex_state = 44}, - [3106] = {.lex_state = 44}, - [3107] = {.lex_state = 48}, - [3108] = {.lex_state = 315}, - [3109] = {.lex_state = 53}, - [3110] = {.lex_state = 53}, - [3111] = {.lex_state = 33}, - [3112] = {.lex_state = 315}, - [3113] = {.lex_state = 15}, - [3114] = {.lex_state = 315}, - [3115] = {.lex_state = 315}, - [3116] = {.lex_state = 315}, - [3117] = {.lex_state = 15}, - [3118] = {.lex_state = 315}, - [3119] = {.lex_state = 53}, - [3120] = {.lex_state = 315}, - [3121] = {.lex_state = 36}, - [3122] = {.lex_state = 315}, - [3123] = {.lex_state = 315}, - [3124] = {.lex_state = 43}, - [3125] = {.lex_state = 36}, - [3126] = {.lex_state = 33}, - [3127] = {.lex_state = 33}, - [3128] = {.lex_state = 315}, - [3129] = {.lex_state = 320}, - [3130] = {.lex_state = 43}, - [3131] = {.lex_state = 35}, - [3132] = {.lex_state = 36}, - [3133] = {.lex_state = 36}, - [3134] = {.lex_state = 36}, - [3135] = {.lex_state = 36}, - [3136] = {.lex_state = 315}, - [3137] = {.lex_state = 36}, - [3138] = {.lex_state = 36}, - [3139] = {.lex_state = 36}, - [3140] = {.lex_state = 36}, - [3141] = {.lex_state = 36}, - [3142] = {.lex_state = 48}, - [3143] = {.lex_state = 36}, - [3144] = {.lex_state = 48}, - [3145] = {.lex_state = 36}, - [3146] = {.lex_state = 48}, - [3147] = {.lex_state = 315}, - [3148] = {.lex_state = 36}, - [3149] = {.lex_state = 315}, - [3150] = {.lex_state = 48}, - [3151] = {.lex_state = 48}, - [3152] = {.lex_state = 36}, - [3153] = {.lex_state = 48}, - [3154] = {.lex_state = 36}, - [3155] = {.lex_state = 48}, - [3156] = {.lex_state = 53}, - [3157] = {.lex_state = 36}, - [3158] = {.lex_state = 315}, - [3159] = {.lex_state = 315}, - [3160] = {.lex_state = 48}, - [3161] = {.lex_state = 36}, - [3162] = {.lex_state = 48}, - [3163] = {.lex_state = 36}, - [3164] = {.lex_state = 53}, - [3165] = {.lex_state = 315}, - [3166] = {.lex_state = 53}, - [3167] = {.lex_state = 48}, - [3168] = {.lex_state = 53}, - [3169] = {.lex_state = 36}, - [3170] = {.lex_state = 36}, - [3171] = {.lex_state = 53}, - [3172] = {.lex_state = 53}, - [3173] = {.lex_state = 48}, - [3174] = {.lex_state = 36}, - [3175] = {.lex_state = 53}, - [3176] = {.lex_state = 48}, - [3177] = {.lex_state = 36}, - [3178] = {.lex_state = 53}, - [3179] = {.lex_state = 53}, - [3180] = {.lex_state = 48}, - [3181] = {.lex_state = 315}, - [3182] = {.lex_state = 315}, - [3183] = {.lex_state = 315}, - [3184] = {.lex_state = 315}, - [3185] = {.lex_state = 320}, - [3186] = {.lex_state = 315}, - [3187] = {.lex_state = 33}, - [3188] = {.lex_state = 315}, - [3189] = {.lex_state = 33}, - [3190] = {.lex_state = 315}, - [3191] = {.lex_state = 315}, - [3192] = {.lex_state = 315}, - [3193] = {.lex_state = 36}, - [3194] = {.lex_state = 315}, - [3195] = {.lex_state = 48}, - [3196] = {.lex_state = 53}, - [3197] = {.lex_state = 53}, - [3198] = {.lex_state = 48}, - [3199] = {.lex_state = 36}, - [3200] = {.lex_state = 53}, - [3201] = {.lex_state = 53}, - [3202] = {.lex_state = 53}, - [3203] = {.lex_state = 48}, - [3204] = {.lex_state = 315}, - [3205] = {.lex_state = 15}, - [3206] = {.lex_state = 315}, - [3207] = {.lex_state = 315}, - [3208] = {.lex_state = 315}, - [3209] = {.lex_state = 53}, - [3210] = {.lex_state = 36}, - [3211] = {.lex_state = 36}, - [3212] = {.lex_state = 36}, - [3213] = {.lex_state = 53}, - [3214] = {.lex_state = 315}, - [3215] = {.lex_state = 53}, - [3216] = {.lex_state = 48}, - [3217] = {.lex_state = 315}, - [3218] = {.lex_state = 53}, - [3219] = {.lex_state = 315}, - [3220] = {.lex_state = 315}, - [3221] = {.lex_state = 315}, - [3222] = {.lex_state = 315}, - [3223] = {.lex_state = 315}, - [3224] = {.lex_state = 315}, - [3225] = {.lex_state = 315}, - [3226] = {.lex_state = 315}, - [3227] = {.lex_state = 315}, - [3228] = {.lex_state = 315}, - [3229] = {.lex_state = 315}, - [3230] = {.lex_state = 315}, - [3231] = {.lex_state = 38}, - [3232] = {.lex_state = 48}, - [3233] = {.lex_state = 348}, - [3234] = {.lex_state = 315}, - [3235] = {.lex_state = 315}, - [3236] = {.lex_state = 36}, - [3237] = {.lex_state = 53}, - [3238] = {.lex_state = 53}, - [3239] = {.lex_state = 53}, - [3240] = {.lex_state = 315}, - [3241] = {.lex_state = 48}, - [3242] = {.lex_state = 315}, - [3243] = {.lex_state = 315}, - [3244] = {.lex_state = 315}, - [3245] = {.lex_state = 315}, - [3246] = {.lex_state = 53}, - [3247] = {.lex_state = 315}, - [3248] = {.lex_state = 36}, - [3249] = {.lex_state = 315}, - [3250] = {.lex_state = 315}, - [3251] = {.lex_state = 315}, - [3252] = {.lex_state = 36}, - [3253] = {.lex_state = 53}, - [3254] = {.lex_state = 315}, - [3255] = {.lex_state = 53}, - [3256] = {.lex_state = 315}, - [3257] = {.lex_state = 315}, - [3258] = {.lex_state = 315}, - [3259] = {.lex_state = 315}, - [3260] = {.lex_state = 315}, - [3261] = {.lex_state = 48}, - [3262] = {.lex_state = 315}, - [3263] = {.lex_state = 315}, - [3264] = {.lex_state = 315}, - [3265] = {.lex_state = 315}, - [3266] = {.lex_state = 315}, - [3267] = {.lex_state = 315}, - [3268] = {.lex_state = 315}, - [3269] = {.lex_state = 48}, - [3270] = {.lex_state = 315}, - [3271] = {.lex_state = 315}, - [3272] = {.lex_state = 53}, - [3273] = {.lex_state = 315}, - [3274] = {.lex_state = 53}, - [3275] = {.lex_state = 315}, - [3276] = {.lex_state = 15}, - [3277] = {.lex_state = 315}, - [3278] = {.lex_state = 315}, - [3279] = {.lex_state = 33}, - [3280] = {.lex_state = 36}, - [3281] = {.lex_state = 53}, - [3282] = {.lex_state = 53}, - [3283] = {.lex_state = 38}, - [3284] = {.lex_state = 36}, - [3285] = {.lex_state = 315}, - [3286] = {.lex_state = 315}, - [3287] = {.lex_state = 53}, - [3288] = {.lex_state = 315}, - [3289] = {.lex_state = 315}, - [3290] = {.lex_state = 53}, - [3291] = {.lex_state = 315}, - [3292] = {.lex_state = 315}, - [3293] = {.lex_state = 315}, - [3294] = {.lex_state = 48}, - [3295] = {.lex_state = 315}, - [3296] = {.lex_state = 315}, - [3297] = {.lex_state = 53}, - [3298] = {.lex_state = 36}, - [3299] = {.lex_state = 315}, - [3300] = {.lex_state = 315}, - [3301] = {.lex_state = 315}, - [3302] = {.lex_state = 36}, - [3303] = {.lex_state = 53}, - [3304] = {.lex_state = 315}, - [3305] = {.lex_state = 48}, - [3306] = {.lex_state = 48}, - [3307] = {.lex_state = 315}, - [3308] = {.lex_state = 315}, - [3309] = {.lex_state = 5}, - [3310] = {.lex_state = 315}, - [3311] = {.lex_state = 315}, - [3312] = {.lex_state = 315}, - [3313] = {.lex_state = 315}, - [3314] = {.lex_state = 315}, - [3315] = {.lex_state = 315}, - [3316] = {.lex_state = 315}, - [3317] = {.lex_state = 315}, - [3318] = {.lex_state = 315}, - [3319] = {.lex_state = 39}, - [3320] = {.lex_state = 22}, - [3321] = {.lex_state = 315}, - [3322] = {.lex_state = 315}, - [3323] = {.lex_state = 22}, - [3324] = {.lex_state = 315}, - [3325] = {.lex_state = 39}, - [3326] = {.lex_state = 315}, - [3327] = {.lex_state = 350}, - [3328] = {.lex_state = 315}, - [3329] = {.lex_state = 315}, - [3330] = {.lex_state = 315}, - [3331] = {.lex_state = 350}, - [3332] = {.lex_state = 315}, - [3333] = {.lex_state = 315}, - [3334] = {.lex_state = 315}, - [3335] = {.lex_state = 315}, - [3336] = {.lex_state = 315}, - [3337] = {.lex_state = 39}, - [3338] = {.lex_state = 315}, - [3339] = {.lex_state = 315}, - [3340] = {.lex_state = 315}, - [3341] = {.lex_state = 315}, - [3342] = {.lex_state = 39}, - [3343] = {.lex_state = 350}, - [3344] = {.lex_state = 315}, - [3345] = {.lex_state = 39}, - [3346] = {.lex_state = 47}, - [3347] = {.lex_state = 315}, - [3348] = {.lex_state = 22}, - [3349] = {.lex_state = 315}, - [3350] = {.lex_state = 350}, - [3351] = {.lex_state = 315}, - [3352] = {.lex_state = 39}, - [3353] = {.lex_state = 315}, - [3354] = {.lex_state = 5}, - [3355] = {.lex_state = 39}, - [3356] = {.lex_state = 39}, - [3357] = {.lex_state = 350}, - [3358] = {.lex_state = 315}, - [3359] = {.lex_state = 315}, - [3360] = {.lex_state = 315}, - [3361] = {.lex_state = 350}, - [3362] = {.lex_state = 315}, - [3363] = {.lex_state = 315}, - [3364] = {.lex_state = 350}, - [3365] = {.lex_state = 39}, - [3366] = {.lex_state = 47}, - [3367] = {.lex_state = 315}, - [3368] = {.lex_state = 39}, - [3369] = {.lex_state = 39}, - [3370] = {.lex_state = 315}, - [3371] = {.lex_state = 350}, - [3372] = {.lex_state = 315}, - [3373] = {.lex_state = 5}, - [3374] = {.lex_state = 350}, - [3375] = {.lex_state = 350}, - [3376] = {.lex_state = 350}, - [3377] = {.lex_state = 350}, - [3378] = {.lex_state = 350}, - [3379] = {.lex_state = 350}, - [3380] = {.lex_state = 39}, - [3381] = {.lex_state = 315}, - [3382] = {.lex_state = 315}, - [3383] = {.lex_state = 39}, - [3384] = {.lex_state = 39}, - [3385] = {.lex_state = 39}, - [3386] = {.lex_state = 39}, - [3387] = {.lex_state = 39}, - [3388] = {.lex_state = 350}, - [3389] = {.lex_state = 39}, - [3390] = {.lex_state = 39}, - [3391] = {.lex_state = 39}, - [3392] = {.lex_state = 350}, - [3393] = {.lex_state = 39}, - [3394] = {.lex_state = 39}, - [3395] = {.lex_state = 39}, - [3396] = {.lex_state = 350}, - [3397] = {.lex_state = 350}, - [3398] = {.lex_state = 39}, - [3399] = {.lex_state = 350}, - [3400] = {.lex_state = 39}, - [3401] = {.lex_state = 39}, - [3402] = {.lex_state = 350}, - [3403] = {.lex_state = 350}, - [3404] = {.lex_state = 39}, - [3405] = {.lex_state = 350}, - [3406] = {.lex_state = 39}, - [3407] = {.lex_state = 39}, - [3408] = {.lex_state = 39}, - [3409] = {.lex_state = 39}, - [3410] = {.lex_state = 350}, - [3411] = {.lex_state = 39}, - [3412] = {.lex_state = 39}, - [3413] = {.lex_state = 39}, - [3414] = {.lex_state = 39}, - [3415] = {.lex_state = 39}, - [3416] = {.lex_state = 5}, - [3417] = {.lex_state = 39}, - [3418] = {.lex_state = 39}, - [3419] = {.lex_state = 315}, - [3420] = {.lex_state = 39}, - [3421] = {.lex_state = 39}, - [3422] = {.lex_state = 39}, - [3423] = {.lex_state = 39}, - [3424] = {.lex_state = 39}, - [3425] = {.lex_state = 315}, - [3426] = {.lex_state = 39}, - [3427] = {.lex_state = 350}, - [3428] = {.lex_state = 39}, - [3429] = {.lex_state = 350}, - [3430] = {.lex_state = 39}, - [3431] = {.lex_state = 350}, - [3432] = {.lex_state = 39}, - [3433] = {.lex_state = 39}, - [3434] = {.lex_state = 315}, - [3435] = {.lex_state = 39}, - [3436] = {.lex_state = 39}, - [3437] = {.lex_state = 315}, - [3438] = {.lex_state = 39}, - [3439] = {.lex_state = 315}, - [3440] = {.lex_state = 39}, - [3441] = {.lex_state = 39}, - [3442] = {.lex_state = 350}, - [3443] = {.lex_state = 39}, - [3444] = {.lex_state = 39}, - [3445] = {.lex_state = 315}, - [3446] = {.lex_state = 350}, - [3447] = {.lex_state = 315}, - [3448] = {.lex_state = 315}, - [3449] = {.lex_state = 315}, - [3450] = {.lex_state = 39}, - [3451] = {.lex_state = 350}, - [3452] = {.lex_state = 315}, - [3453] = {.lex_state = 39}, - [3454] = {.lex_state = 39}, - [3455] = {.lex_state = 315}, - [3456] = {.lex_state = 39}, - [3457] = {.lex_state = 39}, - [3458] = {.lex_state = 39}, - [3459] = {.lex_state = 315}, - [3460] = {.lex_state = 39}, - [3461] = {.lex_state = 350}, - [3462] = {.lex_state = 350}, - [3463] = {.lex_state = 39}, - [3464] = {.lex_state = 39}, - [3465] = {.lex_state = 350}, - [3466] = {.lex_state = 39}, - [3467] = {.lex_state = 350}, - [3468] = {.lex_state = 350}, - [3469] = {.lex_state = 315}, - [3470] = {.lex_state = 39}, - [3471] = {.lex_state = 315}, - [3472] = {.lex_state = 39}, - [3473] = {.lex_state = 315}, - [3474] = {.lex_state = 315}, - [3475] = {.lex_state = 350}, - [3476] = {.lex_state = 350}, - [3477] = {.lex_state = 315}, - [3478] = {.lex_state = 315}, - [3479] = {.lex_state = 315}, - [3480] = {.lex_state = 39}, - [3481] = {.lex_state = 315}, - [3482] = {.lex_state = 315}, - [3483] = {.lex_state = 315}, - [3484] = {.lex_state = 39}, - [3485] = {.lex_state = 350}, - [3486] = {.lex_state = 39}, - [3487] = {.lex_state = 350}, - [3488] = {.lex_state = 39}, - [3489] = {.lex_state = 315}, - [3490] = {.lex_state = 350}, - [3491] = {.lex_state = 39}, - [3492] = {.lex_state = 350}, - [3493] = {.lex_state = 315}, - [3494] = {.lex_state = 350}, - [3495] = {.lex_state = 350}, - [3496] = {.lex_state = 39}, - [3497] = {.lex_state = 315}, - [3498] = {.lex_state = 39}, - [3499] = {.lex_state = 350}, - [3500] = {.lex_state = 315}, - [3501] = {.lex_state = 315}, - [3502] = {.lex_state = 315}, - [3503] = {.lex_state = 315}, - [3504] = {.lex_state = 315}, - [3505] = {.lex_state = 315}, - [3506] = {.lex_state = 315}, - [3507] = {.lex_state = 350}, - [3508] = {.lex_state = 315}, - [3509] = {.lex_state = 350}, - [3510] = {.lex_state = 315}, - [3511] = {.lex_state = 315}, - [3512] = {.lex_state = 315}, - [3513] = {.lex_state = 350}, - [3514] = {.lex_state = 39}, - [3515] = {.lex_state = 315}, - [3516] = {.lex_state = 315}, - [3517] = {.lex_state = 315}, - [3518] = {.lex_state = 39}, - [3519] = {.lex_state = 315}, - [3520] = {.lex_state = 315}, - [3521] = {.lex_state = 315}, - [3522] = {.lex_state = 39}, - [3523] = {.lex_state = 315}, - [3524] = {.lex_state = 315}, - [3525] = {.lex_state = 39}, - [3526] = {.lex_state = 350}, - [3527] = {.lex_state = 315}, - [3528] = {.lex_state = 350}, - [3529] = {.lex_state = 350}, - [3530] = {.lex_state = 350}, - [3531] = {.lex_state = 39}, - [3532] = {.lex_state = 350}, - [3533] = {.lex_state = 350}, - [3534] = {.lex_state = 315}, - [3535] = {.lex_state = 315}, - [3536] = {.lex_state = 315}, - [3537] = {.lex_state = 350}, - [3538] = {.lex_state = 39}, - [3539] = {.lex_state = 315}, - [3540] = {.lex_state = 350}, - [3541] = {.lex_state = 315}, - [3542] = {.lex_state = 315}, - [3543] = {.lex_state = 315}, - [3544] = {.lex_state = 350}, - [3545] = {.lex_state = 350}, - [3546] = {.lex_state = 315}, - [3547] = {.lex_state = 350}, - [3548] = {.lex_state = 39}, - [3549] = {.lex_state = 315}, - [3550] = {.lex_state = 46}, - [3551] = {.lex_state = 315}, - [3552] = {.lex_state = 315}, - [3553] = {.lex_state = 315}, - [3554] = {.lex_state = 53}, - [3555] = {.lex_state = 46}, - [3556] = {.lex_state = 315}, - [3557] = {.lex_state = 315}, - [3558] = {.lex_state = 315}, - [3559] = {.lex_state = 315}, - [3560] = {.lex_state = 315}, - [3561] = {.lex_state = 46}, - [3562] = {.lex_state = 315}, - [3563] = {.lex_state = 46}, - [3564] = {.lex_state = 350}, - [3565] = {.lex_state = 46}, - [3566] = {.lex_state = 46}, - [3567] = {.lex_state = 315}, - [3568] = {.lex_state = 46}, - [3569] = {.lex_state = 46}, - [3570] = {.lex_state = 46}, - [3571] = {.lex_state = 46}, - [3572] = {.lex_state = 46}, - [3573] = {.lex_state = 46}, - [3574] = {.lex_state = 39}, - [3575] = {.lex_state = 53}, - [3576] = {.lex_state = 46}, - [3577] = {.lex_state = 350}, - [3578] = {.lex_state = 5}, - [3579] = {.lex_state = 46}, - [3580] = {.lex_state = 46}, - [3581] = {.lex_state = 315}, - [3582] = {.lex_state = 53}, - [3583] = {.lex_state = 5}, - [3584] = {.lex_state = 43}, - [3585] = {.lex_state = 315}, - [3586] = {.lex_state = 46}, - [3587] = {.lex_state = 315}, - [3588] = {.lex_state = 315}, - [3589] = {.lex_state = 315}, - [3590] = {.lex_state = 46}, - [3591] = {.lex_state = 350}, - [3592] = {.lex_state = 315}, - [3593] = {.lex_state = 46}, - [3594] = {.lex_state = 46}, - [3595] = {.lex_state = 46}, - [3596] = {.lex_state = 46}, - [3597] = {.lex_state = 315}, - [3598] = {.lex_state = 5}, - [3599] = {.lex_state = 46}, - [3600] = {.lex_state = 5}, - [3601] = {.lex_state = 315}, - [3602] = {.lex_state = 350}, - [3603] = {.lex_state = 46}, - [3604] = {.lex_state = 315}, - [3605] = {.lex_state = 46}, - [3606] = {.lex_state = 46}, - [3607] = {.lex_state = 46}, - [3608] = {.lex_state = 46}, - [3609] = {.lex_state = 46}, - [3610] = {.lex_state = 315}, - [3611] = {.lex_state = 315}, - [3612] = {.lex_state = 46}, - [3613] = {.lex_state = 350}, - [3614] = {.lex_state = 315}, - [3615] = {.lex_state = 315}, - [3616] = {.lex_state = 46}, - [3617] = {.lex_state = 46}, - [3618] = {.lex_state = 46}, - [3619] = {.lex_state = 315}, - [3620] = {.lex_state = 46}, - [3621] = {.lex_state = 315}, - [3622] = {.lex_state = 315}, - [3623] = {.lex_state = 315}, - [3624] = {.lex_state = 315}, - [3625] = {.lex_state = 46}, - [3626] = {.lex_state = 315}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 315}, - [3629] = {.lex_state = 350}, - [3630] = {.lex_state = 315}, - [3631] = {.lex_state = 46}, - [3632] = {.lex_state = 315}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 46}, - [3635] = {.lex_state = 315}, - [3636] = {.lex_state = 315}, - [3637] = {.lex_state = 350}, - [3638] = {.lex_state = 350}, - [3639] = {.lex_state = 350}, - [3640] = {.lex_state = 350}, - [3641] = {.lex_state = 350}, - [3642] = {.lex_state = 350}, - [3643] = {.lex_state = 350}, - [3644] = {.lex_state = 350}, - [3645] = {.lex_state = 350}, - [3646] = {.lex_state = 49}, - [3647] = {.lex_state = 350}, - [3648] = {.lex_state = 350}, - [3649] = {.lex_state = 350}, - [3650] = {.lex_state = 350}, - [3651] = {.lex_state = 350}, - [3652] = {.lex_state = 350}, - [3653] = {.lex_state = 350}, - [3654] = {.lex_state = 350}, - [3655] = {.lex_state = 350}, - [3656] = {.lex_state = 350}, - [3657] = {.lex_state = 350}, - [3658] = {.lex_state = 350}, - [3659] = {.lex_state = 350}, - [3660] = {.lex_state = 350}, - [3661] = {.lex_state = 350}, - [3662] = {.lex_state = 350}, - [3663] = {.lex_state = 350}, - [3664] = {.lex_state = 350}, - [3665] = {.lex_state = 350}, - [3666] = {.lex_state = 350}, - [3667] = {.lex_state = 20}, - [3668] = {.lex_state = 350}, - [3669] = {.lex_state = 350}, - [3670] = {.lex_state = 350}, - [3671] = {.lex_state = 350}, - [3672] = {.lex_state = 350}, - [3673] = {.lex_state = 46}, - [3674] = {.lex_state = 350}, - [3675] = {.lex_state = 350}, - [3676] = {.lex_state = 350}, - [3677] = {.lex_state = 350}, - [3678] = {.lex_state = 350}, - [3679] = {.lex_state = 350}, - [3680] = {.lex_state = 350}, - [3681] = {.lex_state = 350}, - [3682] = {.lex_state = 350}, - [3683] = {.lex_state = 350}, - [3684] = {.lex_state = 350}, - [3685] = {.lex_state = 350}, - [3686] = {.lex_state = 350}, - [3687] = {.lex_state = 350}, - [3688] = {.lex_state = 350}, - [3689] = {.lex_state = 10}, - [3690] = {.lex_state = 350}, - [3691] = {.lex_state = 5}, - [3692] = {.lex_state = 350}, - [3693] = {.lex_state = 350}, - [3694] = {.lex_state = 350}, - [3695] = {.lex_state = 350}, - [3696] = {.lex_state = 350}, - [3697] = {.lex_state = 350}, - [3698] = {.lex_state = 350}, - [3699] = {.lex_state = 350}, - [3700] = {.lex_state = 350}, - [3701] = {.lex_state = 350}, - [3702] = {.lex_state = 350}, - [3703] = {.lex_state = 350}, - [3704] = {.lex_state = 350}, - [3705] = {.lex_state = 350}, - [3706] = {.lex_state = 350}, - [3707] = {.lex_state = 350}, - [3708] = {.lex_state = 350}, - [3709] = {.lex_state = 350}, - [3710] = {.lex_state = 350}, - [3711] = {.lex_state = 350}, - [3712] = {.lex_state = 20}, - [3713] = {.lex_state = 350}, - [3714] = {.lex_state = 350}, - [3715] = {.lex_state = 350}, - [3716] = {.lex_state = 350}, - [3717] = {.lex_state = 33}, - [3718] = {.lex_state = 350}, - [3719] = {.lex_state = 44}, - [3720] = {.lex_state = 10}, - [3721] = {.lex_state = 5}, - [3722] = {.lex_state = 350}, - [3723] = {.lex_state = 350}, - [3724] = {.lex_state = 350}, - [3725] = {.lex_state = 44}, - [3726] = {.lex_state = 1879}, - [3727] = {.lex_state = 52}, - [3728] = {.lex_state = 35}, - [3729] = {.lex_state = 350}, - [3730] = {.lex_state = 350}, - [3731] = {.lex_state = 350}, - [3732] = {.lex_state = 350}, - [3733] = {.lex_state = 350}, - [3734] = {.lex_state = 350}, - [3735] = {.lex_state = 44}, - [3736] = {.lex_state = 350}, - [3737] = {.lex_state = 350}, - [3738] = {.lex_state = 350}, - [3739] = {.lex_state = 350}, - [3740] = {.lex_state = 350}, - [3741] = {.lex_state = 33}, - [3742] = {.lex_state = 350}, - [3743] = {.lex_state = 350}, - [3744] = {.lex_state = 350}, - [3745] = {.lex_state = 350}, - [3746] = {.lex_state = 350}, - [3747] = {.lex_state = 33}, - [3748] = {.lex_state = 10}, - [3749] = {.lex_state = 350}, - [3750] = {.lex_state = 350}, - [3751] = {.lex_state = 350}, - [3752] = {.lex_state = 350}, - [3753] = {.lex_state = 350}, - [3754] = {.lex_state = 10}, - [3755] = {.lex_state = 5}, - [3756] = {.lex_state = 350}, - [3757] = {.lex_state = 350}, - [3758] = {.lex_state = 20}, - [3759] = {.lex_state = 10}, - [3760] = {.lex_state = 5}, - [3761] = {.lex_state = 350}, - [3762] = {.lex_state = 350}, - [3763] = {.lex_state = 350}, - [3764] = {.lex_state = 10}, - [3765] = {.lex_state = 5}, - [3766] = {.lex_state = 35}, - [3767] = {.lex_state = 350}, - [3768] = {.lex_state = 350}, - [3769] = {.lex_state = 10}, - [3770] = {.lex_state = 350}, - [3771] = {.lex_state = 350}, - [3772] = {.lex_state = 350}, - [3773] = {.lex_state = 350}, - [3774] = {.lex_state = 10}, - [3775] = {.lex_state = 350}, - [3776] = {.lex_state = 350}, - [3777] = {.lex_state = 350}, - [3778] = {.lex_state = 350}, - [3779] = {.lex_state = 350}, - [3780] = {.lex_state = 350}, - [3781] = {.lex_state = 350}, - [3782] = {.lex_state = 25}, - [3783] = {.lex_state = 350}, - [3784] = {.lex_state = 10}, - [3785] = {.lex_state = 350}, - [3786] = {.lex_state = 35}, - [3787] = {.lex_state = 20}, - [3788] = {.lex_state = 350}, - [3789] = {.lex_state = 10}, - [3790] = {.lex_state = 350}, - [3791] = {.lex_state = 350}, - [3792] = {.lex_state = 350}, - [3793] = {.lex_state = 10}, - [3794] = {.lex_state = 10}, - [3795] = {.lex_state = 350}, - [3796] = {.lex_state = 350}, - [3797] = {.lex_state = 33}, - [3798] = {.lex_state = 350}, - [3799] = {.lex_state = 10}, - [3800] = {.lex_state = 350}, - [3801] = {.lex_state = 350}, - [3802] = {.lex_state = 33}, - [3803] = {.lex_state = 350}, - [3804] = {.lex_state = 10}, - [3805] = {.lex_state = 350}, - [3806] = {.lex_state = 350}, - [3807] = {.lex_state = 350}, - [3808] = {.lex_state = 350}, - [3809] = {.lex_state = 10}, - [3810] = {.lex_state = 350}, - [3811] = {.lex_state = 25}, - [3812] = {.lex_state = 350}, - [3813] = {.lex_state = 350}, - [3814] = {.lex_state = 10}, - [3815] = {.lex_state = 350}, - [3816] = {.lex_state = 350}, - [3817] = {.lex_state = 350}, - [3818] = {.lex_state = 350}, - [3819] = {.lex_state = 10}, - [3820] = {.lex_state = 350}, - [3821] = {.lex_state = 350}, - [3822] = {.lex_state = 350}, - [3823] = {.lex_state = 10}, - [3824] = {.lex_state = 44}, - [3825] = {.lex_state = 350}, - [3826] = {.lex_state = 10}, - [3827] = {.lex_state = 33}, - [3828] = {.lex_state = 350}, - [3829] = {.lex_state = 350}, - [3830] = {.lex_state = 350}, - [3831] = {.lex_state = 350}, - [3832] = {.lex_state = 20}, - [3833] = {.lex_state = 350}, - [3834] = {.lex_state = 350}, - [3835] = {.lex_state = 350}, - [3836] = {.lex_state = 350}, - [3837] = {.lex_state = 350}, - [3838] = {.lex_state = 350}, - [3839] = {.lex_state = 350}, - [3840] = {.lex_state = 350}, - [3841] = {.lex_state = 10}, - [3842] = {.lex_state = 350}, - [3843] = {.lex_state = 350}, - [3844] = {.lex_state = 350}, - [3845] = {.lex_state = 350}, - [3846] = {.lex_state = 20}, - [3847] = {.lex_state = 350}, - [3848] = {.lex_state = 20}, - [3849] = {.lex_state = 33}, - [3850] = {.lex_state = 350}, - [3851] = {.lex_state = 5}, - [3852] = {.lex_state = 44}, - [3853] = {.lex_state = 2}, - [3854] = {.lex_state = 10}, - [3855] = {.lex_state = 10}, - [3856] = {.lex_state = 10}, - [3857] = {.lex_state = 10}, - [3858] = {.lex_state = 10}, - [3859] = {.lex_state = 10}, - [3860] = {.lex_state = 10}, - [3861] = {.lex_state = 10}, - [3862] = {.lex_state = 10}, - [3863] = {.lex_state = 10}, - [3864] = {.lex_state = 10}, - [3865] = {.lex_state = 10}, - [3866] = {.lex_state = 10}, - [3867] = {.lex_state = 10}, - [3868] = {.lex_state = 350}, - [3869] = {(TSStateId)(-1)}, + [3021] = {.lex_state = 15}, + [3022] = {.lex_state = 31}, + [3023] = {.lex_state = 15}, + [3024] = {.lex_state = 31}, + [3025] = {.lex_state = 31}, + [3026] = {.lex_state = 31}, + [3027] = {.lex_state = 15}, + [3028] = {.lex_state = 16}, + [3029] = {.lex_state = 31}, + [3030] = {.lex_state = 15}, + [3031] = {.lex_state = 40}, + [3032] = {.lex_state = 40}, + [3033] = {.lex_state = 16}, + [3034] = {.lex_state = 31}, + [3035] = {.lex_state = 15}, + [3036] = {.lex_state = 31}, + [3037] = {.lex_state = 31}, + [3038] = {.lex_state = 31}, + [3039] = {.lex_state = 15}, + [3040] = {.lex_state = 31}, + [3041] = {.lex_state = 40}, + [3042] = {.lex_state = 31}, + [3043] = {.lex_state = 16}, + [3044] = {.lex_state = 15}, + [3045] = {.lex_state = 31}, + [3046] = {.lex_state = 31}, + [3047] = {.lex_state = 31}, + [3048] = {.lex_state = 31}, + [3049] = {.lex_state = 40}, + [3050] = {.lex_state = 16}, + [3051] = {.lex_state = 16}, + [3052] = {.lex_state = 15}, + [3053] = {.lex_state = 34}, + [3054] = {.lex_state = 31}, + [3055] = {.lex_state = 31}, + [3056] = {.lex_state = 31}, + [3057] = {.lex_state = 33}, + [3058] = {.lex_state = 34}, + [3059] = {.lex_state = 31}, + [3060] = {.lex_state = 31}, + [3061] = {.lex_state = 31}, + [3062] = {.lex_state = 31}, + [3063] = {.lex_state = 31}, + [3064] = {.lex_state = 31}, + [3065] = {.lex_state = 31}, + [3066] = {.lex_state = 33}, + [3067] = {.lex_state = 31}, + [3068] = {.lex_state = 31}, + [3069] = {.lex_state = 34}, + [3070] = {.lex_state = 31}, + [3071] = {.lex_state = 31}, + [3072] = {.lex_state = 31}, + [3073] = {.lex_state = 31}, + [3074] = {.lex_state = 31}, + [3075] = {.lex_state = 31}, + [3076] = {.lex_state = 34}, + [3077] = {.lex_state = 31}, + [3078] = {.lex_state = 31}, + [3079] = {.lex_state = 31}, + [3080] = {.lex_state = 31}, + [3081] = {.lex_state = 34}, + [3082] = {.lex_state = 31}, + [3083] = {.lex_state = 31}, + [3084] = {.lex_state = 34}, + [3085] = {.lex_state = 31}, + [3086] = {.lex_state = 34}, + [3087] = {.lex_state = 31}, + [3088] = {.lex_state = 323}, + [3089] = {.lex_state = 31}, + [3090] = {.lex_state = 31}, + [3091] = {.lex_state = 31}, + [3092] = {.lex_state = 31}, + [3093] = {.lex_state = 323}, + [3094] = {.lex_state = 323}, + [3095] = {.lex_state = 33}, + [3096] = {.lex_state = 323}, + [3097] = {.lex_state = 31}, + [3098] = {.lex_state = 323}, + [3099] = {.lex_state = 323}, + [3100] = {.lex_state = 323}, + [3101] = {.lex_state = 323}, + [3102] = {.lex_state = 323}, + [3103] = {.lex_state = 323}, + [3104] = {.lex_state = 323}, + [3105] = {.lex_state = 323}, + [3106] = {.lex_state = 323}, + [3107] = {.lex_state = 323}, + [3108] = {.lex_state = 323}, + [3109] = {.lex_state = 323}, + [3110] = {.lex_state = 323}, + [3111] = {.lex_state = 323}, + [3112] = {.lex_state = 323}, + [3113] = {.lex_state = 323}, + [3114] = {.lex_state = 323}, + [3115] = {.lex_state = 323}, + [3116] = {.lex_state = 323}, + [3117] = {.lex_state = 323}, + [3118] = {.lex_state = 323}, + [3119] = {.lex_state = 323}, + [3120] = {.lex_state = 323}, + [3121] = {.lex_state = 323}, + [3122] = {.lex_state = 31}, + [3123] = {.lex_state = 323}, + [3124] = {.lex_state = 31}, + [3125] = {.lex_state = 31}, + [3126] = {.lex_state = 31}, + [3127] = {.lex_state = 31}, + [3128] = {.lex_state = 349}, + [3129] = {.lex_state = 31}, + [3130] = {.lex_state = 323}, + [3131] = {.lex_state = 323}, + [3132] = {.lex_state = 323}, + [3133] = {.lex_state = 323}, + [3134] = {.lex_state = 323}, + [3135] = {.lex_state = 323}, + [3136] = {.lex_state = 323}, + [3137] = {.lex_state = 323}, + [3138] = {.lex_state = 31}, + [3139] = {.lex_state = 323}, + [3140] = {.lex_state = 323}, + [3141] = {.lex_state = 31}, + [3142] = {.lex_state = 31}, + [3143] = {.lex_state = 323}, + [3144] = {.lex_state = 31}, + [3145] = {.lex_state = 323}, + [3146] = {.lex_state = 31}, + [3147] = {.lex_state = 31}, + [3148] = {.lex_state = 323}, + [3149] = {.lex_state = 323}, + [3150] = {.lex_state = 323}, + [3151] = {.lex_state = 31}, + [3152] = {.lex_state = 323}, + [3153] = {.lex_state = 323}, + [3154] = {.lex_state = 31}, + [3155] = {.lex_state = 31}, + [3156] = {.lex_state = 323}, + [3157] = {.lex_state = 31}, + [3158] = {.lex_state = 323}, + [3159] = {.lex_state = 31}, + [3160] = {.lex_state = 323}, + [3161] = {.lex_state = 323}, + [3162] = {.lex_state = 323}, + [3163] = {.lex_state = 323}, + [3164] = {.lex_state = 323}, + [3165] = {.lex_state = 323}, + [3166] = {.lex_state = 34}, + [3167] = {.lex_state = 34}, + [3168] = {.lex_state = 44}, + [3169] = {.lex_state = 351}, + [3170] = {.lex_state = 44}, + [3171] = {.lex_state = 34}, + [3172] = {.lex_state = 34}, + [3173] = {.lex_state = 34}, + [3174] = {.lex_state = 34}, + [3175] = {.lex_state = 31}, + [3176] = {.lex_state = 24}, + [3177] = {.lex_state = 34}, + [3178] = {.lex_state = 34}, + [3179] = {.lex_state = 31}, + [3180] = {.lex_state = 34}, + [3181] = {.lex_state = 34}, + [3182] = {.lex_state = 351}, + [3183] = {.lex_state = 34}, + [3184] = {.lex_state = 34}, + [3185] = {.lex_state = 34}, + [3186] = {.lex_state = 34}, + [3187] = {.lex_state = 44}, + [3188] = {.lex_state = 34}, + [3189] = {.lex_state = 34}, + [3190] = {.lex_state = 34}, + [3191] = {.lex_state = 34}, + [3192] = {.lex_state = 24}, + [3193] = {.lex_state = 34}, + [3194] = {.lex_state = 34}, + [3195] = {.lex_state = 34}, + [3196] = {.lex_state = 31}, + [3197] = {.lex_state = 31}, + [3198] = {.lex_state = 31}, + [3199] = {.lex_state = 31}, + [3200] = {.lex_state = 34}, + [3201] = {.lex_state = 38}, + [3202] = {.lex_state = 34}, + [3203] = {.lex_state = 31}, + [3204] = {.lex_state = 24}, + [3205] = {.lex_state = 34}, + [3206] = {.lex_state = 38}, + [3207] = {.lex_state = 34}, + [3208] = {.lex_state = 24}, + [3209] = {.lex_state = 31}, + [3210] = {.lex_state = 34}, + [3211] = {.lex_state = 31}, + [3212] = {.lex_state = 31}, + [3213] = {.lex_state = 24}, + [3214] = {.lex_state = 34}, + [3215] = {.lex_state = 349}, + [3216] = {.lex_state = 34}, + [3217] = {.lex_state = 34}, + [3218] = {.lex_state = 323}, + [3219] = {.lex_state = 351}, + [3220] = {.lex_state = 31}, + [3221] = {.lex_state = 38}, + [3222] = {.lex_state = 34}, + [3223] = {.lex_state = 351}, + [3224] = {.lex_state = 34}, + [3225] = {.lex_state = 31}, + [3226] = {.lex_state = 34}, + [3227] = {.lex_state = 34}, + [3228] = {.lex_state = 31}, + [3229] = {.lex_state = 34}, + [3230] = {.lex_state = 34}, + [3231] = {.lex_state = 34}, + [3232] = {.lex_state = 34}, + [3233] = {.lex_state = 31}, + [3234] = {.lex_state = 38}, + [3235] = {.lex_state = 323}, + [3236] = {.lex_state = 34}, + [3237] = {.lex_state = 33}, + [3238] = {.lex_state = 316}, + [3239] = {.lex_state = 22}, + [3240] = {.lex_state = 22}, + [3241] = {.lex_state = 321}, + [3242] = {.lex_state = 22}, + [3243] = {.lex_state = 33}, + [3244] = {.lex_state = 22}, + [3245] = {.lex_state = 22}, + [3246] = {.lex_state = 31}, + [3247] = {.lex_state = 15}, + [3248] = {.lex_state = 22}, + [3249] = {.lex_state = 22}, + [3250] = {.lex_state = 31}, + [3251] = {.lex_state = 22}, + [3252] = {.lex_state = 22}, + [3253] = {.lex_state = 323}, + [3254] = {.lex_state = 22}, + [3255] = {.lex_state = 15}, + [3256] = {.lex_state = 31}, + [3257] = {.lex_state = 31}, + [3258] = {.lex_state = 22}, + [3259] = {.lex_state = 22}, + [3260] = {.lex_state = 323}, + [3261] = {.lex_state = 31}, + [3262] = {.lex_state = 31}, + [3263] = {.lex_state = 22}, + [3264] = {.lex_state = 33}, + [3265] = {.lex_state = 34}, + [3266] = {.lex_state = 34}, + [3267] = {.lex_state = 22}, + [3268] = {.lex_state = 22}, + [3269] = {.lex_state = 34}, + [3270] = {.lex_state = 22}, + [3271] = {.lex_state = 349}, + [3272] = {.lex_state = 31}, + [3273] = {.lex_state = 22}, + [3274] = {.lex_state = 22}, + [3275] = {.lex_state = 22}, + [3276] = {.lex_state = 22}, + [3277] = {.lex_state = 33}, + [3278] = {.lex_state = 22}, + [3279] = {.lex_state = 34}, + [3280] = {.lex_state = 316}, + [3281] = {.lex_state = 22}, + [3282] = {.lex_state = 321}, + [3283] = {.lex_state = 22}, + [3284] = {.lex_state = 22}, + [3285] = {.lex_state = 22}, + [3286] = {.lex_state = 31}, + [3287] = {.lex_state = 22}, + [3288] = {.lex_state = 33}, + [3289] = {.lex_state = 22}, + [3290] = {.lex_state = 316}, + [3291] = {.lex_state = 22}, + [3292] = {.lex_state = 316}, + [3293] = {.lex_state = 31}, + [3294] = {.lex_state = 31}, + [3295] = {.lex_state = 31}, + [3296] = {.lex_state = 42}, + [3297] = {.lex_state = 22}, + [3298] = {.lex_state = 22}, + [3299] = {.lex_state = 22}, + [3300] = {.lex_state = 22}, + [3301] = {.lex_state = 316}, + [3302] = {.lex_state = 22}, + [3303] = {.lex_state = 22}, + [3304] = {.lex_state = 22}, + [3305] = {.lex_state = 316}, + [3306] = {.lex_state = 22}, + [3307] = {.lex_state = 22}, + [3308] = {.lex_state = 35}, + [3309] = {.lex_state = 316}, + [3310] = {.lex_state = 33}, + [3311] = {.lex_state = 48}, + [3312] = {.lex_state = 316}, + [3313] = {.lex_state = 316}, + [3314] = {.lex_state = 48}, + [3315] = {.lex_state = 53}, + [3316] = {.lex_state = 31}, + [3317] = {.lex_state = 33}, + [3318] = {.lex_state = 316}, + [3319] = {.lex_state = 35}, + [3320] = {.lex_state = 44}, + [3321] = {.lex_state = 35}, + [3322] = {.lex_state = 35}, + [3323] = {.lex_state = 316}, + [3324] = {.lex_state = 44}, + [3325] = {.lex_state = 44}, + [3326] = {.lex_state = 53}, + [3327] = {.lex_state = 48}, + [3328] = {.lex_state = 48}, + [3329] = {.lex_state = 53}, + [3330] = {.lex_state = 321}, + [3331] = {.lex_state = 53}, + [3332] = {.lex_state = 53}, + [3333] = {.lex_state = 53}, + [3334] = {.lex_state = 35}, + [3335] = {.lex_state = 35}, + [3336] = {.lex_state = 316}, + [3337] = {.lex_state = 48}, + [3338] = {.lex_state = 31}, + [3339] = {.lex_state = 316}, + [3340] = {.lex_state = 31}, + [3341] = {.lex_state = 316}, + [3342] = {.lex_state = 316}, + [3343] = {.lex_state = 316}, + [3344] = {.lex_state = 48}, + [3345] = {.lex_state = 53}, + [3346] = {.lex_state = 316}, + [3347] = {.lex_state = 35}, + [3348] = {.lex_state = 53}, + [3349] = {.lex_state = 48}, + [3350] = {.lex_state = 316}, + [3351] = {.lex_state = 316}, + [3352] = {.lex_state = 316}, + [3353] = {.lex_state = 316}, + [3354] = {.lex_state = 316}, + [3355] = {.lex_state = 316}, + [3356] = {.lex_state = 316}, + [3357] = {.lex_state = 53}, + [3358] = {.lex_state = 35}, + [3359] = {.lex_state = 316}, + [3360] = {.lex_state = 35}, + [3361] = {.lex_state = 35}, + [3362] = {.lex_state = 316}, + [3363] = {.lex_state = 53}, + [3364] = {.lex_state = 15}, + [3365] = {.lex_state = 35}, + [3366] = {.lex_state = 35}, + [3367] = {.lex_state = 53}, + [3368] = {.lex_state = 48}, + [3369] = {.lex_state = 31}, + [3370] = {.lex_state = 53}, + [3371] = {.lex_state = 38}, + [3372] = {.lex_state = 38}, + [3373] = {.lex_state = 35}, + [3374] = {.lex_state = 53}, + [3375] = {.lex_state = 35}, + [3376] = {.lex_state = 48}, + [3377] = {.lex_state = 35}, + [3378] = {.lex_state = 316}, + [3379] = {.lex_state = 316}, + [3380] = {.lex_state = 316}, + [3381] = {.lex_state = 316}, + [3382] = {.lex_state = 53}, + [3383] = {.lex_state = 53}, + [3384] = {.lex_state = 316}, + [3385] = {.lex_state = 48}, + [3386] = {.lex_state = 316}, + [3387] = {.lex_state = 35}, + [3388] = {.lex_state = 31}, + [3389] = {.lex_state = 316}, + [3390] = {.lex_state = 48}, + [3391] = {.lex_state = 35}, + [3392] = {.lex_state = 35}, + [3393] = {.lex_state = 31}, + [3394] = {.lex_state = 53}, + [3395] = {.lex_state = 31}, + [3396] = {.lex_state = 35}, + [3397] = {.lex_state = 53}, + [3398] = {.lex_state = 53}, + [3399] = {.lex_state = 316}, + [3400] = {.lex_state = 31}, + [3401] = {.lex_state = 31}, + [3402] = {.lex_state = 53}, + [3403] = {.lex_state = 316}, + [3404] = {.lex_state = 316}, + [3405] = {.lex_state = 15}, + [3406] = {.lex_state = 35}, + [3407] = {.lex_state = 53}, + [3408] = {.lex_state = 316}, + [3409] = {.lex_state = 35}, + [3410] = {.lex_state = 316}, + [3411] = {.lex_state = 53}, + [3412] = {.lex_state = 48}, + [3413] = {.lex_state = 53}, + [3414] = {.lex_state = 349}, + [3415] = {.lex_state = 31}, + [3416] = {.lex_state = 38}, + [3417] = {.lex_state = 316}, + [3418] = {.lex_state = 38}, + [3419] = {.lex_state = 53}, + [3420] = {.lex_state = 48}, + [3421] = {.lex_state = 48}, + [3422] = {.lex_state = 53}, + [3423] = {.lex_state = 48}, + [3424] = {.lex_state = 35}, + [3425] = {.lex_state = 316}, + [3426] = {.lex_state = 53}, + [3427] = {.lex_state = 48}, + [3428] = {.lex_state = 15}, + [3429] = {.lex_state = 53}, + [3430] = {.lex_state = 48}, + [3431] = {.lex_state = 35}, + [3432] = {.lex_state = 53}, + [3433] = {.lex_state = 316}, + [3434] = {.lex_state = 316}, + [3435] = {.lex_state = 53}, + [3436] = {.lex_state = 35}, + [3437] = {.lex_state = 35}, + [3438] = {.lex_state = 316}, + [3439] = {.lex_state = 316}, + [3440] = {.lex_state = 316}, + [3441] = {.lex_state = 316}, + [3442] = {.lex_state = 316}, + [3443] = {.lex_state = 35}, + [3444] = {.lex_state = 321}, + [3445] = {.lex_state = 316}, + [3446] = {.lex_state = 48}, + [3447] = {.lex_state = 35}, + [3448] = {.lex_state = 35}, + [3449] = {.lex_state = 48}, + [3450] = {.lex_state = 35}, + [3451] = {.lex_state = 53}, + [3452] = {.lex_state = 15}, + [3453] = {.lex_state = 48}, + [3454] = {.lex_state = 53}, + [3455] = {.lex_state = 15}, + [3456] = {.lex_state = 35}, + [3457] = {.lex_state = 48}, + [3458] = {.lex_state = 53}, + [3459] = {.lex_state = 48}, + [3460] = {.lex_state = 316}, + [3461] = {.lex_state = 316}, + [3462] = {.lex_state = 316}, + [3463] = {.lex_state = 316}, + [3464] = {.lex_state = 53}, + [3465] = {.lex_state = 35}, + [3466] = {.lex_state = 35}, + [3467] = {.lex_state = 316}, + [3468] = {.lex_state = 316}, + [3469] = {.lex_state = 316}, + [3470] = {.lex_state = 316}, + [3471] = {.lex_state = 316}, + [3472] = {.lex_state = 316}, + [3473] = {.lex_state = 316}, + [3474] = {.lex_state = 316}, + [3475] = {.lex_state = 316}, + [3476] = {.lex_state = 316}, + [3477] = {.lex_state = 316}, + [3478] = {.lex_state = 316}, + [3479] = {.lex_state = 316}, + [3480] = {.lex_state = 316}, + [3481] = {.lex_state = 48}, + [3482] = {.lex_state = 316}, + [3483] = {.lex_state = 316}, + [3484] = {.lex_state = 316}, + [3485] = {.lex_state = 53}, + [3486] = {.lex_state = 48}, + [3487] = {.lex_state = 316}, + [3488] = {.lex_state = 316}, + [3489] = {.lex_state = 31}, + [3490] = {.lex_state = 53}, + [3491] = {.lex_state = 53}, + [3492] = {.lex_state = 35}, + [3493] = {.lex_state = 316}, + [3494] = {.lex_state = 316}, + [3495] = {.lex_state = 316}, + [3496] = {.lex_state = 316}, + [3497] = {.lex_state = 316}, + [3498] = {.lex_state = 34}, + [3499] = {.lex_state = 316}, + [3500] = {.lex_state = 316}, + [3501] = {.lex_state = 316}, + [3502] = {.lex_state = 316}, + [3503] = {.lex_state = 48}, + [3504] = {.lex_state = 316}, + [3505] = {.lex_state = 316}, + [3506] = {.lex_state = 316}, + [3507] = {.lex_state = 53}, + [3508] = {.lex_state = 35}, + [3509] = {.lex_state = 316}, + [3510] = {.lex_state = 316}, + [3511] = {.lex_state = 15}, + [3512] = {.lex_state = 53}, + [3513] = {.lex_state = 48}, + [3514] = {.lex_state = 35}, + [3515] = {.lex_state = 316}, + [3516] = {.lex_state = 316}, + [3517] = {.lex_state = 316}, + [3518] = {.lex_state = 316}, + [3519] = {.lex_state = 316}, + [3520] = {.lex_state = 316}, + [3521] = {.lex_state = 316}, + [3522] = {.lex_state = 316}, + [3523] = {.lex_state = 316}, + [3524] = {.lex_state = 316}, + [3525] = {.lex_state = 316}, + [3526] = {.lex_state = 316}, + [3527] = {.lex_state = 316}, + [3528] = {.lex_state = 316}, + [3529] = {.lex_state = 48}, + [3530] = {.lex_state = 316}, + [3531] = {.lex_state = 316}, + [3532] = {.lex_state = 39}, + [3533] = {.lex_state = 316}, + [3534] = {.lex_state = 351}, + [3535] = {.lex_state = 39}, + [3536] = {.lex_state = 39}, + [3537] = {.lex_state = 351}, + [3538] = {.lex_state = 351}, + [3539] = {.lex_state = 316}, + [3540] = {.lex_state = 316}, + [3541] = {.lex_state = 316}, + [3542] = {.lex_state = 351}, + [3543] = {.lex_state = 39}, + [3544] = {.lex_state = 351}, + [3545] = {.lex_state = 316}, + [3546] = {.lex_state = 316}, + [3547] = {.lex_state = 316}, + [3548] = {.lex_state = 351}, + [3549] = {.lex_state = 316}, + [3550] = {.lex_state = 316}, + [3551] = {.lex_state = 316}, + [3552] = {.lex_state = 351}, + [3553] = {.lex_state = 316}, + [3554] = {.lex_state = 351}, + [3555] = {.lex_state = 316}, + [3556] = {.lex_state = 351}, + [3557] = {.lex_state = 316}, + [3558] = {.lex_state = 39}, + [3559] = {.lex_state = 316}, + [3560] = {.lex_state = 316}, + [3561] = {.lex_state = 316}, + [3562] = {.lex_state = 316}, + [3563] = {.lex_state = 316}, + [3564] = {.lex_state = 316}, + [3565] = {.lex_state = 39}, + [3566] = {.lex_state = 39}, + [3567] = {.lex_state = 316}, + [3568] = {.lex_state = 39}, + [3569] = {.lex_state = 47}, + [3570] = {.lex_state = 316}, + [3571] = {.lex_state = 39}, + [3572] = {.lex_state = 316}, + [3573] = {.lex_state = 22}, + [3574] = {.lex_state = 351}, + [3575] = {.lex_state = 22}, + [3576] = {.lex_state = 39}, + [3577] = {.lex_state = 316}, + [3578] = {.lex_state = 316}, + [3579] = {.lex_state = 316}, + [3580] = {.lex_state = 316}, + [3581] = {.lex_state = 316}, + [3582] = {.lex_state = 351}, + [3583] = {.lex_state = 351}, + [3584] = {.lex_state = 351}, + [3585] = {.lex_state = 316}, + [3586] = {.lex_state = 316}, + [3587] = {.lex_state = 351}, + [3588] = {.lex_state = 316}, + [3589] = {.lex_state = 316}, + [3590] = {.lex_state = 316}, + [3591] = {.lex_state = 316}, + [3592] = {.lex_state = 316}, + [3593] = {.lex_state = 316}, + [3594] = {.lex_state = 22}, + [3595] = {.lex_state = 351}, + [3596] = {.lex_state = 316}, + [3597] = {.lex_state = 316}, + [3598] = {.lex_state = 316}, + [3599] = {.lex_state = 351}, + [3600] = {.lex_state = 351}, + [3601] = {.lex_state = 39}, + [3602] = {.lex_state = 316}, + [3603] = {.lex_state = 316}, + [3604] = {.lex_state = 39}, + [3605] = {.lex_state = 351}, + [3606] = {.lex_state = 39}, + [3607] = {.lex_state = 316}, + [3608] = {.lex_state = 351}, + [3609] = {.lex_state = 316}, + [3610] = {.lex_state = 351}, + [3611] = {.lex_state = 316}, + [3612] = {.lex_state = 351}, + [3613] = {.lex_state = 39}, + [3614] = {.lex_state = 351}, + [3615] = {.lex_state = 316}, + [3616] = {.lex_state = 39}, + [3617] = {.lex_state = 351}, + [3618] = {.lex_state = 351}, + [3619] = {.lex_state = 351}, + [3620] = {.lex_state = 316}, + [3621] = {.lex_state = 316}, + [3622] = {.lex_state = 351}, + [3623] = {.lex_state = 316}, + [3624] = {.lex_state = 39}, + [3625] = {.lex_state = 39}, + [3626] = {.lex_state = 39}, + [3627] = {.lex_state = 39}, + [3628] = {.lex_state = 39}, + [3629] = {.lex_state = 39}, + [3630] = {.lex_state = 39}, + [3631] = {.lex_state = 351}, + [3632] = {.lex_state = 39}, + [3633] = {.lex_state = 351}, + [3634] = {.lex_state = 39}, + [3635] = {.lex_state = 39}, + [3636] = {.lex_state = 351}, + [3637] = {.lex_state = 39}, + [3638] = {.lex_state = 39}, + [3639] = {.lex_state = 39}, + [3640] = {.lex_state = 39}, + [3641] = {.lex_state = 39}, + [3642] = {.lex_state = 39}, + [3643] = {.lex_state = 39}, + [3644] = {.lex_state = 39}, + [3645] = {.lex_state = 39}, + [3646] = {.lex_state = 316}, + [3647] = {.lex_state = 39}, + [3648] = {.lex_state = 39}, + [3649] = {.lex_state = 316}, + [3650] = {.lex_state = 316}, + [3651] = {.lex_state = 316}, + [3652] = {.lex_state = 39}, + [3653] = {.lex_state = 351}, + [3654] = {.lex_state = 39}, + [3655] = {.lex_state = 39}, + [3656] = {.lex_state = 39}, + [3657] = {.lex_state = 351}, + [3658] = {.lex_state = 39}, + [3659] = {.lex_state = 39}, + [3660] = {.lex_state = 316}, + [3661] = {.lex_state = 316}, + [3662] = {.lex_state = 316}, + [3663] = {.lex_state = 316}, + [3664] = {.lex_state = 316}, + [3665] = {.lex_state = 316}, + [3666] = {.lex_state = 316}, + [3667] = {.lex_state = 316}, + [3668] = {.lex_state = 316}, + [3669] = {.lex_state = 39}, + [3670] = {.lex_state = 316}, + [3671] = {.lex_state = 316}, + [3672] = {.lex_state = 316}, + [3673] = {.lex_state = 316}, + [3674] = {.lex_state = 316}, + [3675] = {.lex_state = 316}, + [3676] = {.lex_state = 39}, + [3677] = {.lex_state = 316}, + [3678] = {.lex_state = 39}, + [3679] = {.lex_state = 316}, + [3680] = {.lex_state = 39}, + [3681] = {.lex_state = 39}, + [3682] = {.lex_state = 351}, + [3683] = {.lex_state = 39}, + [3684] = {.lex_state = 39}, + [3685] = {.lex_state = 39}, + [3686] = {.lex_state = 316}, + [3687] = {.lex_state = 351}, + [3688] = {.lex_state = 39}, + [3689] = {.lex_state = 39}, + [3690] = {.lex_state = 351}, + [3691] = {.lex_state = 351}, + [3692] = {.lex_state = 39}, + [3693] = {.lex_state = 316}, + [3694] = {.lex_state = 39}, + [3695] = {.lex_state = 316}, + [3696] = {.lex_state = 316}, + [3697] = {.lex_state = 316}, + [3698] = {.lex_state = 39}, + [3699] = {.lex_state = 316}, + [3700] = {.lex_state = 316}, + [3701] = {.lex_state = 316}, + [3702] = {.lex_state = 39}, + [3703] = {.lex_state = 39}, + [3704] = {.lex_state = 39}, + [3705] = {.lex_state = 39}, + [3706] = {.lex_state = 316}, + [3707] = {.lex_state = 316}, + [3708] = {.lex_state = 316}, + [3709] = {.lex_state = 316}, + [3710] = {.lex_state = 39}, + [3711] = {.lex_state = 39}, + [3712] = {.lex_state = 316}, + [3713] = {.lex_state = 316}, + [3714] = {.lex_state = 39}, + [3715] = {.lex_state = 351}, + [3716] = {.lex_state = 39}, + [3717] = {.lex_state = 39}, + [3718] = {.lex_state = 39}, + [3719] = {.lex_state = 316}, + [3720] = {.lex_state = 39}, + [3721] = {.lex_state = 351}, + [3722] = {.lex_state = 39}, + [3723] = {.lex_state = 316}, + [3724] = {.lex_state = 39}, + [3725] = {.lex_state = 351}, + [3726] = {.lex_state = 316}, + [3727] = {.lex_state = 39}, + [3728] = {.lex_state = 351}, + [3729] = {.lex_state = 351}, + [3730] = {.lex_state = 351}, + [3731] = {.lex_state = 39}, + [3732] = {.lex_state = 316}, + [3733] = {.lex_state = 351}, + [3734] = {.lex_state = 316}, + [3735] = {.lex_state = 39}, + [3736] = {.lex_state = 316}, + [3737] = {.lex_state = 316}, + [3738] = {.lex_state = 316}, + [3739] = {.lex_state = 351}, + [3740] = {.lex_state = 351}, + [3741] = {.lex_state = 316}, + [3742] = {.lex_state = 351}, + [3743] = {.lex_state = 351}, + [3744] = {.lex_state = 39}, + [3745] = {.lex_state = 39}, + [3746] = {.lex_state = 351}, + [3747] = {.lex_state = 316}, + [3748] = {.lex_state = 47}, + [3749] = {.lex_state = 351}, + [3750] = {.lex_state = 39}, + [3751] = {.lex_state = 39}, + [3752] = {.lex_state = 39}, + [3753] = {.lex_state = 316}, + [3754] = {.lex_state = 351}, + [3755] = {.lex_state = 351}, + [3756] = {.lex_state = 316}, + [3757] = {.lex_state = 316}, + [3758] = {.lex_state = 351}, + [3759] = {.lex_state = 351}, + [3760] = {.lex_state = 351}, + [3761] = {.lex_state = 351}, + [3762] = {.lex_state = 39}, + [3763] = {.lex_state = 39}, + [3764] = {.lex_state = 39}, + [3765] = {.lex_state = 351}, + [3766] = {.lex_state = 351}, + [3767] = {.lex_state = 351}, + [3768] = {.lex_state = 351}, + [3769] = {.lex_state = 351}, + [3770] = {.lex_state = 39}, + [3771] = {.lex_state = 316}, + [3772] = {.lex_state = 351}, + [3773] = {.lex_state = 39}, + [3774] = {.lex_state = 351}, + [3775] = {.lex_state = 316}, + [3776] = {.lex_state = 316}, + [3777] = {.lex_state = 316}, + [3778] = {.lex_state = 46}, + [3779] = {.lex_state = 46}, + [3780] = {.lex_state = 46}, + [3781] = {.lex_state = 46}, + [3782] = {.lex_state = 316}, + [3783] = {.lex_state = 46}, + [3784] = {.lex_state = 46}, + [3785] = {.lex_state = 316}, + [3786] = {.lex_state = 351}, + [3787] = {.lex_state = 316}, + [3788] = {.lex_state = 316}, + [3789] = {.lex_state = 316}, + [3790] = {.lex_state = 316}, + [3791] = {.lex_state = 46}, + [3792] = {.lex_state = 46}, + [3793] = {.lex_state = 33}, + [3794] = {.lex_state = 46}, + [3795] = {.lex_state = 46}, + [3796] = {.lex_state = 46}, + [3797] = {.lex_state = 46}, + [3798] = {.lex_state = 46}, + [3799] = {.lex_state = 46}, + [3800] = {.lex_state = 316}, + [3801] = {.lex_state = 46}, + [3802] = {.lex_state = 46}, + [3803] = {.lex_state = 316}, + [3804] = {.lex_state = 5}, + [3805] = {.lex_state = 46}, + [3806] = {.lex_state = 46}, + [3807] = {.lex_state = 316}, + [3808] = {.lex_state = 351}, + [3809] = {.lex_state = 316}, + [3810] = {.lex_state = 316}, + [3811] = {.lex_state = 46}, + [3812] = {.lex_state = 53}, + [3813] = {.lex_state = 46}, + [3814] = {.lex_state = 46}, + [3815] = {.lex_state = 53}, + [3816] = {.lex_state = 351}, + [3817] = {.lex_state = 53}, + [3818] = {.lex_state = 46}, + [3819] = {.lex_state = 316}, + [3820] = {.lex_state = 46}, + [3821] = {.lex_state = 316}, + [3822] = {.lex_state = 316}, + [3823] = {.lex_state = 46}, + [3824] = {.lex_state = 46}, + [3825] = {.lex_state = 46}, + [3826] = {.lex_state = 351}, + [3827] = {.lex_state = 316}, + [3828] = {.lex_state = 316}, + [3829] = {.lex_state = 316}, + [3830] = {.lex_state = 316}, + [3831] = {.lex_state = 351}, + [3832] = {.lex_state = 46}, + [3833] = {.lex_state = 316}, + [3834] = {.lex_state = 46}, + [3835] = {.lex_state = 316}, + [3836] = {.lex_state = 46}, + [3837] = {.lex_state = 46}, + [3838] = {.lex_state = 46}, + [3839] = {.lex_state = 46}, + [3840] = {.lex_state = 316}, + [3841] = {.lex_state = 316}, + [3842] = {.lex_state = 316}, + [3843] = {.lex_state = 316}, + [3844] = {.lex_state = 46}, + [3845] = {.lex_state = 46}, + [3846] = {.lex_state = 46}, + [3847] = {.lex_state = 316}, + [3848] = {.lex_state = 316}, + [3849] = {.lex_state = 5}, + [3850] = {.lex_state = 5}, + [3851] = {.lex_state = 46}, + [3852] = {.lex_state = 316}, + [3853] = {.lex_state = 316}, + [3854] = {.lex_state = 5}, + [3855] = {.lex_state = 316}, + [3856] = {.lex_state = 351}, + [3857] = {.lex_state = 39}, + [3858] = {.lex_state = 46}, + [3859] = {.lex_state = 316}, + [3860] = {.lex_state = 46}, + [3861] = {.lex_state = 316}, + [3862] = {.lex_state = 351}, + [3863] = {.lex_state = 351}, + [3864] = {.lex_state = 351}, + [3865] = {.lex_state = 351}, + [3866] = {.lex_state = 351}, + [3867] = {.lex_state = 351}, + [3868] = {.lex_state = 351}, + [3869] = {.lex_state = 351}, + [3870] = {.lex_state = 46}, + [3871] = {.lex_state = 351}, + [3872] = {.lex_state = 351}, + [3873] = {.lex_state = 351}, + [3874] = {.lex_state = 351}, + [3875] = {.lex_state = 351}, + [3876] = {.lex_state = 351}, + [3877] = {.lex_state = 351}, + [3878] = {.lex_state = 351}, + [3879] = {.lex_state = 351}, + [3880] = {.lex_state = 351}, + [3881] = {.lex_state = 351}, + [3882] = {.lex_state = 9}, + [3883] = {.lex_state = 351}, + [3884] = {.lex_state = 351}, + [3885] = {.lex_state = 351}, + [3886] = {.lex_state = 351}, + [3887] = {.lex_state = 351}, + [3888] = {.lex_state = 351}, + [3889] = {.lex_state = 351}, + [3890] = {.lex_state = 351}, + [3891] = {.lex_state = 351}, + [3892] = {.lex_state = 351}, + [3893] = {.lex_state = 351}, + [3894] = {.lex_state = 351}, + [3895] = {.lex_state = 351}, + [3896] = {.lex_state = 351}, + [3897] = {.lex_state = 351}, + [3898] = {.lex_state = 351}, + [3899] = {.lex_state = 351}, + [3900] = {.lex_state = 49}, + [3901] = {.lex_state = 351}, + [3902] = {.lex_state = 351}, + [3903] = {.lex_state = 351}, + [3904] = {.lex_state = 351}, + [3905] = {.lex_state = 351}, + [3906] = {.lex_state = 351}, + [3907] = {.lex_state = 351}, + [3908] = {.lex_state = 351}, + [3909] = {.lex_state = 351}, + [3910] = {.lex_state = 351}, + [3911] = {.lex_state = 351}, + [3912] = {.lex_state = 351}, + [3913] = {.lex_state = 351}, + [3914] = {.lex_state = 10}, + [3915] = {.lex_state = 351}, + [3916] = {.lex_state = 31}, + [3917] = {.lex_state = 351}, + [3918] = {.lex_state = 351}, + [3919] = {.lex_state = 31}, + [3920] = {.lex_state = 52}, + [3921] = {.lex_state = 351}, + [3922] = {.lex_state = 20}, + [3923] = {.lex_state = 351}, + [3924] = {.lex_state = 351}, + [3925] = {.lex_state = 351}, + [3926] = {.lex_state = 351}, + [3927] = {.lex_state = 351}, + [3928] = {.lex_state = 351}, + [3929] = {.lex_state = 351}, + [3930] = {.lex_state = 351}, + [3931] = {.lex_state = 31}, + [3932] = {.lex_state = 20}, + [3933] = {.lex_state = 20}, + [3934] = {.lex_state = 351}, + [3935] = {.lex_state = 351}, + [3936] = {.lex_state = 351}, + [3937] = {.lex_state = 351}, + [3938] = {.lex_state = 351}, + [3939] = {.lex_state = 351}, + [3940] = {.lex_state = 351}, + [3941] = {.lex_state = 351}, + [3942] = {.lex_state = 351}, + [3943] = {.lex_state = 31}, + [3944] = {.lex_state = 351}, + [3945] = {.lex_state = 351}, + [3946] = {.lex_state = 10}, + [3947] = {.lex_state = 25}, + [3948] = {.lex_state = 351}, + [3949] = {.lex_state = 351}, + [3950] = {.lex_state = 351}, + [3951] = {.lex_state = 351}, + [3952] = {.lex_state = 1879}, + [3953] = {.lex_state = 351}, + [3954] = {.lex_state = 351}, + [3955] = {.lex_state = 351}, + [3956] = {.lex_state = 351}, + [3957] = {.lex_state = 351}, + [3958] = {.lex_state = 351}, + [3959] = {.lex_state = 351}, + [3960] = {.lex_state = 351}, + [3961] = {.lex_state = 351}, + [3962] = {.lex_state = 351}, + [3963] = {.lex_state = 351}, + [3964] = {.lex_state = 351}, + [3965] = {.lex_state = 351}, + [3966] = {.lex_state = 351}, + [3967] = {.lex_state = 5}, + [3968] = {.lex_state = 44}, + [3969] = {.lex_state = 351}, + [3970] = {.lex_state = 351}, + [3971] = {.lex_state = 351}, + [3972] = {.lex_state = 351}, + [3973] = {.lex_state = 10}, + [3974] = {.lex_state = 351}, + [3975] = {.lex_state = 351}, + [3976] = {.lex_state = 351}, + [3977] = {.lex_state = 351}, + [3978] = {.lex_state = 351}, + [3979] = {.lex_state = 10}, + [3980] = {.lex_state = 351}, + [3981] = {.lex_state = 351}, + [3982] = {.lex_state = 351}, + [3983] = {.lex_state = 5}, + [3984] = {.lex_state = 10}, + [3985] = {.lex_state = 5}, + [3986] = {.lex_state = 351}, + [3987] = {.lex_state = 351}, + [3988] = {.lex_state = 351}, + [3989] = {.lex_state = 10}, + [3990] = {.lex_state = 351}, + [3991] = {.lex_state = 351}, + [3992] = {.lex_state = 351}, + [3993] = {.lex_state = 351}, + [3994] = {.lex_state = 10}, + [3995] = {.lex_state = 351}, + [3996] = {.lex_state = 31}, + [3997] = {.lex_state = 31}, + [3998] = {.lex_state = 351}, + [3999] = {.lex_state = 10}, + [4000] = {.lex_state = 351}, + [4001] = {.lex_state = 351}, + [4002] = {.lex_state = 351}, + [4003] = {.lex_state = 351}, + [4004] = {.lex_state = 351}, + [4005] = {.lex_state = 351}, + [4006] = {.lex_state = 34}, + [4007] = {.lex_state = 351}, + [4008] = {.lex_state = 351}, + [4009] = {.lex_state = 10}, + [4010] = {.lex_state = 351}, + [4011] = {.lex_state = 351}, + [4012] = {.lex_state = 44}, + [4013] = {.lex_state = 10}, + [4014] = {.lex_state = 10}, + [4015] = {.lex_state = 25}, + [4016] = {.lex_state = 351}, + [4017] = {.lex_state = 351}, + [4018] = {.lex_state = 351}, + [4019] = {.lex_state = 10}, + [4020] = {.lex_state = 351}, + [4021] = {.lex_state = 351}, + [4022] = {.lex_state = 351}, + [4023] = {.lex_state = 351}, + [4024] = {.lex_state = 10}, + [4025] = {.lex_state = 351}, + [4026] = {.lex_state = 34}, + [4027] = {.lex_state = 351}, + [4028] = {.lex_state = 351}, + [4029] = {.lex_state = 10}, + [4030] = {.lex_state = 351}, + [4031] = {.lex_state = 351}, + [4032] = {.lex_state = 351}, + [4033] = {.lex_state = 351}, + [4034] = {.lex_state = 10}, + [4035] = {.lex_state = 351}, + [4036] = {.lex_state = 44}, + [4037] = {.lex_state = 351}, + [4038] = {.lex_state = 351}, + [4039] = {.lex_state = 10}, + [4040] = {.lex_state = 5}, + [4041] = {.lex_state = 351}, + [4042] = {.lex_state = 351}, + [4043] = {.lex_state = 351}, + [4044] = {.lex_state = 10}, + [4045] = {.lex_state = 351}, + [4046] = {.lex_state = 351}, + [4047] = {.lex_state = 351}, + [4048] = {.lex_state = 10}, + [4049] = {.lex_state = 351}, + [4050] = {.lex_state = 10}, + [4051] = {.lex_state = 31}, + [4052] = {.lex_state = 351}, + [4053] = {.lex_state = 351}, + [4054] = {.lex_state = 351}, + [4055] = {.lex_state = 20}, + [4056] = {.lex_state = 351}, + [4057] = {.lex_state = 5}, + [4058] = {.lex_state = 351}, + [4059] = {.lex_state = 351}, + [4060] = {.lex_state = 351}, + [4061] = {.lex_state = 351}, + [4062] = {.lex_state = 351}, + [4063] = {.lex_state = 351}, + [4064] = {.lex_state = 34}, + [4065] = {.lex_state = 44}, + [4066] = {.lex_state = 10}, + [4067] = {.lex_state = 351}, + [4068] = {.lex_state = 44}, + [4069] = {.lex_state = 5}, + [4070] = {.lex_state = 351}, + [4071] = {.lex_state = 20}, + [4072] = {.lex_state = 351}, + [4073] = {.lex_state = 20}, + [4074] = {.lex_state = 351}, + [4075] = {.lex_state = 351}, + [4076] = {.lex_state = 351}, + [4077] = {.lex_state = 351}, + [4078] = {.lex_state = 2}, + [4079] = {.lex_state = 10}, + [4080] = {.lex_state = 10}, + [4081] = {.lex_state = 10}, + [4082] = {.lex_state = 10}, + [4083] = {.lex_state = 10}, + [4084] = {.lex_state = 10}, + [4085] = {.lex_state = 10}, + [4086] = {.lex_state = 10}, + [4087] = {.lex_state = 10}, + [4088] = {.lex_state = 10}, + [4089] = {.lex_state = 10}, + [4090] = {.lex_state = 10}, + [4091] = {.lex_state = 10}, + [4092] = {.lex_state = 10}, + [4093] = {.lex_state = 351}, + [4094] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -46238,7 +46695,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -46337,82 +46793,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(3783), - [sym_shebang] = STATE(29), - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3112), - [sym__declaration_last] = STATE(3551), - [sym_decl_alias_last] = STATE(3624), - [sym_stmt_let_last] = STATE(3626), - [sym_stmt_mut_last] = STATE(3626), - [sym_stmt_const_last] = STATE(3626), - [sym__statement_last] = STATE(3630), - [sym_pipeline_last] = STATE(3626), - [sym__block_body] = STATE(3773), - [sym_decl_def] = STATE(1017), - [sym_decl_export] = STATE(1017), - [sym_decl_extern] = STATE(1017), - [sym_decl_module] = STATE(1017), - [sym_decl_use] = STATE(1017), - [sym__control] = STATE(1002), - [sym__ctrl_statement] = STATE(1001), - [sym__ctrl_expression] = STATE(803), - [sym_ctrl_for] = STATE(995), - [sym_ctrl_loop] = STATE(995), - [sym_ctrl_error] = STATE(995), - [sym_ctrl_while] = STATE(995), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_stmt_source] = STATE(993), - [sym_stmt_register] = STATE(993), - [sym__stmt_hide] = STATE(993), - [sym_hide_mod] = STATE(992), - [sym_hide_env] = STATE(992), - [sym__stmt_overlay] = STATE(993), - [sym_overlay_list] = STATE(985), - [sym_overlay_hide] = STATE(985), - [sym_overlay_new] = STATE(985), - [sym_overlay_use] = STATE(985), - [sym_assignment] = STATE(993), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(1936), - [sym__var] = STATE(1836), + [sym_nu_script] = STATE(4003), + [sym_shebang] = STATE(31), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3341), + [sym__declaration_last] = STATE(3840), + [sym_decl_alias_last] = STATE(3841), + [sym_stmt_let_last] = STATE(3842), + [sym_stmt_mut_last] = STATE(3842), + [sym_stmt_const_last] = STATE(3842), + [sym__statement_last] = STATE(3847), + [sym_pipeline_last] = STATE(3842), + [sym__block_body] = STATE(3986), + [sym_decl_def] = STATE(1023), + [sym_decl_export] = STATE(1023), + [sym_decl_extern] = STATE(1023), + [sym_decl_module] = STATE(1023), + [sym_decl_use] = STATE(1023), + [sym__control] = STATE(1025), + [sym__ctrl_statement] = STATE(1027), + [sym__ctrl_expression] = STATE(871), + [sym_ctrl_for] = STATE(1028), + [sym_ctrl_loop] = STATE(1028), + [sym_ctrl_error] = STATE(1028), + [sym_ctrl_while] = STATE(1028), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_stmt_source] = STATE(1071), + [sym_stmt_register] = STATE(1071), + [sym__stmt_hide] = STATE(1071), + [sym_hide_mod] = STATE(1078), + [sym_hide_env] = STATE(1078), + [sym__stmt_overlay] = STATE(1071), + [sym_overlay_list] = STATE(1100), + [sym_overlay_hide] = STATE(1100), + [sym_overlay_new] = STATE(1100), + [sym_overlay_use] = STATE(1100), + [sym_assignment] = STATE(1071), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2049), + [sym__var] = STATE(1950), [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(502), - [aux_sym__block_body_repeat2] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(565), + [aux_sym__block_body_repeat2] = STATE(107), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -46550,9 +47006,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(107), + [anon_sym_DOT_DOT] = ACTIONS(107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(107), [sym_val_nothing] = ACTIONS(103), [anon_sym_true] = ACTIONS(103), [anon_sym_false] = ACTIONS(103), @@ -46564,94 +47020,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(103), [anon_sym_DASHinf] = ACTIONS(103), [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), + [anon_sym_ns] = ACTIONS(109), + [anon_sym_s] = ACTIONS(109), + [anon_sym_us] = ACTIONS(109), + [anon_sym_ms] = ACTIONS(109), + [anon_sym_sec] = ACTIONS(109), + [anon_sym_min] = ACTIONS(109), + [anon_sym_hr] = ACTIONS(109), + [anon_sym_day] = ACTIONS(109), + [anon_sym_wk] = ACTIONS(109), + [anon_sym_b] = ACTIONS(111), + [anon_sym_B] = ACTIONS(111), + [anon_sym_kb] = ACTIONS(111), + [anon_sym_kB] = ACTIONS(111), + [anon_sym_Kb] = ACTIONS(111), + [anon_sym_KB] = ACTIONS(111), + [anon_sym_mb] = ACTIONS(111), + [anon_sym_mB] = ACTIONS(111), + [anon_sym_Mb] = ACTIONS(111), + [anon_sym_MB] = ACTIONS(111), + [anon_sym_gb] = ACTIONS(111), + [anon_sym_gB] = ACTIONS(111), + [anon_sym_Gb] = ACTIONS(111), + [anon_sym_GB] = ACTIONS(111), + [anon_sym_tb] = ACTIONS(111), + [anon_sym_tB] = ACTIONS(111), + [anon_sym_Tb] = ACTIONS(111), + [anon_sym_TB] = ACTIONS(111), + [anon_sym_pb] = ACTIONS(111), + [anon_sym_pB] = ACTIONS(111), + [anon_sym_Pb] = ACTIONS(111), + [anon_sym_PB] = ACTIONS(111), + [anon_sym_eb] = ACTIONS(111), + [anon_sym_eB] = ACTIONS(111), + [anon_sym_Eb] = ACTIONS(111), + [anon_sym_EB] = ACTIONS(111), + [anon_sym_zb] = ACTIONS(111), + [anon_sym_zB] = ACTIONS(111), + [anon_sym_Zb] = ACTIONS(111), + [anon_sym_ZB] = ACTIONS(111), + [anon_sym_kib] = ACTIONS(111), + [anon_sym_kiB] = ACTIONS(111), + [anon_sym_kIB] = ACTIONS(111), + [anon_sym_kIb] = ACTIONS(111), + [anon_sym_Kib] = ACTIONS(111), + [anon_sym_KIb] = ACTIONS(111), + [anon_sym_KIB] = ACTIONS(111), + [anon_sym_mib] = ACTIONS(111), + [anon_sym_miB] = ACTIONS(111), + [anon_sym_mIB] = ACTIONS(111), + [anon_sym_mIb] = ACTIONS(111), + [anon_sym_Mib] = ACTIONS(111), + [anon_sym_MIb] = ACTIONS(111), + [anon_sym_MIB] = ACTIONS(111), + [anon_sym_gib] = ACTIONS(111), + [anon_sym_giB] = ACTIONS(111), + [anon_sym_gIB] = ACTIONS(111), + [anon_sym_gIb] = ACTIONS(111), + [anon_sym_Gib] = ACTIONS(111), + [anon_sym_GIb] = ACTIONS(111), + [anon_sym_GIB] = ACTIONS(111), + [anon_sym_tib] = ACTIONS(111), + [anon_sym_tiB] = ACTIONS(111), + [anon_sym_tIB] = ACTIONS(111), + [anon_sym_tIb] = ACTIONS(111), + [anon_sym_Tib] = ACTIONS(111), + [anon_sym_TIb] = ACTIONS(111), + [anon_sym_TIB] = ACTIONS(111), + [anon_sym_pib] = ACTIONS(111), + [anon_sym_piB] = ACTIONS(111), + [anon_sym_pIB] = ACTIONS(111), + [anon_sym_pIb] = ACTIONS(111), + [anon_sym_Pib] = ACTIONS(111), + [anon_sym_PIb] = ACTIONS(111), + [anon_sym_PIB] = ACTIONS(111), + [anon_sym_eib] = ACTIONS(111), + [anon_sym_eiB] = ACTIONS(111), + [anon_sym_eIB] = ACTIONS(111), + [anon_sym_eIb] = ACTIONS(111), + [anon_sym_Eib] = ACTIONS(111), + [anon_sym_EIb] = ACTIONS(111), + [anon_sym_EIB] = ACTIONS(111), + [anon_sym_zib] = ACTIONS(111), + [anon_sym_ziB] = ACTIONS(111), + [anon_sym_zIB] = ACTIONS(111), + [anon_sym_zIb] = ACTIONS(111), + [anon_sym_Zib] = ACTIONS(111), + [anon_sym_ZIb] = ACTIONS(111), + [anon_sym_ZIB] = ACTIONS(111), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -46667,90 +47123,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym_comment] = STATE(3), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(111), - [anon_sym_DOT_DOT] = ACTIONS(111), - [anon_sym_DOT_DOT_EQ] = ACTIONS(111), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), [anon_sym_ns] = ACTIONS(113), [anon_sym_s] = ACTIONS(113), [anon_sym_us] = ACTIONS(113), @@ -46760,100 +47216,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hr] = ACTIONS(113), [anon_sym_day] = ACTIONS(113), [anon_sym_wk] = ACTIONS(113), - [anon_sym_b] = ACTIONS(115), - [anon_sym_B] = ACTIONS(115), - [anon_sym_kb] = ACTIONS(115), - [anon_sym_kB] = ACTIONS(115), - [anon_sym_Kb] = ACTIONS(115), - [anon_sym_KB] = ACTIONS(115), - [anon_sym_mb] = ACTIONS(115), - [anon_sym_mB] = ACTIONS(115), - [anon_sym_Mb] = ACTIONS(115), - [anon_sym_MB] = ACTIONS(115), - [anon_sym_gb] = ACTIONS(115), - [anon_sym_gB] = ACTIONS(115), - [anon_sym_Gb] = ACTIONS(115), - [anon_sym_GB] = ACTIONS(115), - [anon_sym_tb] = ACTIONS(115), - [anon_sym_tB] = ACTIONS(115), - [anon_sym_Tb] = ACTIONS(115), - [anon_sym_TB] = ACTIONS(115), - [anon_sym_pb] = ACTIONS(115), - [anon_sym_pB] = ACTIONS(115), - [anon_sym_Pb] = ACTIONS(115), - [anon_sym_PB] = ACTIONS(115), - [anon_sym_eb] = ACTIONS(115), - [anon_sym_eB] = ACTIONS(115), - [anon_sym_Eb] = ACTIONS(115), - [anon_sym_EB] = ACTIONS(115), - [anon_sym_zb] = ACTIONS(115), - [anon_sym_zB] = ACTIONS(115), - [anon_sym_Zb] = ACTIONS(115), - [anon_sym_ZB] = ACTIONS(115), - [anon_sym_kib] = ACTIONS(115), - [anon_sym_kiB] = ACTIONS(115), - [anon_sym_kIB] = ACTIONS(115), - [anon_sym_kIb] = ACTIONS(115), - [anon_sym_Kib] = ACTIONS(115), - [anon_sym_KIb] = ACTIONS(115), - [anon_sym_KIB] = ACTIONS(115), - [anon_sym_mib] = ACTIONS(115), - [anon_sym_miB] = ACTIONS(115), - [anon_sym_mIB] = ACTIONS(115), - [anon_sym_mIb] = ACTIONS(115), - [anon_sym_Mib] = ACTIONS(115), - [anon_sym_MIb] = ACTIONS(115), - [anon_sym_MIB] = ACTIONS(115), - [anon_sym_gib] = ACTIONS(115), - [anon_sym_giB] = ACTIONS(115), - [anon_sym_gIB] = ACTIONS(115), - [anon_sym_gIb] = ACTIONS(115), - [anon_sym_Gib] = ACTIONS(115), - [anon_sym_GIb] = ACTIONS(115), - [anon_sym_GIB] = ACTIONS(115), - [anon_sym_tib] = ACTIONS(115), - [anon_sym_tiB] = ACTIONS(115), - [anon_sym_tIB] = ACTIONS(115), - [anon_sym_tIb] = ACTIONS(115), - [anon_sym_Tib] = ACTIONS(115), - [anon_sym_TIb] = ACTIONS(115), - [anon_sym_TIB] = ACTIONS(115), - [anon_sym_pib] = ACTIONS(115), - [anon_sym_piB] = ACTIONS(115), - [anon_sym_pIB] = ACTIONS(115), - [anon_sym_pIb] = ACTIONS(115), - [anon_sym_Pib] = ACTIONS(115), - [anon_sym_PIb] = ACTIONS(115), - [anon_sym_PIB] = ACTIONS(115), - [anon_sym_eib] = ACTIONS(115), - [anon_sym_eiB] = ACTIONS(115), - [anon_sym_eIB] = ACTIONS(115), - [anon_sym_eIb] = ACTIONS(115), - [anon_sym_Eib] = ACTIONS(115), - [anon_sym_EIb] = ACTIONS(115), - [anon_sym_EIB] = ACTIONS(115), - [anon_sym_zib] = ACTIONS(115), - [anon_sym_ziB] = ACTIONS(115), - [anon_sym_zIB] = ACTIONS(115), - [anon_sym_zIb] = ACTIONS(115), - [anon_sym_Zib] = ACTIONS(115), - [anon_sym_ZIb] = ACTIONS(115), - [anon_sym_ZIB] = ACTIONS(115), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, [4] = { [sym_comment] = STATE(4), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [5] = { + [sym_comment] = STATE(5), [ts_builtin_sym_end] = ACTIONS(105), [anon_sym_export] = ACTIONS(103), [anon_sym_alias] = ACTIONS(103), @@ -46923,9 +47565,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(117), [sym_val_nothing] = ACTIONS(103), [anon_sym_true] = ACTIONS(103), [anon_sym_false] = ACTIONS(103), @@ -46937,192 +47579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(103), [anon_sym_DASHinf] = ACTIONS(103), [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [5] = { - [sym_comment] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(117), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(117), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), [anon_sym_ns] = ACTIONS(119), [anon_sym_s] = ACTIONS(119), [anon_sym_us] = ACTIONS(119), @@ -47211,17 +47667,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(121), [anon_sym_ZIb] = ACTIONS(121), [anon_sym_ZIB] = ACTIONS(121), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, [6] = { @@ -47295,9 +47751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(123), [sym_val_nothing] = ACTIONS(103), [anon_sym_true] = ACTIONS(103), [anon_sym_false] = ACTIONS(103), @@ -47309,191 +47765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(103), [anon_sym_DASHinf] = ACTIONS(103), [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [7] = { - [sym_comment] = STATE(7), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(123), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(123), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), [anon_sym_ns] = ACTIONS(125), [anon_sym_s] = ACTIONS(125), [anon_sym_us] = ACTIONS(125), @@ -47582,102 +47853,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(127), [anon_sym_ZIb] = ACTIONS(127), [anon_sym_ZIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [7] = { + [sym_comment] = STATE(7), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, [8] = { [sym_comment] = STATE(8), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), [anon_sym_DOT_DOT_LT] = ACTIONS(129), [anon_sym_DOT_DOT] = ACTIONS(129), [anon_sym_DOT_DOT_EQ] = ACTIONS(129), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(131), [anon_sym_s] = ACTIONS(131), [anon_sym_us] = ACTIONS(131), @@ -47766,190 +48222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(133), [anon_sym_ZIb] = ACTIONS(133), [anon_sym_ZIB] = ACTIONS(133), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [9] = { - [sym_comment] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -47962,6 +48234,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, + [9] = { + [sym_comment] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, [10] = { [sym_comment] = STATE(10), [anon_sym_SEMI] = ACTIONS(103), @@ -48002,9 +48458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(135), [sym_val_nothing] = ACTIONS(103), [anon_sym_true] = ACTIONS(103), [anon_sym_false] = ACTIONS(103), @@ -48016,169 +48472,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(103), [anon_sym_DASHinf] = ACTIONS(103), [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [11] = { - [sym_comment] = STATE(11), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(135), - [anon_sym_DOT_DOT] = ACTIONS(135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(135), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), [anon_sym_ns] = ACTIONS(137), [anon_sym_s] = ACTIONS(137), [anon_sym_us] = ACTIONS(137), @@ -48267,80 +48560,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(139), [anon_sym_ZIb] = ACTIONS(139), [anon_sym_ZIB] = ACTIONS(139), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [11] = { + [sym_comment] = STATE(11), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, [12] = { [sym_comment] = STATE(12), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), [anon_sym_DOT_DOT_LT] = ACTIONS(141), [anon_sym_DOT_DOT] = ACTIONS(141), [anon_sym_DOT_DOT_EQ] = ACTIONS(141), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(143), [anon_sym_s] = ACTIONS(143), [anon_sym_us] = ACTIONS(143), @@ -48429,168 +48885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(145), [anon_sym_ZIb] = ACTIONS(145), [anon_sym_ZIB] = ACTIONS(145), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [13] = { - [sym_comment] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -48612,146 +48906,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, + [13] = { + [sym_comment] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, [14] = { [sym_comment] = STATE(14), - [sym_cmd_identifier] = ACTIONS(103), [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACK] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(105), [anon_sym_DOLLAR] = ACTIONS(103), [anon_sym_GT] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(103), [anon_sym_in] = ACTIONS(103), [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym__] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(103), [anon_sym_STAR_STAR] = ACTIONS(105), [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(105), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(105), + [anon_sym_bit_DASHshr] = ACTIONS(105), [anon_sym_EQ_EQ] = ACTIONS(105), [anon_sym_BANG_EQ] = ACTIONS(105), [anon_sym_LT2] = ACTIONS(103), [anon_sym_LT_EQ] = ACTIONS(105), [anon_sym_GT_EQ] = ACTIONS(105), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(105), + [anon_sym_starts_DASHwith] = ACTIONS(105), + [anon_sym_ends_DASHwith] = ACTIONS(105), [anon_sym_EQ_TILDE] = ACTIONS(105), [anon_sym_BANG_TILDE] = ACTIONS(105), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(105), + [anon_sym_bit_DASHxor] = ACTIONS(105), + [anon_sym_bit_DASHor] = ACTIONS(105), + [anon_sym_and] = ACTIONS(105), + [anon_sym_xor] = ACTIONS(105), + [anon_sym_or] = ACTIONS(105), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(147), + [anon_sym_DOT_DOT] = ACTIONS(149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(147), + [sym_val_nothing] = ACTIONS(105), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), [aux_sym_val_number_token1] = ACTIONS(103), [aux_sym_val_number_token2] = ACTIONS(103), [aux_sym_val_number_token3] = ACTIONS(105), [aux_sym_val_number_token4] = ACTIONS(105), [aux_sym_val_number_token5] = ACTIONS(105), - [anon_sym_inf] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(105), [anon_sym_DASHinf] = ACTIONS(105), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(105), + [anon_sym_ns] = ACTIONS(151), + [anon_sym_s] = ACTIONS(151), + [anon_sym_us] = ACTIONS(151), + [anon_sym_ms] = ACTIONS(151), + [anon_sym_sec] = ACTIONS(151), + [anon_sym_min] = ACTIONS(151), + [anon_sym_hr] = ACTIONS(151), + [anon_sym_day] = ACTIONS(151), + [anon_sym_wk] = ACTIONS(151), + [anon_sym_b] = ACTIONS(153), + [anon_sym_B] = ACTIONS(155), + [anon_sym_kb] = ACTIONS(155), + [anon_sym_kB] = ACTIONS(155), + [anon_sym_Kb] = ACTIONS(155), + [anon_sym_KB] = ACTIONS(155), + [anon_sym_mb] = ACTIONS(155), + [anon_sym_mB] = ACTIONS(155), + [anon_sym_Mb] = ACTIONS(155), + [anon_sym_MB] = ACTIONS(155), + [anon_sym_gb] = ACTIONS(155), + [anon_sym_gB] = ACTIONS(155), + [anon_sym_Gb] = ACTIONS(155), + [anon_sym_GB] = ACTIONS(155), + [anon_sym_tb] = ACTIONS(155), + [anon_sym_tB] = ACTIONS(155), + [anon_sym_Tb] = ACTIONS(155), + [anon_sym_TB] = ACTIONS(155), + [anon_sym_pb] = ACTIONS(155), + [anon_sym_pB] = ACTIONS(155), + [anon_sym_Pb] = ACTIONS(155), + [anon_sym_PB] = ACTIONS(155), + [anon_sym_eb] = ACTIONS(155), + [anon_sym_eB] = ACTIONS(155), + [anon_sym_Eb] = ACTIONS(155), + [anon_sym_EB] = ACTIONS(155), + [anon_sym_zb] = ACTIONS(155), + [anon_sym_zB] = ACTIONS(155), + [anon_sym_Zb] = ACTIONS(155), + [anon_sym_ZB] = ACTIONS(155), + [anon_sym_kib] = ACTIONS(155), + [anon_sym_kiB] = ACTIONS(155), + [anon_sym_kIB] = ACTIONS(155), + [anon_sym_kIb] = ACTIONS(155), + [anon_sym_Kib] = ACTIONS(155), + [anon_sym_KIb] = ACTIONS(155), + [anon_sym_KIB] = ACTIONS(155), + [anon_sym_mib] = ACTIONS(155), + [anon_sym_miB] = ACTIONS(155), + [anon_sym_mIB] = ACTIONS(155), + [anon_sym_mIb] = ACTIONS(155), + [anon_sym_Mib] = ACTIONS(155), + [anon_sym_MIb] = ACTIONS(155), + [anon_sym_MIB] = ACTIONS(155), + [anon_sym_gib] = ACTIONS(155), + [anon_sym_giB] = ACTIONS(155), + [anon_sym_gIB] = ACTIONS(155), + [anon_sym_gIb] = ACTIONS(155), + [anon_sym_Gib] = ACTIONS(155), + [anon_sym_GIb] = ACTIONS(155), + [anon_sym_GIB] = ACTIONS(155), + [anon_sym_tib] = ACTIONS(155), + [anon_sym_tiB] = ACTIONS(155), + [anon_sym_tIB] = ACTIONS(155), + [anon_sym_tIb] = ACTIONS(155), + [anon_sym_Tib] = ACTIONS(155), + [anon_sym_TIb] = ACTIONS(155), + [anon_sym_TIB] = ACTIONS(155), + [anon_sym_pib] = ACTIONS(155), + [anon_sym_piB] = ACTIONS(155), + [anon_sym_pIB] = ACTIONS(155), + [anon_sym_pIb] = ACTIONS(155), + [anon_sym_Pib] = ACTIONS(155), + [anon_sym_PIb] = ACTIONS(155), + [anon_sym_PIB] = ACTIONS(155), + [anon_sym_eib] = ACTIONS(155), + [anon_sym_eiB] = ACTIONS(155), + [anon_sym_eIB] = ACTIONS(155), + [anon_sym_eIb] = ACTIONS(155), + [anon_sym_Eib] = ACTIONS(155), + [anon_sym_EIb] = ACTIONS(155), + [anon_sym_EIB] = ACTIONS(155), + [anon_sym_zib] = ACTIONS(155), + [anon_sym_ziB] = ACTIONS(155), + [anon_sym_zIB] = ACTIONS(155), + [anon_sym_zIb] = ACTIONS(155), + [anon_sym_Zib] = ACTIONS(155), + [anon_sym_ZIb] = ACTIONS(155), + [anon_sym_ZIB] = ACTIONS(155), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -48761,362 +49217,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [15] = { [sym_comment] = STATE(15), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym__] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(149), - [anon_sym_DOT_DOT] = ACTIONS(151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(149), - [sym_val_nothing] = ACTIONS(109), - [anon_sym_true] = ACTIONS(109), - [anon_sym_false] = ACTIONS(109), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(109), - [aux_sym_val_number_token4] = ACTIONS(109), - [aux_sym_val_number_token5] = ACTIONS(109), - [anon_sym_inf] = ACTIONS(109), - [anon_sym_DASHinf] = ACTIONS(109), - [anon_sym_NaN] = ACTIONS(109), - [anon_sym_ns] = ACTIONS(153), - [anon_sym_s] = ACTIONS(153), - [anon_sym_us] = ACTIONS(153), - [anon_sym_ms] = ACTIONS(153), - [anon_sym_sec] = ACTIONS(153), - [anon_sym_min] = ACTIONS(153), - [anon_sym_hr] = ACTIONS(153), - [anon_sym_day] = ACTIONS(153), - [anon_sym_wk] = ACTIONS(153), - [anon_sym_b] = ACTIONS(155), - [anon_sym_B] = ACTIONS(157), - [anon_sym_kb] = ACTIONS(157), - [anon_sym_kB] = ACTIONS(157), - [anon_sym_Kb] = ACTIONS(157), - [anon_sym_KB] = ACTIONS(157), - [anon_sym_mb] = ACTIONS(157), - [anon_sym_mB] = ACTIONS(157), - [anon_sym_Mb] = ACTIONS(157), - [anon_sym_MB] = ACTIONS(157), - [anon_sym_gb] = ACTIONS(157), - [anon_sym_gB] = ACTIONS(157), - [anon_sym_Gb] = ACTIONS(157), - [anon_sym_GB] = ACTIONS(157), - [anon_sym_tb] = ACTIONS(157), - [anon_sym_tB] = ACTIONS(157), - [anon_sym_Tb] = ACTIONS(157), - [anon_sym_TB] = ACTIONS(157), - [anon_sym_pb] = ACTIONS(157), - [anon_sym_pB] = ACTIONS(157), - [anon_sym_Pb] = ACTIONS(157), - [anon_sym_PB] = ACTIONS(157), - [anon_sym_eb] = ACTIONS(157), - [anon_sym_eB] = ACTIONS(157), - [anon_sym_Eb] = ACTIONS(157), - [anon_sym_EB] = ACTIONS(157), - [anon_sym_zb] = ACTIONS(157), - [anon_sym_zB] = ACTIONS(157), - [anon_sym_Zb] = ACTIONS(157), - [anon_sym_ZB] = ACTIONS(157), - [anon_sym_kib] = ACTIONS(157), - [anon_sym_kiB] = ACTIONS(157), - [anon_sym_kIB] = ACTIONS(157), - [anon_sym_kIb] = ACTIONS(157), - [anon_sym_Kib] = ACTIONS(157), - [anon_sym_KIb] = ACTIONS(157), - [anon_sym_KIB] = ACTIONS(157), - [anon_sym_mib] = ACTIONS(157), - [anon_sym_miB] = ACTIONS(157), - [anon_sym_mIB] = ACTIONS(157), - [anon_sym_mIb] = ACTIONS(157), - [anon_sym_Mib] = ACTIONS(157), - [anon_sym_MIb] = ACTIONS(157), - [anon_sym_MIB] = ACTIONS(157), - [anon_sym_gib] = ACTIONS(157), - [anon_sym_giB] = ACTIONS(157), - [anon_sym_gIB] = ACTIONS(157), - [anon_sym_gIb] = ACTIONS(157), - [anon_sym_Gib] = ACTIONS(157), - [anon_sym_GIb] = ACTIONS(157), - [anon_sym_GIB] = ACTIONS(157), - [anon_sym_tib] = ACTIONS(157), - [anon_sym_tiB] = ACTIONS(157), - [anon_sym_tIB] = ACTIONS(157), - [anon_sym_tIb] = ACTIONS(157), - [anon_sym_Tib] = ACTIONS(157), - [anon_sym_TIb] = ACTIONS(157), - [anon_sym_TIB] = ACTIONS(157), - [anon_sym_pib] = ACTIONS(157), - [anon_sym_piB] = ACTIONS(157), - [anon_sym_pIB] = ACTIONS(157), - [anon_sym_pIb] = ACTIONS(157), - [anon_sym_Pib] = ACTIONS(157), - [anon_sym_PIb] = ACTIONS(157), - [anon_sym_PIB] = ACTIONS(157), - [anon_sym_eib] = ACTIONS(157), - [anon_sym_eiB] = ACTIONS(157), - [anon_sym_eIB] = ACTIONS(157), - [anon_sym_eIb] = ACTIONS(157), - [anon_sym_Eib] = ACTIONS(157), - [anon_sym_EIb] = ACTIONS(157), - [anon_sym_EIB] = ACTIONS(157), - [anon_sym_zib] = ACTIONS(157), - [anon_sym_ziB] = ACTIONS(157), - [anon_sym_zIB] = ACTIONS(157), - [anon_sym_zIb] = ACTIONS(157), - [anon_sym_Zib] = ACTIONS(157), - [anon_sym_ZIb] = ACTIONS(157), - [anon_sym_ZIB] = ACTIONS(157), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(147), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(115), + [aux_sym_val_number_token4] = ACTIONS(115), + [aux_sym_val_number_token5] = ACTIONS(115), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(115), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(157), }, [16] = { [sym_comment] = STATE(16), + [sym_cmd_identifier] = ACTIONS(103), [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACK] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(105), [anon_sym_DOLLAR] = ACTIONS(103), [anon_sym_GT] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(103), [anon_sym_in] = ACTIONS(103), [anon_sym_LBRACE] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(105), - [anon_sym__] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(103), [anon_sym_STAR_STAR] = ACTIONS(105), [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(105), + [anon_sym_mod] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(105), - [anon_sym_bit_DASHshr] = ACTIONS(105), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), [anon_sym_EQ_EQ] = ACTIONS(105), [anon_sym_BANG_EQ] = ACTIONS(105), [anon_sym_LT2] = ACTIONS(103), [anon_sym_LT_EQ] = ACTIONS(105), [anon_sym_GT_EQ] = ACTIONS(105), - [anon_sym_not_DASHin] = ACTIONS(105), - [anon_sym_starts_DASHwith] = ACTIONS(105), - [anon_sym_ends_DASHwith] = ACTIONS(105), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), [anon_sym_EQ_TILDE] = ACTIONS(105), [anon_sym_BANG_TILDE] = ACTIONS(105), - [anon_sym_bit_DASHand] = ACTIONS(105), - [anon_sym_bit_DASHxor] = ACTIONS(105), - [anon_sym_bit_DASHor] = ACTIONS(105), - [anon_sym_and] = ACTIONS(105), - [anon_sym_xor] = ACTIONS(105), - [anon_sym_or] = ACTIONS(105), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [sym_val_nothing] = ACTIONS(105), - [anon_sym_true] = ACTIONS(105), - [anon_sym_false] = ACTIONS(105), + [anon_sym_DOT_DOT_LT] = ACTIONS(159), + [anon_sym_DOT_DOT] = ACTIONS(161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(159), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [aux_sym_val_number_token1] = ACTIONS(103), [aux_sym_val_number_token2] = ACTIONS(103), [aux_sym_val_number_token3] = ACTIONS(105), [aux_sym_val_number_token4] = ACTIONS(105), [aux_sym_val_number_token5] = ACTIONS(105), - [anon_sym_inf] = ACTIONS(105), + [anon_sym_inf] = ACTIONS(103), [anon_sym_DASHinf] = ACTIONS(105), - [anon_sym_NaN] = ACTIONS(105), - [anon_sym_ns] = ACTIONS(105), - [anon_sym_s] = ACTIONS(105), - [anon_sym_us] = ACTIONS(105), - [anon_sym_ms] = ACTIONS(105), - [anon_sym_sec] = ACTIONS(105), - [anon_sym_min] = ACTIONS(105), - [anon_sym_hr] = ACTIONS(105), - [anon_sym_day] = ACTIONS(105), - [anon_sym_wk] = ACTIONS(105), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(105), - [anon_sym_kb] = ACTIONS(105), - [anon_sym_kB] = ACTIONS(105), - [anon_sym_Kb] = ACTIONS(105), - [anon_sym_KB] = ACTIONS(105), - [anon_sym_mb] = ACTIONS(105), - [anon_sym_mB] = ACTIONS(105), - [anon_sym_Mb] = ACTIONS(105), - [anon_sym_MB] = ACTIONS(105), - [anon_sym_gb] = ACTIONS(105), - [anon_sym_gB] = ACTIONS(105), - [anon_sym_Gb] = ACTIONS(105), - [anon_sym_GB] = ACTIONS(105), - [anon_sym_tb] = ACTIONS(105), - [anon_sym_tB] = ACTIONS(105), - [anon_sym_Tb] = ACTIONS(105), - [anon_sym_TB] = ACTIONS(105), - [anon_sym_pb] = ACTIONS(105), - [anon_sym_pB] = ACTIONS(105), - [anon_sym_Pb] = ACTIONS(105), - [anon_sym_PB] = ACTIONS(105), - [anon_sym_eb] = ACTIONS(105), - [anon_sym_eB] = ACTIONS(105), - [anon_sym_Eb] = ACTIONS(105), - [anon_sym_EB] = ACTIONS(105), - [anon_sym_zb] = ACTIONS(105), - [anon_sym_zB] = ACTIONS(105), - [anon_sym_Zb] = ACTIONS(105), - [anon_sym_ZB] = ACTIONS(105), - [anon_sym_kib] = ACTIONS(105), - [anon_sym_kiB] = ACTIONS(105), - [anon_sym_kIB] = ACTIONS(105), - [anon_sym_kIb] = ACTIONS(105), - [anon_sym_Kib] = ACTIONS(105), - [anon_sym_KIb] = ACTIONS(105), - [anon_sym_KIB] = ACTIONS(105), - [anon_sym_mib] = ACTIONS(105), - [anon_sym_miB] = ACTIONS(105), - [anon_sym_mIB] = ACTIONS(105), - [anon_sym_mIb] = ACTIONS(105), - [anon_sym_Mib] = ACTIONS(105), - [anon_sym_MIb] = ACTIONS(105), - [anon_sym_MIB] = ACTIONS(105), - [anon_sym_gib] = ACTIONS(105), - [anon_sym_giB] = ACTIONS(105), - [anon_sym_gIB] = ACTIONS(105), - [anon_sym_gIb] = ACTIONS(105), - [anon_sym_Gib] = ACTIONS(105), - [anon_sym_GIb] = ACTIONS(105), - [anon_sym_GIB] = ACTIONS(105), - [anon_sym_tib] = ACTIONS(105), - [anon_sym_tiB] = ACTIONS(105), - [anon_sym_tIB] = ACTIONS(105), - [anon_sym_tIb] = ACTIONS(105), - [anon_sym_Tib] = ACTIONS(105), - [anon_sym_TIb] = ACTIONS(105), - [anon_sym_TIB] = ACTIONS(105), - [anon_sym_pib] = ACTIONS(105), - [anon_sym_piB] = ACTIONS(105), - [anon_sym_pIB] = ACTIONS(105), - [anon_sym_pIb] = ACTIONS(105), - [anon_sym_Pib] = ACTIONS(105), - [anon_sym_PIb] = ACTIONS(105), - [anon_sym_PIB] = ACTIONS(105), - [anon_sym_eib] = ACTIONS(105), - [anon_sym_eiB] = ACTIONS(105), - [anon_sym_eIB] = ACTIONS(105), - [anon_sym_eIb] = ACTIONS(105), - [anon_sym_Eib] = ACTIONS(105), - [anon_sym_EIb] = ACTIONS(105), - [anon_sym_EIB] = ACTIONS(105), - [anon_sym_zib] = ACTIONS(105), - [anon_sym_ziB] = ACTIONS(105), - [anon_sym_zIB] = ACTIONS(105), - [anon_sym_zIb] = ACTIONS(105), - [anon_sym_Zib] = ACTIONS(105), - [anon_sym_ZIb] = ACTIONS(105), - [anon_sym_ZIB] = ACTIONS(105), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(147), - }, - [17] = { - [sym_comment] = STATE(17), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(159), - [anon_sym_DOT_DOT] = ACTIONS(161), - [anon_sym_DOT_DOT_EQ] = ACTIONS(159), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(109), - [aux_sym_val_number_token4] = ACTIONS(109), - [aux_sym_val_number_token5] = ACTIONS(109), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(109), - [anon_sym_NaN] = ACTIONS(107), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(163), [anon_sym_s] = ACTIONS(163), [anon_sym_us] = ACTIONS(163), @@ -49205,95 +49510,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(165), [anon_sym_ZIb] = ACTIONS(165), [anon_sym_ZIB] = ACTIONS(165), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(157), + }, + [17] = { + [sym_comment] = STATE(17), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym__] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [sym_val_nothing] = ACTIONS(115), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(115), + [aux_sym_val_number_token4] = ACTIONS(115), + [aux_sym_val_number_token5] = ACTIONS(115), + [anon_sym_inf] = ACTIONS(115), + [anon_sym_DASHinf] = ACTIONS(115), + [anon_sym_NaN] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_zb] = ACTIONS(115), + [anon_sym_zB] = ACTIONS(115), + [anon_sym_Zb] = ACTIONS(115), + [anon_sym_ZB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_zib] = ACTIONS(115), + [anon_sym_ziB] = ACTIONS(115), + [anon_sym_zIB] = ACTIONS(115), + [anon_sym_zIb] = ACTIONS(115), + [anon_sym_Zib] = ACTIONS(115), + [anon_sym_ZIb] = ACTIONS(115), + [anon_sym_ZIB] = ACTIONS(115), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(157), }, [18] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3700), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(75), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3918), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(58), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2406), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_record_entry] = STATE(3086), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2704), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_record_entry] = STATE(3388), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), - [aux_sym_val_record_repeat1] = STATE(2852), + [aux_sym_val_record_repeat1] = STATE(3068), [sym_identifier] = ACTIONS(167), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -49358,86 +49814,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [19] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3700), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(54), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3918), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(65), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2406), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_record_entry] = STATE(3086), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2704), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_record_entry] = STATE(3388), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), - [aux_sym_val_record_repeat1] = STATE(2866), + [aux_sym_val_record_repeat1] = STATE(3065), [sym_identifier] = ACTIONS(167), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -49502,83 +49958,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [20] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3821), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(39), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4031), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(103), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -49643,83 +50099,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [21] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3707), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(103), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3962), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(43), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -49784,83 +50240,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [22] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3807), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(82), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4072), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(55), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -49925,83 +50381,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [23] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3776), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(64), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4053), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(76), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50066,83 +50522,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [24] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3776), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(101), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3951), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(88), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50172,7 +50628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -50207,83 +50663,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [25] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3807), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(79), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3953), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(61), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50313,7 +50769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -50348,83 +50804,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [26] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3768), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(49), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3953), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(96), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50454,7 +50910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -50489,83 +50945,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [27] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3850), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym_parameter_pipes] = STATE(72), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4031), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym_parameter_pipes] = STATE(102), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50595,7 +51051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -50630,82 +51086,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [28] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3798), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4031), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -50734,7 +51190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -50769,221 +51225,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [29] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3112), - [sym__declaration_last] = STATE(3551), - [sym_decl_alias_last] = STATE(3624), - [sym_stmt_let_last] = STATE(3626), - [sym_stmt_mut_last] = STATE(3626), - [sym_stmt_const_last] = STATE(3626), - [sym__statement_last] = STATE(3630), - [sym_pipeline_last] = STATE(3626), - [sym__block_body] = STATE(3828), - [sym_decl_def] = STATE(1017), - [sym_decl_export] = STATE(1017), - [sym_decl_extern] = STATE(1017), - [sym_decl_module] = STATE(1017), - [sym_decl_use] = STATE(1017), - [sym__control] = STATE(1002), - [sym__ctrl_statement] = STATE(1001), - [sym__ctrl_expression] = STATE(803), - [sym_ctrl_for] = STATE(995), - [sym_ctrl_loop] = STATE(995), - [sym_ctrl_error] = STATE(995), - [sym_ctrl_while] = STATE(995), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_stmt_source] = STATE(993), - [sym_stmt_register] = STATE(993), - [sym__stmt_hide] = STATE(993), - [sym_hide_mod] = STATE(992), - [sym_hide_env] = STATE(992), - [sym__stmt_overlay] = STATE(993), - [sym_overlay_list] = STATE(985), - [sym_overlay_hide] = STATE(985), - [sym_overlay_new] = STATE(985), - [sym_overlay_use] = STATE(985), - [sym_assignment] = STATE(993), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(1936), - [sym__var] = STATE(1836), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(502), - [aux_sym__block_body_repeat2] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(283), - [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), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_def_DASHenv] = ACTIONS(21), - [anon_sym_export_DASHenv] = ACTIONS(23), - [anon_sym_extern] = ACTIONS(25), - [anon_sym_module] = ACTIONS(27), - [anon_sym_use] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_error] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_return] = ACTIONS(61), - [anon_sym_source] = ACTIONS(63), - [anon_sym_source_DASHenv] = ACTIONS(63), - [anon_sym_register] = ACTIONS(65), - [anon_sym_hide] = ACTIONS(67), - [anon_sym_hide_DASHenv] = ACTIONS(69), - [anon_sym_overlay] = ACTIONS(71), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), - }, - [30] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3776), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3928), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51012,7 +51329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -51047,82 +51364,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [31] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3763), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [30] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3953), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51151,7 +51468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -51186,82 +51503,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), + }, + [31] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3341), + [sym__declaration_last] = STATE(3840), + [sym_decl_alias_last] = STATE(3841), + [sym_stmt_let_last] = STATE(3842), + [sym_stmt_mut_last] = STATE(3842), + [sym_stmt_const_last] = STATE(3842), + [sym__statement_last] = STATE(3847), + [sym_pipeline_last] = STATE(3842), + [sym__block_body] = STATE(4016), + [sym_decl_def] = STATE(1023), + [sym_decl_export] = STATE(1023), + [sym_decl_extern] = STATE(1023), + [sym_decl_module] = STATE(1023), + [sym_decl_use] = STATE(1023), + [sym__control] = STATE(1025), + [sym__ctrl_statement] = STATE(1027), + [sym__ctrl_expression] = STATE(871), + [sym_ctrl_for] = STATE(1028), + [sym_ctrl_loop] = STATE(1028), + [sym_ctrl_error] = STATE(1028), + [sym_ctrl_while] = STATE(1028), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_stmt_source] = STATE(1071), + [sym_stmt_register] = STATE(1071), + [sym__stmt_hide] = STATE(1071), + [sym_hide_mod] = STATE(1078), + [sym_hide_env] = STATE(1078), + [sym__stmt_overlay] = STATE(1071), + [sym_overlay_list] = STATE(1100), + [sym_overlay_hide] = STATE(1100), + [sym_overlay_new] = STATE(1100), + [sym_overlay_use] = STATE(1100), + [sym_assignment] = STATE(1071), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2049), + [sym__var] = STATE(1950), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(565), + [aux_sym__block_body_repeat2] = STATE(107), + [ts_builtin_sym_end] = ACTIONS(283), + [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), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_def_DASHenv] = ACTIONS(21), + [anon_sym_export_DASHenv] = ACTIONS(23), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_use] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_error] = ACTIONS(37), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_source] = ACTIONS(63), + [anon_sym_source_DASHenv] = ACTIONS(63), + [anon_sym_register] = ACTIONS(65), + [anon_sym_hide] = ACTIONS(67), + [anon_sym_hide_DASHenv] = ACTIONS(69), + [anon_sym_overlay] = ACTIONS(71), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), }, [32] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3807), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3954), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51290,7 +51746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(285), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -51325,82 +51781,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [33] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3699), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4074), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51464,82 +51920,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [34] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3795), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3978), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51603,82 +52059,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [35] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3821), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4053), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51707,7 +52163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(275), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -51742,82 +52198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [36] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3707), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3951), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -51846,7 +52302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(215), [anon_sym_match] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_try] = ACTIONS(223), [anon_sym_return] = ACTIONS(225), [anon_sym_source] = ACTIONS(227), @@ -51881,90 +52337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [37] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3767), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3929), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(37), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -52018,83 +52474,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, [38] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3785), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4061), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -52157,82 +52613,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [39] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3843), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3915), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -52295,82 +52751,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [40] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3808), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3917), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -52433,83 +52889,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [41] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3796), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3921), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -52571,82 +53027,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [42] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3745), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3939), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_def] = ACTIONS(181), + [anon_sym_def_DASHenv] = ACTIONS(181), + [anon_sym_export_DASHenv] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_error] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_for] = ACTIONS(207), + [anon_sym_loop] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(215), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(223), + [anon_sym_return] = ACTIONS(225), + [anon_sym_source] = ACTIONS(227), + [anon_sym_source_DASHenv] = ACTIONS(227), + [anon_sym_register] = ACTIONS(229), + [anon_sym_hide] = ACTIONS(231), + [anon_sym_hide_DASHenv] = ACTIONS(233), + [anon_sym_overlay] = ACTIONS(235), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), + }, + [43] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3945), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -52709,82 +53303,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [43] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3744), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [44] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3950), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -52847,83 +53441,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [44] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3733), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [45] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3957), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(45), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -52985,82 +53579,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [45] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3757), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [46] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3975), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -53123,82 +53717,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [46] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3704), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [47] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3977), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(47), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -53261,221 +53855,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [47] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3701), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_def] = ACTIONS(181), - [anon_sym_def_DASHenv] = ACTIONS(181), - [anon_sym_export_DASHenv] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_use] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(197), - [anon_sym_error] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_loop] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(223), - [anon_sym_return] = ACTIONS(225), - [anon_sym_source] = ACTIONS(227), - [anon_sym_source_DASHenv] = ACTIONS(227), - [anon_sym_register] = ACTIONS(229), - [anon_sym_hide] = ACTIONS(231), - [anon_sym_hide_DASHenv] = ACTIONS(233), - [anon_sym_overlay] = ACTIONS(235), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3693), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4017), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -53537,82 +53993,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [49] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3705), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4047), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -53675,82 +54131,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [50] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3706), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4049), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -53813,83 +54269,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3711), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4075), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -53951,82 +54407,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [52] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3791), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4059), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -54089,220 +54545,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3714), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4067), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_def] = ACTIONS(181), - [anon_sym_def_DASHenv] = ACTIONS(181), - [anon_sym_export_DASHenv] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_use] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(197), - [anon_sym_error] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_loop] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(223), - [anon_sym_return] = ACTIONS(225), - [anon_sym_source] = ACTIONS(227), - [anon_sym_source_DASHenv] = ACTIONS(227), - [anon_sym_register] = ACTIONS(229), - [anon_sym_hide] = ACTIONS(231), - [anon_sym_hide_DASHenv] = ACTIONS(233), - [anon_sym_overlay] = ACTIONS(235), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [54] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3715), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(54), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -54365,83 +54683,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [55] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3722), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [54] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4022), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -54503,220 +54821,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [56] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3723), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_def] = ACTIONS(181), - [anon_sym_def_DASHenv] = ACTIONS(181), - [anon_sym_export_DASHenv] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_use] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(197), - [anon_sym_error] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_loop] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(223), - [anon_sym_return] = ACTIONS(225), - [anon_sym_source] = ACTIONS(227), - [anon_sym_source_DASHenv] = ACTIONS(227), - [anon_sym_register] = ACTIONS(229), - [anon_sym_hide] = ACTIONS(231), - [anon_sym_hide_DASHenv] = ACTIONS(233), - [anon_sym_overlay] = ACTIONS(235), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [57] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3738), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [55] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4076), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -54779,82 +54959,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [58] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3792), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [56] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4077), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -54917,83 +55097,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [59] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3801), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [57] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4041), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -55055,82 +55235,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [60] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3818), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [58] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3964), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -55193,82 +55373,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [61] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3820), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [59] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3963), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(59), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -55331,83 +55511,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [62] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3825), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [60] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3960), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -55469,82 +55649,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [63] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3805), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [61] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3958), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(61), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -55607,82 +55787,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [64] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3694), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [62] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3956), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -55745,83 +55925,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [65] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3729), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [63] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3913), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -55883,90 +56063,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3709), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [64] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3930), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(64), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -56020,83 +56200,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [67] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3803), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [65] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3940), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -56159,83 +56339,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3771), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3924), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -56297,90 +56477,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [69] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3731), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3937), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -56434,91 +56614,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3839), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [68] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4021), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -56572,83 +56752,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [71] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3816), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [69] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4032), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(69), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -56711,82 +56891,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [72] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3703), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [70] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4046), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(72), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -56849,90 +57029,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [73] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3702), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4043), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -56986,91 +57166,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3697), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [72] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3936), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(72), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -57124,83 +57304,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [75] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3730), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [73] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3938), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(73), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -57263,90 +57443,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [76] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3739), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3965), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -57400,91 +57580,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3781), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [75] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3971), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(75), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -57538,91 +57718,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3734), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [76] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3972), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -57676,91 +57856,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [79] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3834), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4018), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -57814,83 +57994,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [80] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3817), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [78] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3925), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(78), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -57953,83 +58133,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3813), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3941), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -58091,82 +58271,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [82] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3737), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [80] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4023), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -58229,90 +58409,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3836), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [81] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4027), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -58366,91 +58546,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3752), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [82] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3944), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(82), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -58504,91 +58684,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [85] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3844), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4070), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -58642,84 +58822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3788), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3927), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -58781,82 +58961,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [87] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3806), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [85] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4060), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -58919,82 +59099,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [88] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3732), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4042), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_def] = ACTIONS(181), + [anon_sym_def_DASHenv] = ACTIONS(181), + [anon_sym_export_DASHenv] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_error] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_for] = ACTIONS(207), + [anon_sym_loop] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(215), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(223), + [anon_sym_return] = ACTIONS(225), + [anon_sym_source] = ACTIONS(227), + [anon_sym_source_DASHenv] = ACTIONS(227), + [anon_sym_register] = ACTIONS(229), + [anon_sym_hide] = ACTIONS(231), + [anon_sym_hide_DASHenv] = ACTIONS(233), + [anon_sym_overlay] = ACTIONS(235), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), + }, + [87] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4030), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -59057,82 +59375,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [89] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3775), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [88] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4028), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -59195,82 +59513,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), + }, + [89] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3948), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_def] = ACTIONS(181), + [anon_sym_def_DASHenv] = ACTIONS(181), + [anon_sym_export_DASHenv] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_error] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_for] = ACTIONS(207), + [anon_sym_loop] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(215), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(223), + [anon_sym_return] = ACTIONS(225), + [anon_sym_source] = ACTIONS(227), + [anon_sym_source_DASHenv] = ACTIONS(227), + [anon_sym_register] = ACTIONS(229), + [anon_sym_hide] = ACTIONS(231), + [anon_sym_hide_DASHenv] = ACTIONS(233), + [anon_sym_overlay] = ACTIONS(235), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, [90] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3800), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3959), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -59333,83 +59789,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3708), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4010), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -59471,82 +59927,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [92] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3830), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4005), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(92), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -59609,82 +60065,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [93] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3837), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3942), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -59747,83 +60203,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3790), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3991), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -59885,83 +60341,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3698), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3961), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -60023,82 +60479,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [96] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3842), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3966), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(96), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -60161,82 +60617,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [97] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3780), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3982), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(97), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -60299,90 +60755,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [98] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3750), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3980), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(98), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -60436,83 +60892,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, [99] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3845), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3934), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(509), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_def] = ACTIONS(181), + [anon_sym_def_DASHenv] = ACTIONS(181), + [anon_sym_export_DASHenv] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym_module] = ACTIONS(187), + [anon_sym_use] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_error] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_for] = ACTIONS(207), + [anon_sym_loop] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(215), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(223), + [anon_sym_return] = ACTIONS(225), + [anon_sym_source] = ACTIONS(227), + [anon_sym_source_DASHenv] = ACTIONS(227), + [anon_sym_register] = ACTIONS(229), + [anon_sym_hide] = ACTIONS(231), + [anon_sym_hide_DASHenv] = ACTIONS(233), + [anon_sym_overlay] = ACTIONS(235), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), + }, + [100] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3969), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(100), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -60575,83 +61169,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3777), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [101] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(4058), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), [anon_sym_export] = ACTIONS(291), [anon_sym_alias] = ACTIONS(293), [anon_sym_let] = ACTIONS(295), @@ -60713,82 +61307,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [101] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3772), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [102] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(4004), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(509), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(566), [aux_sym__block_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(169), [anon_sym_alias] = ACTIONS(171), @@ -60851,90 +61445,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3847), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [103] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3280), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym__block_body] = STATE(3976), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(103), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(105), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -60988,91 +61582,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [103] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3026), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym__block_body] = STATE(3829), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [104] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3417), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym__parenthesized_body] = STATE(3970), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(103), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(105), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(106), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -61126,91 +61720,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3128), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym__parenthesized_body] = STATE(3762), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [105] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3305), + [sym__declaration_last] = STATE(3713), + [sym_decl_alias_last] = STATE(3709), + [sym_stmt_let_last] = STATE(3708), + [sym_stmt_mut_last] = STATE(3708), + [sym_stmt_const_last] = STATE(3708), + [sym__statement_last] = STATE(3707), + [sym_pipeline_last] = STATE(3708), + [sym_decl_def] = STATE(997), + [sym_decl_export] = STATE(997), + [sym_decl_extern] = STATE(997), + [sym_decl_module] = STATE(997), + [sym_decl_use] = STATE(997), + [sym__control] = STATE(991), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_stmt_source] = STATE(976), + [sym_stmt_register] = STATE(976), + [sym__stmt_hide] = STATE(976), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(976), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(976), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(107), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(566), + [aux_sym__block_body_repeat2] = STATE(123), + [anon_sym_export] = ACTIONS(169), + [anon_sym_alias] = ACTIONS(171), + [anon_sym_let] = ACTIONS(173), + [anon_sym_let_DASHenv] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(175), + [anon_sym_const] = ACTIONS(177), + [sym_cmd_identifier] = ACTIONS(179), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -61264,90 +61857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [105] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3013), - [sym__declaration_last] = STATE(3353), - [sym_decl_alias_last] = STATE(3349), - [sym_stmt_let_last] = STATE(3344), - [sym_stmt_mut_last] = STATE(3344), - [sym_stmt_const_last] = STATE(3344), - [sym__statement_last] = STATE(3329), - [sym_pipeline_last] = STATE(3344), - [sym_decl_def] = STATE(864), - [sym_decl_export] = STATE(864), - [sym_decl_extern] = STATE(864), - [sym_decl_module] = STATE(864), - [sym_decl_use] = STATE(864), - [sym__control] = STATE(863), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_stmt_source] = STATE(841), - [sym_stmt_register] = STATE(841), - [sym__stmt_hide] = STATE(841), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(841), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(841), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), + [106] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym__block_body_statement_parenthesized_last] = STATE(3353), + [sym__declaration_parenthesized_last] = STATE(3787), + [sym_decl_alias_parenthesized_last] = STATE(3788), + [sym_stmt_let_parenthesized_last] = STATE(3785), + [sym_stmt_mut_parenthesized_last] = STATE(3785), + [sym_stmt_const_parenthesized_last] = STATE(3785), + [sym__statement_parenthesized_last] = STATE(3789), + [sym_pipeline_parenthesized_last] = STATE(3785), + [sym_decl_def] = STATE(1039), + [sym_decl_export] = STATE(1039), + [sym_decl_extern] = STATE(1039), + [sym_decl_module] = STATE(1039), + [sym_decl_use] = STATE(1039), + [sym__control] = STATE(1046), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_stmt_source] = STATE(1060), + [sym_stmt_register] = STATE(1060), + [sym__stmt_hide] = STATE(1060), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1060), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1060), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(509), - [aux_sym__block_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(169), - [anon_sym_alias] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_let_DASHenv] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(175), - [anon_sym_const] = ACTIONS(177), - [sym_cmd_identifier] = ACTIONS(179), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(106), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [aux_sym__parenthesized_body_repeat1] = STATE(126), + [anon_sym_export] = ACTIONS(291), + [anon_sym_alias] = ACTIONS(293), + [anon_sym_let] = ACTIONS(295), + [anon_sym_let_DASHenv] = ACTIONS(295), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [sym_cmd_identifier] = ACTIONS(301), [anon_sym_def] = ACTIONS(181), [anon_sym_def_DASHenv] = ACTIONS(181), [anon_sym_export_DASHenv] = ACTIONS(183), @@ -61401,83 +61994,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(259), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [106] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym__block_body_statement_last] = STATE(3267), - [sym__declaration_last] = STATE(3551), - [sym_decl_alias_last] = STATE(3624), - [sym_stmt_let_last] = STATE(3626), - [sym_stmt_mut_last] = STATE(3626), - [sym_stmt_const_last] = STATE(3626), - [sym__statement_last] = STATE(3630), - [sym_pipeline_last] = STATE(3626), - [sym_decl_def] = STATE(1017), - [sym_decl_export] = STATE(1017), - [sym_decl_extern] = STATE(1017), - [sym_decl_module] = STATE(1017), - [sym_decl_use] = STATE(1017), - [sym__control] = STATE(1002), - [sym__ctrl_statement] = STATE(1001), - [sym__ctrl_expression] = STATE(803), - [sym_ctrl_for] = STATE(995), - [sym_ctrl_loop] = STATE(995), - [sym_ctrl_error] = STATE(995), - [sym_ctrl_while] = STATE(995), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_stmt_source] = STATE(993), - [sym_stmt_register] = STATE(993), - [sym__stmt_hide] = STATE(993), - [sym_hide_mod] = STATE(992), - [sym_hide_env] = STATE(992), - [sym__stmt_overlay] = STATE(993), - [sym_overlay_list] = STATE(985), - [sym_overlay_hide] = STATE(985), - [sym_overlay_new] = STATE(985), - [sym_overlay_use] = STATE(985), - [sym_assignment] = STATE(993), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(1936), - [sym__var] = STATE(1836), + [107] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym__block_body_statement_last] = STATE(3339), + [sym__declaration_last] = STATE(3840), + [sym_decl_alias_last] = STATE(3841), + [sym_stmt_let_last] = STATE(3842), + [sym_stmt_mut_last] = STATE(3842), + [sym_stmt_const_last] = STATE(3842), + [sym__statement_last] = STATE(3847), + [sym_pipeline_last] = STATE(3842), + [sym_decl_def] = STATE(1023), + [sym_decl_export] = STATE(1023), + [sym_decl_extern] = STATE(1023), + [sym_decl_module] = STATE(1023), + [sym_decl_use] = STATE(1023), + [sym__control] = STATE(1025), + [sym__ctrl_statement] = STATE(1027), + [sym__ctrl_expression] = STATE(871), + [sym_ctrl_for] = STATE(1028), + [sym_ctrl_loop] = STATE(1028), + [sym_ctrl_error] = STATE(1028), + [sym_ctrl_while] = STATE(1028), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_stmt_source] = STATE(1071), + [sym_stmt_register] = STATE(1071), + [sym__stmt_hide] = STATE(1071), + [sym_hide_mod] = STATE(1078), + [sym_hide_env] = STATE(1078), + [sym__stmt_overlay] = STATE(1071), + [sym_overlay_list] = STATE(1100), + [sym_overlay_hide] = STATE(1100), + [sym_overlay_new] = STATE(1100), + [sym_overlay_use] = STATE(1100), + [sym_assignment] = STATE(1071), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2049), + [sym__var] = STATE(1950), [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(502), - [aux_sym__block_body_repeat2] = STATE(125), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(107), + [aux_sym_pipeline_repeat1] = STATE(565), + [aux_sym__block_body_repeat2] = STATE(123), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -61539,171 +62132,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), - }, - [107] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym__block_body_statement_parenthesized_last] = STATE(3208), - [sym__declaration_parenthesized_last] = STATE(3604), - [sym_decl_alias_parenthesized_last] = STATE(3614), - [sym_stmt_let_parenthesized_last] = STATE(3621), - [sym_stmt_mut_parenthesized_last] = STATE(3621), - [sym_stmt_const_parenthesized_last] = STATE(3621), - [sym__statement_parenthesized_last] = STATE(3623), - [sym_pipeline_parenthesized_last] = STATE(3621), - [sym_decl_def] = STATE(955), - [sym_decl_export] = STATE(955), - [sym_decl_extern] = STATE(955), - [sym_decl_module] = STATE(955), - [sym_decl_use] = STATE(955), - [sym__control] = STATE(981), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_stmt_source] = STATE(965), - [sym_stmt_register] = STATE(965), - [sym__stmt_hide] = STATE(965), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(965), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(965), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [aux_sym__parenthesized_body_repeat1] = STATE(121), - [anon_sym_export] = ACTIONS(291), - [anon_sym_alias] = ACTIONS(293), - [anon_sym_let] = ACTIONS(295), - [anon_sym_let_DASHenv] = ACTIONS(295), - [anon_sym_mut] = ACTIONS(297), - [anon_sym_const] = ACTIONS(299), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_def] = ACTIONS(181), - [anon_sym_def_DASHenv] = ACTIONS(181), - [anon_sym_export_DASHenv] = ACTIONS(183), - [anon_sym_extern] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_use] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(197), - [anon_sym_error] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_loop] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(223), - [anon_sym_return] = ACTIONS(225), - [anon_sym_source] = ACTIONS(227), - [anon_sym_source_DASHenv] = ACTIONS(227), - [anon_sym_register] = ACTIONS(229), - [anon_sym_hide] = ACTIONS(231), - [anon_sym_hide_DASHenv] = ACTIONS(233), - [anon_sym_overlay] = ACTIONS(235), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [108] = { [sym_comment] = STATE(108), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [109] = { + [sym_comment] = STATE(109), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_DOT_DOT_LT] = ACTIONS(305), [anon_sym_DOT_DOT] = ACTIONS(305), [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(307), [anon_sym_s] = ACTIONS(307), [anon_sym_us] = ACTIONS(307), @@ -61792,141 +62383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(309), [anon_sym_ZIb] = ACTIONS(309), [anon_sym_ZIB] = ACTIONS(309), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [109] = { - [sym_comment] = STATE(109), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -61950,29 +62406,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [110] = { [sym_comment] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [111] = { + [sym_comment] = STATE(111), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), [anon_sym_DOT_DOT_LT] = ACTIONS(311), [anon_sym_DOT_DOT] = ACTIONS(311), [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(313), [anon_sym_s] = ACTIONS(313), [anon_sym_us] = ACTIONS(313), @@ -62061,140 +62651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(315), [anon_sym_ZIb] = ACTIONS(315), [anon_sym_ZIB] = ACTIONS(315), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [111] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(103), [anon_sym_0x] = ACTIONS(103), @@ -62218,6 +62674,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [112] = { [sym_comment] = STATE(112), + [sym_identifier] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(157), + }, + [113] = { + [sym_cell_path] = STATE(2574), + [sym_path] = STATE(2225), + [sym_comment] = STATE(113), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_LF] = ACTIONS(319), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(323), + [anon_sym_in] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_QMARK2] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_mod] = ACTIONS(329), + [anon_sym_SLASH_SLASH] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_bit_DASHshl] = ACTIONS(335), + [anon_sym_bit_DASHshr] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(321), + [anon_sym_BANG_EQ] = ACTIONS(321), + [anon_sym_LT2] = ACTIONS(321), + [anon_sym_LT_EQ] = ACTIONS(321), + [anon_sym_GT_EQ] = ACTIONS(321), + [anon_sym_not_DASHin] = ACTIONS(325), + [anon_sym_starts_DASHwith] = ACTIONS(325), + [anon_sym_ends_DASHwith] = ACTIONS(325), + [anon_sym_EQ_TILDE] = ACTIONS(337), + [anon_sym_BANG_TILDE] = ACTIONS(337), + [anon_sym_bit_DASHand] = ACTIONS(339), + [anon_sym_bit_DASHxor] = ACTIONS(341), + [anon_sym_bit_DASHor] = ACTIONS(343), + [anon_sym_and] = ACTIONS(345), + [anon_sym_xor] = ACTIONS(347), + [anon_sym_or] = ACTIONS(349), + [anon_sym_DOT_DOT_LT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_ns] = ACTIONS(353), + [anon_sym_s] = ACTIONS(353), + [anon_sym_us] = ACTIONS(353), + [anon_sym_ms] = ACTIONS(353), + [anon_sym_sec] = ACTIONS(353), + [anon_sym_min] = ACTIONS(353), + [anon_sym_hr] = ACTIONS(353), + [anon_sym_day] = ACTIONS(353), + [anon_sym_wk] = ACTIONS(353), + [anon_sym_b] = ACTIONS(355), + [anon_sym_B] = ACTIONS(355), + [anon_sym_kb] = ACTIONS(355), + [anon_sym_kB] = ACTIONS(355), + [anon_sym_Kb] = ACTIONS(355), + [anon_sym_KB] = ACTIONS(355), + [anon_sym_mb] = ACTIONS(355), + [anon_sym_mB] = ACTIONS(355), + [anon_sym_Mb] = ACTIONS(355), + [anon_sym_MB] = ACTIONS(355), + [anon_sym_gb] = ACTIONS(355), + [anon_sym_gB] = ACTIONS(355), + [anon_sym_Gb] = ACTIONS(355), + [anon_sym_GB] = ACTIONS(355), + [anon_sym_tb] = ACTIONS(355), + [anon_sym_tB] = ACTIONS(355), + [anon_sym_Tb] = ACTIONS(355), + [anon_sym_TB] = ACTIONS(355), + [anon_sym_pb] = ACTIONS(355), + [anon_sym_pB] = ACTIONS(355), + [anon_sym_Pb] = ACTIONS(355), + [anon_sym_PB] = ACTIONS(355), + [anon_sym_eb] = ACTIONS(355), + [anon_sym_eB] = ACTIONS(355), + [anon_sym_Eb] = ACTIONS(355), + [anon_sym_EB] = ACTIONS(355), + [anon_sym_zb] = ACTIONS(355), + [anon_sym_zB] = ACTIONS(355), + [anon_sym_Zb] = ACTIONS(355), + [anon_sym_ZB] = ACTIONS(355), + [anon_sym_kib] = ACTIONS(355), + [anon_sym_kiB] = ACTIONS(355), + [anon_sym_kIB] = ACTIONS(355), + [anon_sym_kIb] = ACTIONS(355), + [anon_sym_Kib] = ACTIONS(355), + [anon_sym_KIb] = ACTIONS(355), + [anon_sym_KIB] = ACTIONS(355), + [anon_sym_mib] = ACTIONS(355), + [anon_sym_miB] = ACTIONS(355), + [anon_sym_mIB] = ACTIONS(355), + [anon_sym_mIb] = ACTIONS(355), + [anon_sym_Mib] = ACTIONS(355), + [anon_sym_MIb] = ACTIONS(355), + [anon_sym_MIB] = ACTIONS(355), + [anon_sym_gib] = ACTIONS(355), + [anon_sym_giB] = ACTIONS(355), + [anon_sym_gIB] = ACTIONS(355), + [anon_sym_gIb] = ACTIONS(355), + [anon_sym_Gib] = ACTIONS(355), + [anon_sym_GIb] = ACTIONS(355), + [anon_sym_GIB] = ACTIONS(355), + [anon_sym_tib] = ACTIONS(355), + [anon_sym_tiB] = ACTIONS(355), + [anon_sym_tIB] = ACTIONS(355), + [anon_sym_tIb] = ACTIONS(355), + [anon_sym_Tib] = ACTIONS(355), + [anon_sym_TIb] = ACTIONS(355), + [anon_sym_TIB] = ACTIONS(355), + [anon_sym_pib] = ACTIONS(355), + [anon_sym_piB] = ACTIONS(355), + [anon_sym_pIB] = ACTIONS(355), + [anon_sym_pIb] = ACTIONS(355), + [anon_sym_Pib] = ACTIONS(355), + [anon_sym_PIb] = ACTIONS(355), + [anon_sym_PIB] = ACTIONS(355), + [anon_sym_eib] = ACTIONS(355), + [anon_sym_eiB] = ACTIONS(355), + [anon_sym_eIB] = ACTIONS(355), + [anon_sym_eIb] = ACTIONS(355), + [anon_sym_Eib] = ACTIONS(355), + [anon_sym_EIb] = ACTIONS(355), + [anon_sym_EIB] = ACTIONS(355), + [anon_sym_zib] = ACTIONS(355), + [anon_sym_ziB] = ACTIONS(355), + [anon_sym_zIB] = ACTIONS(355), + [anon_sym_zIb] = ACTIONS(355), + [anon_sym_Zib] = ACTIONS(355), + [anon_sym_ZIb] = ACTIONS(355), + [anon_sym_ZIB] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(3), + }, + [114] = { + [sym_comment] = STATE(114), [sym_identifier] = ACTIONS(103), [anon_sym_COLON] = ACTIONS(105), [anon_sym_COMMA] = ACTIONS(105), @@ -62255,273 +62975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(147), - }, - [113] = { - [sym_comment] = STATE(113), - [sym_identifier] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_RBRACK] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(317), - [anon_sym_ns] = ACTIONS(321), - [anon_sym_s] = ACTIONS(321), - [anon_sym_us] = ACTIONS(321), - [anon_sym_ms] = ACTIONS(321), - [anon_sym_sec] = ACTIONS(321), - [anon_sym_min] = ACTIONS(321), - [anon_sym_hr] = ACTIONS(321), - [anon_sym_day] = ACTIONS(321), - [anon_sym_wk] = ACTIONS(321), - [anon_sym_b] = ACTIONS(323), - [anon_sym_B] = ACTIONS(323), - [anon_sym_kb] = ACTIONS(323), - [anon_sym_kB] = ACTIONS(323), - [anon_sym_Kb] = ACTIONS(323), - [anon_sym_KB] = ACTIONS(323), - [anon_sym_mb] = ACTIONS(323), - [anon_sym_mB] = ACTIONS(323), - [anon_sym_Mb] = ACTIONS(323), - [anon_sym_MB] = ACTIONS(323), - [anon_sym_gb] = ACTIONS(323), - [anon_sym_gB] = ACTIONS(323), - [anon_sym_Gb] = ACTIONS(323), - [anon_sym_GB] = ACTIONS(323), - [anon_sym_tb] = ACTIONS(323), - [anon_sym_tB] = ACTIONS(323), - [anon_sym_Tb] = ACTIONS(323), - [anon_sym_TB] = ACTIONS(323), - [anon_sym_pb] = ACTIONS(323), - [anon_sym_pB] = ACTIONS(323), - [anon_sym_Pb] = ACTIONS(323), - [anon_sym_PB] = ACTIONS(323), - [anon_sym_eb] = ACTIONS(323), - [anon_sym_eB] = ACTIONS(323), - [anon_sym_Eb] = ACTIONS(323), - [anon_sym_EB] = ACTIONS(323), - [anon_sym_zb] = ACTIONS(323), - [anon_sym_zB] = ACTIONS(323), - [anon_sym_Zb] = ACTIONS(323), - [anon_sym_ZB] = ACTIONS(323), - [anon_sym_kib] = ACTIONS(323), - [anon_sym_kiB] = ACTIONS(323), - [anon_sym_kIB] = ACTIONS(323), - [anon_sym_kIb] = ACTIONS(323), - [anon_sym_Kib] = ACTIONS(323), - [anon_sym_KIb] = ACTIONS(323), - [anon_sym_KIB] = ACTIONS(323), - [anon_sym_mib] = ACTIONS(323), - [anon_sym_miB] = ACTIONS(323), - [anon_sym_mIB] = ACTIONS(323), - [anon_sym_mIb] = ACTIONS(323), - [anon_sym_Mib] = ACTIONS(323), - [anon_sym_MIb] = ACTIONS(323), - [anon_sym_MIB] = ACTIONS(323), - [anon_sym_gib] = ACTIONS(323), - [anon_sym_giB] = ACTIONS(323), - [anon_sym_gIB] = ACTIONS(323), - [anon_sym_gIb] = ACTIONS(323), - [anon_sym_Gib] = ACTIONS(323), - [anon_sym_GIb] = ACTIONS(323), - [anon_sym_GIB] = ACTIONS(323), - [anon_sym_tib] = ACTIONS(323), - [anon_sym_tiB] = ACTIONS(323), - [anon_sym_tIB] = ACTIONS(323), - [anon_sym_tIb] = ACTIONS(323), - [anon_sym_Tib] = ACTIONS(323), - [anon_sym_TIb] = ACTIONS(323), - [anon_sym_TIB] = ACTIONS(323), - [anon_sym_pib] = ACTIONS(323), - [anon_sym_piB] = ACTIONS(323), - [anon_sym_pIB] = ACTIONS(323), - [anon_sym_pIb] = ACTIONS(323), - [anon_sym_Pib] = ACTIONS(323), - [anon_sym_PIb] = ACTIONS(323), - [anon_sym_PIB] = ACTIONS(323), - [anon_sym_eib] = ACTIONS(323), - [anon_sym_eiB] = ACTIONS(323), - [anon_sym_eIB] = ACTIONS(323), - [anon_sym_eIb] = ACTIONS(323), - [anon_sym_Eib] = ACTIONS(323), - [anon_sym_EIb] = ACTIONS(323), - [anon_sym_EIB] = ACTIONS(323), - [anon_sym_zib] = ACTIONS(323), - [anon_sym_ziB] = ACTIONS(323), - [anon_sym_zIB] = ACTIONS(323), - [anon_sym_zIb] = ACTIONS(323), - [anon_sym_Zib] = ACTIONS(323), - [anon_sym_ZIb] = ACTIONS(323), - [anon_sym_ZIB] = ACTIONS(323), - [anon_sym_POUND] = ACTIONS(147), - }, - [114] = { - [sym_cell_path] = STATE(2436), - [sym_path] = STATE(2114), - [sym_comment] = STATE(114), - [anon_sym_SEMI] = ACTIONS(325), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_RPAREN] = ACTIONS(325), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_in] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DOT] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_QMARK2] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(337), - [anon_sym_mod] = ACTIONS(337), - [anon_sym_SLASH_SLASH] = ACTIONS(337), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_bit_DASHshl] = ACTIONS(343), - [anon_sym_bit_DASHshr] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT2] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_not_DASHin] = ACTIONS(333), - [anon_sym_starts_DASHwith] = ACTIONS(333), - [anon_sym_ends_DASHwith] = ACTIONS(333), - [anon_sym_EQ_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(345), - [anon_sym_bit_DASHand] = ACTIONS(347), - [anon_sym_bit_DASHxor] = ACTIONS(349), - [anon_sym_bit_DASHor] = ACTIONS(351), - [anon_sym_and] = ACTIONS(353), - [anon_sym_xor] = ACTIONS(355), - [anon_sym_or] = ACTIONS(357), - [anon_sym_DOT_DOT_LT] = ACTIONS(359), + [anon_sym_DOT_DOT_LT] = ACTIONS(357), [anon_sym_DOT_DOT] = ACTIONS(359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(357), [anon_sym_ns] = ACTIONS(361), [anon_sym_s] = ACTIONS(361), [anon_sym_us] = ACTIONS(361), @@ -62610,16 +63066,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(363), [anon_sym_ZIb] = ACTIONS(363), [anon_sym_ZIB] = ACTIONS(363), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(157), }, [115] = { - [sym_cell_path] = STATE(2570), - [sym_path] = STATE(2188), + [sym_cell_path] = STATE(2820), + [sym_path] = STATE(2312), [sym_comment] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(327), - [anon_sym_SEMI] = ACTIONS(325), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(325), + [ts_builtin_sym_end] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_LF] = ACTIONS(319), + [anon_sym_PIPE] = ACTIONS(317), [anon_sym_GT] = ACTIONS(365), [anon_sym_DASH] = ACTIONS(367), [anon_sym_in] = ACTIONS(369), @@ -62745,17 +63201,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [116] = { [sym_comment] = STATE(116), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [117] = { + [sym_comment] = STATE(117), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_LF] = ACTIONS(105), [anon_sym_RPAREN] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(103), [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(103), [anon_sym_in] = ACTIONS(103), [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(103), - [anon_sym_QMARK2] = ACTIONS(103), [anon_sym_STAR_STAR] = ACTIONS(103), [anon_sym_PLUS_PLUS] = ACTIONS(103), [anon_sym_SLASH] = ACTIONS(103), @@ -62780,135 +63365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [117] = { - [sym_comment] = STATE(117), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), [anon_sym_DOT_DOT_LT] = ACTIONS(401), [anon_sym_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), @@ -63000,270 +63456,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(405), [anon_sym_ZIb] = ACTIONS(405), [anon_sym_ZIB] = ACTIONS(405), - [sym_short_flag] = ACTIONS(107), + [sym_short_flag] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, [118] = { [sym_comment] = STATE(118), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_QMARK2] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, [119] = { [sym_comment] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(407), - [anon_sym_ns] = ACTIONS(409), - [anon_sym_s] = ACTIONS(409), - [anon_sym_us] = ACTIONS(409), - [anon_sym_ms] = ACTIONS(409), - [anon_sym_sec] = ACTIONS(409), - [anon_sym_min] = ACTIONS(409), - [anon_sym_hr] = ACTIONS(409), - [anon_sym_day] = ACTIONS(409), - [anon_sym_wk] = ACTIONS(409), - [anon_sym_b] = ACTIONS(411), - [anon_sym_B] = ACTIONS(411), - [anon_sym_kb] = ACTIONS(411), - [anon_sym_kB] = ACTIONS(411), - [anon_sym_Kb] = ACTIONS(411), - [anon_sym_KB] = ACTIONS(411), - [anon_sym_mb] = ACTIONS(411), - [anon_sym_mB] = ACTIONS(411), - [anon_sym_Mb] = ACTIONS(411), - [anon_sym_MB] = ACTIONS(411), - [anon_sym_gb] = ACTIONS(411), - [anon_sym_gB] = ACTIONS(411), - [anon_sym_Gb] = ACTIONS(411), - [anon_sym_GB] = ACTIONS(411), - [anon_sym_tb] = ACTIONS(411), - [anon_sym_tB] = ACTIONS(411), - [anon_sym_Tb] = ACTIONS(411), - [anon_sym_TB] = ACTIONS(411), - [anon_sym_pb] = ACTIONS(411), - [anon_sym_pB] = ACTIONS(411), - [anon_sym_Pb] = ACTIONS(411), - [anon_sym_PB] = ACTIONS(411), - [anon_sym_eb] = ACTIONS(411), - [anon_sym_eB] = ACTIONS(411), - [anon_sym_Eb] = ACTIONS(411), - [anon_sym_EB] = ACTIONS(411), - [anon_sym_zb] = ACTIONS(411), - [anon_sym_zB] = ACTIONS(411), - [anon_sym_Zb] = ACTIONS(411), - [anon_sym_ZB] = ACTIONS(411), - [anon_sym_kib] = ACTIONS(411), - [anon_sym_kiB] = ACTIONS(411), - [anon_sym_kIB] = ACTIONS(411), - [anon_sym_kIb] = ACTIONS(411), - [anon_sym_Kib] = ACTIONS(411), - [anon_sym_KIb] = ACTIONS(411), - [anon_sym_KIB] = ACTIONS(411), - [anon_sym_mib] = ACTIONS(411), - [anon_sym_miB] = ACTIONS(411), - [anon_sym_mIB] = ACTIONS(411), - [anon_sym_mIb] = ACTIONS(411), - [anon_sym_Mib] = ACTIONS(411), - [anon_sym_MIb] = ACTIONS(411), - [anon_sym_MIB] = ACTIONS(411), - [anon_sym_gib] = ACTIONS(411), - [anon_sym_giB] = ACTIONS(411), - [anon_sym_gIB] = ACTIONS(411), - [anon_sym_gIb] = ACTIONS(411), - [anon_sym_Gib] = ACTIONS(411), - [anon_sym_GIb] = ACTIONS(411), - [anon_sym_GIB] = ACTIONS(411), - [anon_sym_tib] = ACTIONS(411), - [anon_sym_tiB] = ACTIONS(411), - [anon_sym_tIB] = ACTIONS(411), - [anon_sym_tIb] = ACTIONS(411), - [anon_sym_Tib] = ACTIONS(411), - [anon_sym_TIb] = ACTIONS(411), - [anon_sym_TIB] = ACTIONS(411), - [anon_sym_pib] = ACTIONS(411), - [anon_sym_piB] = ACTIONS(411), - [anon_sym_pIB] = ACTIONS(411), - [anon_sym_pIb] = ACTIONS(411), - [anon_sym_Pib] = ACTIONS(411), - [anon_sym_PIb] = ACTIONS(411), - [anon_sym_PIB] = ACTIONS(411), - [anon_sym_eib] = ACTIONS(411), - [anon_sym_eiB] = ACTIONS(411), - [anon_sym_eIB] = ACTIONS(411), - [anon_sym_eIb] = ACTIONS(411), - [anon_sym_Eib] = ACTIONS(411), - [anon_sym_EIb] = ACTIONS(411), - [anon_sym_EIB] = ACTIONS(411), - [anon_sym_zib] = ACTIONS(411), - [anon_sym_ziB] = ACTIONS(411), - [anon_sym_zIB] = ACTIONS(411), - [anon_sym_zIb] = ACTIONS(411), - [anon_sym_Zib] = ACTIONS(411), - [anon_sym_ZIb] = ACTIONS(411), - [anon_sym_ZIB] = ACTIONS(411), - [sym_short_flag] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), + [sym_identifier] = ACTIONS(113), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym__str_single_quotes] = ACTIONS(115), + [sym__str_back_ticks] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(157), }, [120] = { [sym_comment] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [121] = { + [sym_comment] = STATE(121), [anon_sym_COMMA] = ACTIONS(105), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_GT] = ACTIONS(103), @@ -63298,227 +63883,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(105), [anon_sym_xor] = ACTIONS(105), [anon_sym_or] = ACTIONS(105), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [anon_sym_ns] = ACTIONS(105), - [anon_sym_s] = ACTIONS(105), - [anon_sym_us] = ACTIONS(105), - [anon_sym_ms] = ACTIONS(105), - [anon_sym_sec] = ACTIONS(105), - [anon_sym_min] = ACTIONS(105), - [anon_sym_hr] = ACTIONS(105), - [anon_sym_day] = ACTIONS(105), - [anon_sym_wk] = ACTIONS(105), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(105), - [anon_sym_kb] = ACTIONS(105), - [anon_sym_kB] = ACTIONS(105), - [anon_sym_Kb] = ACTIONS(105), - [anon_sym_KB] = ACTIONS(105), - [anon_sym_mb] = ACTIONS(105), - [anon_sym_mB] = ACTIONS(105), - [anon_sym_Mb] = ACTIONS(105), - [anon_sym_MB] = ACTIONS(105), - [anon_sym_gb] = ACTIONS(105), - [anon_sym_gB] = ACTIONS(105), - [anon_sym_Gb] = ACTIONS(105), - [anon_sym_GB] = ACTIONS(105), - [anon_sym_tb] = ACTIONS(105), - [anon_sym_tB] = ACTIONS(105), - [anon_sym_Tb] = ACTIONS(105), - [anon_sym_TB] = ACTIONS(105), - [anon_sym_pb] = ACTIONS(105), - [anon_sym_pB] = ACTIONS(105), - [anon_sym_Pb] = ACTIONS(105), - [anon_sym_PB] = ACTIONS(105), - [anon_sym_eb] = ACTIONS(105), - [anon_sym_eB] = ACTIONS(105), - [anon_sym_Eb] = ACTIONS(105), - [anon_sym_EB] = ACTIONS(105), - [anon_sym_zb] = ACTIONS(105), - [anon_sym_zB] = ACTIONS(105), - [anon_sym_Zb] = ACTIONS(105), - [anon_sym_ZB] = ACTIONS(105), - [anon_sym_kib] = ACTIONS(105), - [anon_sym_kiB] = ACTIONS(105), - [anon_sym_kIB] = ACTIONS(105), - [anon_sym_kIb] = ACTIONS(105), - [anon_sym_Kib] = ACTIONS(105), - [anon_sym_KIb] = ACTIONS(105), - [anon_sym_KIB] = ACTIONS(105), - [anon_sym_mib] = ACTIONS(105), - [anon_sym_miB] = ACTIONS(105), - [anon_sym_mIB] = ACTIONS(105), - [anon_sym_mIb] = ACTIONS(105), - [anon_sym_Mib] = ACTIONS(105), - [anon_sym_MIb] = ACTIONS(105), - [anon_sym_MIB] = ACTIONS(105), - [anon_sym_gib] = ACTIONS(105), - [anon_sym_giB] = ACTIONS(105), - [anon_sym_gIB] = ACTIONS(105), - [anon_sym_gIb] = ACTIONS(105), - [anon_sym_Gib] = ACTIONS(105), - [anon_sym_GIb] = ACTIONS(105), - [anon_sym_GIB] = ACTIONS(105), - [anon_sym_tib] = ACTIONS(105), - [anon_sym_tiB] = ACTIONS(105), - [anon_sym_tIB] = ACTIONS(105), - [anon_sym_tIb] = ACTIONS(105), - [anon_sym_Tib] = ACTIONS(105), - [anon_sym_TIb] = ACTIONS(105), - [anon_sym_TIB] = ACTIONS(105), - [anon_sym_pib] = ACTIONS(105), - [anon_sym_piB] = ACTIONS(105), - [anon_sym_pIB] = ACTIONS(105), - [anon_sym_pIb] = ACTIONS(105), - [anon_sym_Pib] = ACTIONS(105), - [anon_sym_PIb] = ACTIONS(105), - [anon_sym_PIB] = ACTIONS(105), - [anon_sym_eib] = ACTIONS(105), - [anon_sym_eiB] = ACTIONS(105), - [anon_sym_eIB] = ACTIONS(105), - [anon_sym_eIb] = ACTIONS(105), - [anon_sym_Eib] = ACTIONS(105), - [anon_sym_EIb] = ACTIONS(105), - [anon_sym_EIB] = ACTIONS(105), - [anon_sym_zib] = ACTIONS(105), - [anon_sym_ziB] = ACTIONS(105), - [anon_sym_zIB] = ACTIONS(105), - [anon_sym_zIb] = ACTIONS(105), - [anon_sym_Zib] = ACTIONS(105), - [anon_sym_ZIb] = ACTIONS(105), - [anon_sym_ZIB] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(147), - }, - [121] = { - [sym__block_body_statement_parenthesized] = STATE(931), - [sym__declaration_parenthesized] = STATE(1046), - [sym_decl_alias_parenthesized] = STATE(1037), - [sym_stmt_let_parenthesized] = STATE(1048), - [sym_stmt_mut_parenthesized] = STATE(1048), - [sym_stmt_const_parenthesized] = STATE(1048), - [sym__statement_parenthesized] = STATE(1049), - [sym_pipeline_parenthesized] = STATE(1048), - [sym_decl_def] = STATE(1037), - [sym_decl_export] = STATE(1037), - [sym_decl_extern] = STATE(1037), - [sym_decl_module] = STATE(1037), - [sym_decl_use] = STATE(1037), - [sym__control] = STATE(1032), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(782), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3815), - [sym_stmt_source] = STATE(1048), - [sym_stmt_register] = STATE(1048), - [sym__stmt_hide] = STATE(1048), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(1048), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(1048), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(121), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(500), - [aux_sym__parenthesized_body_repeat1] = STATE(121), - [anon_sym_export] = ACTIONS(413), - [anon_sym_alias] = ACTIONS(416), - [anon_sym_let] = ACTIONS(419), - [anon_sym_let_DASHenv] = ACTIONS(419), - [anon_sym_mut] = ACTIONS(422), - [anon_sym_const] = ACTIONS(425), - [sym_cmd_identifier] = ACTIONS(428), - [anon_sym_def] = ACTIONS(431), - [anon_sym_def_DASHenv] = ACTIONS(431), - [anon_sym_export_DASHenv] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(437), - [anon_sym_module] = ACTIONS(440), - [anon_sym_use] = ACTIONS(443), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(452), - [anon_sym_error] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_break] = ACTIONS(461), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_for] = ACTIONS(467), - [anon_sym_loop] = ACTIONS(470), - [anon_sym_while] = ACTIONS(473), - [anon_sym_do] = ACTIONS(476), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_try] = ACTIONS(488), - [anon_sym_return] = ACTIONS(491), - [anon_sym_source] = ACTIONS(494), - [anon_sym_source_DASHenv] = ACTIONS(494), - [anon_sym_register] = ACTIONS(497), - [anon_sym_hide] = ACTIONS(500), - [anon_sym_hide_DASHenv] = ACTIONS(503), - [anon_sym_overlay] = ACTIONS(506), - [anon_sym_where] = ACTIONS(509), - [anon_sym_not] = ACTIONS(512), - [anon_sym_DOT_DOT_LT] = ACTIONS(515), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(515), - [sym_val_nothing] = ACTIONS(521), - [anon_sym_true] = ACTIONS(524), - [anon_sym_false] = ACTIONS(524), - [aux_sym_val_number_token1] = ACTIONS(527), - [aux_sym_val_number_token2] = ACTIONS(527), - [aux_sym_val_number_token3] = ACTIONS(530), - [aux_sym_val_number_token4] = ACTIONS(530), - [aux_sym_val_number_token5] = ACTIONS(530), - [anon_sym_inf] = ACTIONS(527), - [anon_sym_DASHinf] = ACTIONS(530), - [anon_sym_NaN] = ACTIONS(527), - [anon_sym_0b] = ACTIONS(533), - [anon_sym_0o] = ACTIONS(533), - [anon_sym_0x] = ACTIONS(533), - [sym_val_date] = ACTIONS(536), - [anon_sym_DQUOTE] = ACTIONS(539), - [sym__str_single_quotes] = ACTIONS(542), - [sym__str_back_ticks] = ACTIONS(542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_ns] = ACTIONS(411), + [anon_sym_s] = ACTIONS(411), + [anon_sym_us] = ACTIONS(411), + [anon_sym_ms] = ACTIONS(411), + [anon_sym_sec] = ACTIONS(411), + [anon_sym_min] = ACTIONS(411), + [anon_sym_hr] = ACTIONS(411), + [anon_sym_day] = ACTIONS(411), + [anon_sym_wk] = ACTIONS(411), + [anon_sym_b] = ACTIONS(413), + [anon_sym_B] = ACTIONS(415), + [anon_sym_kb] = ACTIONS(415), + [anon_sym_kB] = ACTIONS(415), + [anon_sym_Kb] = ACTIONS(415), + [anon_sym_KB] = ACTIONS(415), + [anon_sym_mb] = ACTIONS(415), + [anon_sym_mB] = ACTIONS(415), + [anon_sym_Mb] = ACTIONS(415), + [anon_sym_MB] = ACTIONS(415), + [anon_sym_gb] = ACTIONS(415), + [anon_sym_gB] = ACTIONS(415), + [anon_sym_Gb] = ACTIONS(415), + [anon_sym_GB] = ACTIONS(415), + [anon_sym_tb] = ACTIONS(415), + [anon_sym_tB] = ACTIONS(415), + [anon_sym_Tb] = ACTIONS(415), + [anon_sym_TB] = ACTIONS(415), + [anon_sym_pb] = ACTIONS(415), + [anon_sym_pB] = ACTIONS(415), + [anon_sym_Pb] = ACTIONS(415), + [anon_sym_PB] = ACTIONS(415), + [anon_sym_eb] = ACTIONS(415), + [anon_sym_eB] = ACTIONS(415), + [anon_sym_Eb] = ACTIONS(415), + [anon_sym_EB] = ACTIONS(415), + [anon_sym_zb] = ACTIONS(415), + [anon_sym_zB] = ACTIONS(415), + [anon_sym_Zb] = ACTIONS(415), + [anon_sym_ZB] = ACTIONS(415), + [anon_sym_kib] = ACTIONS(415), + [anon_sym_kiB] = ACTIONS(415), + [anon_sym_kIB] = ACTIONS(415), + [anon_sym_kIb] = ACTIONS(415), + [anon_sym_Kib] = ACTIONS(415), + [anon_sym_KIb] = ACTIONS(415), + [anon_sym_KIB] = ACTIONS(415), + [anon_sym_mib] = ACTIONS(415), + [anon_sym_miB] = ACTIONS(415), + [anon_sym_mIB] = ACTIONS(415), + [anon_sym_mIb] = ACTIONS(415), + [anon_sym_Mib] = ACTIONS(415), + [anon_sym_MIb] = ACTIONS(415), + [anon_sym_MIB] = ACTIONS(415), + [anon_sym_gib] = ACTIONS(415), + [anon_sym_giB] = ACTIONS(415), + [anon_sym_gIB] = ACTIONS(415), + [anon_sym_gIb] = ACTIONS(415), + [anon_sym_Gib] = ACTIONS(415), + [anon_sym_GIb] = ACTIONS(415), + [anon_sym_GIB] = ACTIONS(415), + [anon_sym_tib] = ACTIONS(415), + [anon_sym_tiB] = ACTIONS(415), + [anon_sym_tIB] = ACTIONS(415), + [anon_sym_tIb] = ACTIONS(415), + [anon_sym_Tib] = ACTIONS(415), + [anon_sym_TIb] = ACTIONS(415), + [anon_sym_TIB] = ACTIONS(415), + [anon_sym_pib] = ACTIONS(415), + [anon_sym_piB] = ACTIONS(415), + [anon_sym_pIB] = ACTIONS(415), + [anon_sym_pIb] = ACTIONS(415), + [anon_sym_Pib] = ACTIONS(415), + [anon_sym_PIb] = ACTIONS(415), + [anon_sym_PIB] = ACTIONS(415), + [anon_sym_eib] = ACTIONS(415), + [anon_sym_eiB] = ACTIONS(415), + [anon_sym_eIB] = ACTIONS(415), + [anon_sym_eIb] = ACTIONS(415), + [anon_sym_Eib] = ACTIONS(415), + [anon_sym_EIb] = ACTIONS(415), + [anon_sym_EIB] = ACTIONS(415), + [anon_sym_zib] = ACTIONS(415), + [anon_sym_ziB] = ACTIONS(415), + [anon_sym_zIB] = ACTIONS(415), + [anon_sym_zIb] = ACTIONS(415), + [anon_sym_Zib] = ACTIONS(415), + [anon_sym_ZIb] = ACTIONS(415), + [anon_sym_ZIB] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(157), }, [122] = { [sym_comment] = STATE(122), @@ -63555,102 +64011,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(417), + [anon_sym_ns] = ACTIONS(419), + [anon_sym_s] = ACTIONS(419), + [anon_sym_us] = ACTIONS(419), + [anon_sym_ms] = ACTIONS(419), + [anon_sym_sec] = ACTIONS(419), + [anon_sym_min] = ACTIONS(419), + [anon_sym_hr] = ACTIONS(419), + [anon_sym_day] = ACTIONS(419), + [anon_sym_wk] = ACTIONS(419), + [anon_sym_b] = ACTIONS(421), + [anon_sym_B] = ACTIONS(421), + [anon_sym_kb] = ACTIONS(421), + [anon_sym_kB] = ACTIONS(421), + [anon_sym_Kb] = ACTIONS(421), + [anon_sym_KB] = ACTIONS(421), + [anon_sym_mb] = ACTIONS(421), + [anon_sym_mB] = ACTIONS(421), + [anon_sym_Mb] = ACTIONS(421), + [anon_sym_MB] = ACTIONS(421), + [anon_sym_gb] = ACTIONS(421), + [anon_sym_gB] = ACTIONS(421), + [anon_sym_Gb] = ACTIONS(421), + [anon_sym_GB] = ACTIONS(421), + [anon_sym_tb] = ACTIONS(421), + [anon_sym_tB] = ACTIONS(421), + [anon_sym_Tb] = ACTIONS(421), + [anon_sym_TB] = ACTIONS(421), + [anon_sym_pb] = ACTIONS(421), + [anon_sym_pB] = ACTIONS(421), + [anon_sym_Pb] = ACTIONS(421), + [anon_sym_PB] = ACTIONS(421), + [anon_sym_eb] = ACTIONS(421), + [anon_sym_eB] = ACTIONS(421), + [anon_sym_Eb] = ACTIONS(421), + [anon_sym_EB] = ACTIONS(421), + [anon_sym_zb] = ACTIONS(421), + [anon_sym_zB] = ACTIONS(421), + [anon_sym_Zb] = ACTIONS(421), + [anon_sym_ZB] = ACTIONS(421), + [anon_sym_kib] = ACTIONS(421), + [anon_sym_kiB] = ACTIONS(421), + [anon_sym_kIB] = ACTIONS(421), + [anon_sym_kIb] = ACTIONS(421), + [anon_sym_Kib] = ACTIONS(421), + [anon_sym_KIb] = ACTIONS(421), + [anon_sym_KIB] = ACTIONS(421), + [anon_sym_mib] = ACTIONS(421), + [anon_sym_miB] = ACTIONS(421), + [anon_sym_mIB] = ACTIONS(421), + [anon_sym_mIb] = ACTIONS(421), + [anon_sym_Mib] = ACTIONS(421), + [anon_sym_MIb] = ACTIONS(421), + [anon_sym_MIB] = ACTIONS(421), + [anon_sym_gib] = ACTIONS(421), + [anon_sym_giB] = ACTIONS(421), + [anon_sym_gIB] = ACTIONS(421), + [anon_sym_gIb] = ACTIONS(421), + [anon_sym_Gib] = ACTIONS(421), + [anon_sym_GIb] = ACTIONS(421), + [anon_sym_GIB] = ACTIONS(421), + [anon_sym_tib] = ACTIONS(421), + [anon_sym_tiB] = ACTIONS(421), + [anon_sym_tIB] = ACTIONS(421), + [anon_sym_tIb] = ACTIONS(421), + [anon_sym_Tib] = ACTIONS(421), + [anon_sym_TIb] = ACTIONS(421), + [anon_sym_TIB] = ACTIONS(421), + [anon_sym_pib] = ACTIONS(421), + [anon_sym_piB] = ACTIONS(421), + [anon_sym_pIB] = ACTIONS(421), + [anon_sym_pIb] = ACTIONS(421), + [anon_sym_Pib] = ACTIONS(421), + [anon_sym_PIb] = ACTIONS(421), + [anon_sym_PIB] = ACTIONS(421), + [anon_sym_eib] = ACTIONS(421), + [anon_sym_eiB] = ACTIONS(421), + [anon_sym_eIB] = ACTIONS(421), + [anon_sym_eIb] = ACTIONS(421), + [anon_sym_Eib] = ACTIONS(421), + [anon_sym_EIb] = ACTIONS(421), + [anon_sym_EIB] = ACTIONS(421), + [anon_sym_zib] = ACTIONS(421), + [anon_sym_ziB] = ACTIONS(421), + [anon_sym_zIB] = ACTIONS(421), + [anon_sym_zIb] = ACTIONS(421), + [anon_sym_Zib] = ACTIONS(421), + [anon_sym_ZIb] = ACTIONS(421), + [anon_sym_ZIB] = ACTIONS(421), [sym_short_flag] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, [123] = { + [sym__block_body_statement] = STATE(941), + [sym__declaration] = STATE(1130), + [sym_decl_alias] = STATE(1104), + [sym_stmt_let] = STATE(1115), + [sym_stmt_mut] = STATE(1115), + [sym_stmt_const] = STATE(1115), + [sym__statement] = STATE(1127), + [sym_pipeline] = STATE(1115), + [sym_decl_def] = STATE(1104), + [sym_decl_export] = STATE(1104), + [sym_decl_extern] = STATE(1104), + [sym_decl_module] = STATE(1104), + [sym_decl_use] = STATE(1104), + [sym__control] = STATE(1117), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(814), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3776), + [sym_stmt_source] = STATE(1115), + [sym_stmt_register] = STATE(1115), + [sym__stmt_hide] = STATE(1115), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1115), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1115), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(568), + [aux_sym__block_body_repeat2] = STATE(123), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(426), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(432), + [anon_sym_const] = ACTIONS(435), + [sym_cmd_identifier] = ACTIONS(438), + [anon_sym_def] = ACTIONS(441), + [anon_sym_def_DASHenv] = ACTIONS(441), + [anon_sym_export_DASHenv] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_module] = ACTIONS(450), + [anon_sym_use] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR] = ACTIONS(462), + [anon_sym_error] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_break] = ACTIONS(471), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_for] = ACTIONS(477), + [anon_sym_loop] = ACTIONS(480), + [anon_sym_while] = ACTIONS(483), + [anon_sym_do] = ACTIONS(486), + [anon_sym_if] = ACTIONS(489), + [anon_sym_match] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_try] = ACTIONS(498), + [anon_sym_return] = ACTIONS(501), + [anon_sym_source] = ACTIONS(504), + [anon_sym_source_DASHenv] = ACTIONS(504), + [anon_sym_register] = ACTIONS(507), + [anon_sym_hide] = ACTIONS(510), + [anon_sym_hide_DASHenv] = ACTIONS(513), + [anon_sym_overlay] = ACTIONS(516), + [anon_sym_where] = ACTIONS(519), + [anon_sym_not] = ACTIONS(522), + [anon_sym_DOT_DOT_LT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(525), + [sym_val_nothing] = ACTIONS(531), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [aux_sym_val_number_token1] = ACTIONS(537), + [aux_sym_val_number_token2] = ACTIONS(537), + [aux_sym_val_number_token3] = ACTIONS(540), + [aux_sym_val_number_token4] = ACTIONS(540), + [aux_sym_val_number_token5] = ACTIONS(540), + [anon_sym_inf] = ACTIONS(537), + [anon_sym_DASHinf] = ACTIONS(540), + [anon_sym_NaN] = ACTIONS(537), + [anon_sym_0b] = ACTIONS(543), + [anon_sym_0o] = ACTIONS(543), + [anon_sym_0x] = ACTIONS(543), + [sym_val_date] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym__str_single_quotes] = ACTIONS(552), + [sym__str_back_ticks] = ACTIONS(552), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(555), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(157), + }, + [124] = { + [sym_comment] = STATE(124), [sym_identifier] = ACTIONS(103), [anon_sym_COMMA] = ACTIONS(105), [anon_sym_GT] = ACTIONS(103), @@ -63682,501 +64267,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_ns] = ACTIONS(568), + [anon_sym_s] = ACTIONS(568), + [anon_sym_us] = ACTIONS(568), + [anon_sym_ms] = ACTIONS(568), + [anon_sym_sec] = ACTIONS(568), + [anon_sym_min] = ACTIONS(568), + [anon_sym_hr] = ACTIONS(568), + [anon_sym_day] = ACTIONS(568), + [anon_sym_wk] = ACTIONS(568), + [anon_sym_b] = ACTIONS(570), + [anon_sym_B] = ACTIONS(570), + [anon_sym_kb] = ACTIONS(570), + [anon_sym_kB] = ACTIONS(570), + [anon_sym_Kb] = ACTIONS(570), + [anon_sym_KB] = ACTIONS(570), + [anon_sym_mb] = ACTIONS(570), + [anon_sym_mB] = ACTIONS(570), + [anon_sym_Mb] = ACTIONS(570), + [anon_sym_MB] = ACTIONS(570), + [anon_sym_gb] = ACTIONS(570), + [anon_sym_gB] = ACTIONS(570), + [anon_sym_Gb] = ACTIONS(570), + [anon_sym_GB] = ACTIONS(570), + [anon_sym_tb] = ACTIONS(570), + [anon_sym_tB] = ACTIONS(570), + [anon_sym_Tb] = ACTIONS(570), + [anon_sym_TB] = ACTIONS(570), + [anon_sym_pb] = ACTIONS(570), + [anon_sym_pB] = ACTIONS(570), + [anon_sym_Pb] = ACTIONS(570), + [anon_sym_PB] = ACTIONS(570), + [anon_sym_eb] = ACTIONS(570), + [anon_sym_eB] = ACTIONS(570), + [anon_sym_Eb] = ACTIONS(570), + [anon_sym_EB] = ACTIONS(570), + [anon_sym_zb] = ACTIONS(570), + [anon_sym_zB] = ACTIONS(570), + [anon_sym_Zb] = ACTIONS(570), + [anon_sym_ZB] = ACTIONS(570), + [anon_sym_kib] = ACTIONS(570), + [anon_sym_kiB] = ACTIONS(570), + [anon_sym_kIB] = ACTIONS(570), + [anon_sym_kIb] = ACTIONS(570), + [anon_sym_Kib] = ACTIONS(570), + [anon_sym_KIb] = ACTIONS(570), + [anon_sym_KIB] = ACTIONS(570), + [anon_sym_mib] = ACTIONS(570), + [anon_sym_miB] = ACTIONS(570), + [anon_sym_mIB] = ACTIONS(570), + [anon_sym_mIb] = ACTIONS(570), + [anon_sym_Mib] = ACTIONS(570), + [anon_sym_MIb] = ACTIONS(570), + [anon_sym_MIB] = ACTIONS(570), + [anon_sym_gib] = ACTIONS(570), + [anon_sym_giB] = ACTIONS(570), + [anon_sym_gIB] = ACTIONS(570), + [anon_sym_gIb] = ACTIONS(570), + [anon_sym_Gib] = ACTIONS(570), + [anon_sym_GIb] = ACTIONS(570), + [anon_sym_GIB] = ACTIONS(570), + [anon_sym_tib] = ACTIONS(570), + [anon_sym_tiB] = ACTIONS(570), + [anon_sym_tIB] = ACTIONS(570), + [anon_sym_tIb] = ACTIONS(570), + [anon_sym_Tib] = ACTIONS(570), + [anon_sym_TIb] = ACTIONS(570), + [anon_sym_TIB] = ACTIONS(570), + [anon_sym_pib] = ACTIONS(570), + [anon_sym_piB] = ACTIONS(570), + [anon_sym_pIB] = ACTIONS(570), + [anon_sym_pIb] = ACTIONS(570), + [anon_sym_Pib] = ACTIONS(570), + [anon_sym_PIb] = ACTIONS(570), + [anon_sym_PIB] = ACTIONS(570), + [anon_sym_eib] = ACTIONS(570), + [anon_sym_eiB] = ACTIONS(570), + [anon_sym_eIB] = ACTIONS(570), + [anon_sym_eIb] = ACTIONS(570), + [anon_sym_Eib] = ACTIONS(570), + [anon_sym_EIb] = ACTIONS(570), + [anon_sym_EIB] = ACTIONS(570), + [anon_sym_zib] = ACTIONS(570), + [anon_sym_ziB] = ACTIONS(570), + [anon_sym_zIB] = ACTIONS(570), + [anon_sym_zIb] = ACTIONS(570), + [anon_sym_Zib] = ACTIONS(570), + [anon_sym_ZIb] = ACTIONS(570), + [anon_sym_ZIB] = ACTIONS(570), [anon_sym_DQUOTE] = ACTIONS(105), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(147), - }, - [124] = { - [sym_comment] = STATE(124), - [sym_identifier] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_ns] = ACTIONS(558), - [anon_sym_s] = ACTIONS(558), - [anon_sym_us] = ACTIONS(558), - [anon_sym_ms] = ACTIONS(558), - [anon_sym_sec] = ACTIONS(558), - [anon_sym_min] = ACTIONS(558), - [anon_sym_hr] = ACTIONS(558), - [anon_sym_day] = ACTIONS(558), - [anon_sym_wk] = ACTIONS(558), - [anon_sym_b] = ACTIONS(560), - [anon_sym_B] = ACTIONS(560), - [anon_sym_kb] = ACTIONS(560), - [anon_sym_kB] = ACTIONS(560), - [anon_sym_Kb] = ACTIONS(560), - [anon_sym_KB] = ACTIONS(560), - [anon_sym_mb] = ACTIONS(560), - [anon_sym_mB] = ACTIONS(560), - [anon_sym_Mb] = ACTIONS(560), - [anon_sym_MB] = ACTIONS(560), - [anon_sym_gb] = ACTIONS(560), - [anon_sym_gB] = ACTIONS(560), - [anon_sym_Gb] = ACTIONS(560), - [anon_sym_GB] = ACTIONS(560), - [anon_sym_tb] = ACTIONS(560), - [anon_sym_tB] = ACTIONS(560), - [anon_sym_Tb] = ACTIONS(560), - [anon_sym_TB] = ACTIONS(560), - [anon_sym_pb] = ACTIONS(560), - [anon_sym_pB] = ACTIONS(560), - [anon_sym_Pb] = ACTIONS(560), - [anon_sym_PB] = ACTIONS(560), - [anon_sym_eb] = ACTIONS(560), - [anon_sym_eB] = ACTIONS(560), - [anon_sym_Eb] = ACTIONS(560), - [anon_sym_EB] = ACTIONS(560), - [anon_sym_zb] = ACTIONS(560), - [anon_sym_zB] = ACTIONS(560), - [anon_sym_Zb] = ACTIONS(560), - [anon_sym_ZB] = ACTIONS(560), - [anon_sym_kib] = ACTIONS(560), - [anon_sym_kiB] = ACTIONS(560), - [anon_sym_kIB] = ACTIONS(560), - [anon_sym_kIb] = ACTIONS(560), - [anon_sym_Kib] = ACTIONS(560), - [anon_sym_KIb] = ACTIONS(560), - [anon_sym_KIB] = ACTIONS(560), - [anon_sym_mib] = ACTIONS(560), - [anon_sym_miB] = ACTIONS(560), - [anon_sym_mIB] = ACTIONS(560), - [anon_sym_mIb] = ACTIONS(560), - [anon_sym_Mib] = ACTIONS(560), - [anon_sym_MIb] = ACTIONS(560), - [anon_sym_MIB] = ACTIONS(560), - [anon_sym_gib] = ACTIONS(560), - [anon_sym_giB] = ACTIONS(560), - [anon_sym_gIB] = ACTIONS(560), - [anon_sym_gIb] = ACTIONS(560), - [anon_sym_Gib] = ACTIONS(560), - [anon_sym_GIb] = ACTIONS(560), - [anon_sym_GIB] = ACTIONS(560), - [anon_sym_tib] = ACTIONS(560), - [anon_sym_tiB] = ACTIONS(560), - [anon_sym_tIB] = ACTIONS(560), - [anon_sym_tIb] = ACTIONS(560), - [anon_sym_Tib] = ACTIONS(560), - [anon_sym_TIb] = ACTIONS(560), - [anon_sym_TIB] = ACTIONS(560), - [anon_sym_pib] = ACTIONS(560), - [anon_sym_piB] = ACTIONS(560), - [anon_sym_pIB] = ACTIONS(560), - [anon_sym_pIb] = ACTIONS(560), - [anon_sym_Pib] = ACTIONS(560), - [anon_sym_PIb] = ACTIONS(560), - [anon_sym_PIB] = ACTIONS(560), - [anon_sym_eib] = ACTIONS(560), - [anon_sym_eiB] = ACTIONS(560), - [anon_sym_eIB] = ACTIONS(560), - [anon_sym_eIb] = ACTIONS(560), - [anon_sym_Eib] = ACTIONS(560), - [anon_sym_EIb] = ACTIONS(560), - [anon_sym_EIB] = ACTIONS(560), - [anon_sym_zib] = ACTIONS(560), - [anon_sym_ziB] = ACTIONS(560), - [anon_sym_zIB] = ACTIONS(560), - [anon_sym_zIb] = ACTIONS(560), - [anon_sym_Zib] = ACTIONS(560), - [anon_sym_ZIb] = ACTIONS(560), - [anon_sym_ZIB] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(109), - [sym__str_back_ticks] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(147), + [anon_sym_POUND] = ACTIONS(157), }, [125] = { - [sym__block_body_statement] = STATE(835), - [sym__declaration] = STATE(1039), - [sym_decl_alias] = STATE(1038), - [sym_stmt_let] = STATE(1024), - [sym_stmt_mut] = STATE(1024), - [sym_stmt_const] = STATE(1024), - [sym__statement] = STATE(1020), - [sym_pipeline] = STATE(1024), - [sym_decl_def] = STATE(1038), - [sym_decl_export] = STATE(1038), - [sym_decl_extern] = STATE(1038), - [sym_decl_module] = STATE(1038), - [sym_decl_use] = STATE(1038), - [sym__control] = STATE(1045), - [sym__ctrl_statement] = STATE(862), - [sym__ctrl_expression] = STATE(727), - [sym_ctrl_for] = STATE(859), - [sym_ctrl_loop] = STATE(859), - [sym_ctrl_error] = STATE(859), - [sym_ctrl_while] = STATE(859), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3615), - [sym_stmt_source] = STATE(1024), - [sym_stmt_register] = STATE(1024), - [sym__stmt_hide] = STATE(1024), - [sym_hide_mod] = STATE(839), - [sym_hide_env] = STATE(839), - [sym__stmt_overlay] = STATE(1024), - [sym_overlay_list] = STATE(838), - [sym_overlay_hide] = STATE(838), - [sym_overlay_new] = STATE(838), - [sym_overlay_use] = STATE(838), - [sym_assignment] = STATE(1024), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(1917), - [sym__var] = STATE(1809), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(510), - [aux_sym__block_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(562), - [anon_sym_alias] = ACTIONS(565), - [anon_sym_let] = ACTIONS(568), - [anon_sym_let_DASHenv] = ACTIONS(568), - [anon_sym_mut] = ACTIONS(571), - [anon_sym_const] = ACTIONS(574), - [sym_cmd_identifier] = ACTIONS(577), - [anon_sym_def] = ACTIONS(580), - [anon_sym_def_DASHenv] = ACTIONS(580), - [anon_sym_export_DASHenv] = ACTIONS(583), - [anon_sym_extern] = ACTIONS(586), - [anon_sym_module] = ACTIONS(589), - [anon_sym_use] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(601), - [anon_sym_error] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_for] = ACTIONS(616), - [anon_sym_loop] = ACTIONS(619), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(625), - [anon_sym_if] = ACTIONS(628), - [anon_sym_match] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_try] = ACTIONS(637), - [anon_sym_return] = ACTIONS(640), - [anon_sym_source] = ACTIONS(643), - [anon_sym_source_DASHenv] = ACTIONS(643), - [anon_sym_register] = ACTIONS(646), - [anon_sym_hide] = ACTIONS(649), - [anon_sym_hide_DASHenv] = ACTIONS(652), - [anon_sym_overlay] = ACTIONS(655), - [anon_sym_where] = ACTIONS(658), - [anon_sym_not] = ACTIONS(661), - [anon_sym_DOT_DOT_LT] = ACTIONS(664), - [anon_sym_DOT_DOT] = ACTIONS(667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [sym_val_nothing] = ACTIONS(670), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [aux_sym_val_number_token1] = ACTIONS(676), - [aux_sym_val_number_token2] = ACTIONS(676), - [aux_sym_val_number_token3] = ACTIONS(679), - [aux_sym_val_number_token4] = ACTIONS(679), - [aux_sym_val_number_token5] = ACTIONS(679), - [anon_sym_inf] = ACTIONS(676), - [anon_sym_DASHinf] = ACTIONS(679), - [anon_sym_NaN] = ACTIONS(676), - [anon_sym_0b] = ACTIONS(682), - [anon_sym_0o] = ACTIONS(682), - [anon_sym_0x] = ACTIONS(682), - [sym_val_date] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(688), - [sym__str_single_quotes] = ACTIONS(691), - [sym__str_back_ticks] = ACTIONS(691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(694), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(147), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_QMARK2] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), }, [126] = { + [sym__block_body_statement_parenthesized] = STATE(1003), + [sym__declaration_parenthesized] = STATE(1135), + [sym_decl_alias_parenthesized] = STATE(1136), + [sym_stmt_let_parenthesized] = STATE(1138), + [sym_stmt_mut_parenthesized] = STATE(1138), + [sym_stmt_const_parenthesized] = STATE(1138), + [sym__statement_parenthesized] = STATE(1112), + [sym_pipeline_parenthesized] = STATE(1138), + [sym_decl_def] = STATE(1136), + [sym_decl_export] = STATE(1136), + [sym_decl_extern] = STATE(1136), + [sym_decl_module] = STATE(1136), + [sym_decl_use] = STATE(1136), + [sym__control] = STATE(1124), + [sym__ctrl_statement] = STATE(990), + [sym__ctrl_expression] = STATE(885), + [sym_ctrl_for] = STATE(987), + [sym_ctrl_loop] = STATE(987), + [sym_ctrl_error] = STATE(987), + [sym_ctrl_while] = STATE(987), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(4045), + [sym_stmt_source] = STATE(1138), + [sym_stmt_register] = STATE(1138), + [sym__stmt_hide] = STATE(1138), + [sym_hide_mod] = STATE(975), + [sym_hide_env] = STATE(975), + [sym__stmt_overlay] = STATE(1138), + [sym_overlay_list] = STATE(974), + [sym_overlay_hide] = STATE(974), + [sym_overlay_new] = STATE(974), + [sym_overlay_use] = STATE(974), + [sym_assignment] = STATE(1138), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2042), + [sym__var] = STATE(1928), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), [sym_comment] = STATE(126), - [anon_sym_COMMA] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_in] = ACTIONS(109), - [anon_sym_if] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_EQ_GT] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), - [anon_sym_DOT_DOT_LT] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(703), - [anon_sym_ns] = ACTIONS(707), - [anon_sym_s] = ACTIONS(707), - [anon_sym_us] = ACTIONS(707), - [anon_sym_ms] = ACTIONS(707), - [anon_sym_sec] = ACTIONS(707), - [anon_sym_min] = ACTIONS(707), - [anon_sym_hr] = ACTIONS(707), - [anon_sym_day] = ACTIONS(707), - [anon_sym_wk] = ACTIONS(707), - [anon_sym_b] = ACTIONS(709), - [anon_sym_B] = ACTIONS(711), - [anon_sym_kb] = ACTIONS(711), - [anon_sym_kB] = ACTIONS(711), - [anon_sym_Kb] = ACTIONS(711), - [anon_sym_KB] = ACTIONS(711), - [anon_sym_mb] = ACTIONS(711), - [anon_sym_mB] = ACTIONS(711), - [anon_sym_Mb] = ACTIONS(711), - [anon_sym_MB] = ACTIONS(711), - [anon_sym_gb] = ACTIONS(711), - [anon_sym_gB] = ACTIONS(711), - [anon_sym_Gb] = ACTIONS(711), - [anon_sym_GB] = ACTIONS(711), - [anon_sym_tb] = ACTIONS(711), - [anon_sym_tB] = ACTIONS(711), - [anon_sym_Tb] = ACTIONS(711), - [anon_sym_TB] = ACTIONS(711), - [anon_sym_pb] = ACTIONS(711), - [anon_sym_pB] = ACTIONS(711), - [anon_sym_Pb] = ACTIONS(711), - [anon_sym_PB] = ACTIONS(711), - [anon_sym_eb] = ACTIONS(711), - [anon_sym_eB] = ACTIONS(711), - [anon_sym_Eb] = ACTIONS(711), - [anon_sym_EB] = ACTIONS(711), - [anon_sym_zb] = ACTIONS(711), - [anon_sym_zB] = ACTIONS(711), - [anon_sym_Zb] = ACTIONS(711), - [anon_sym_ZB] = ACTIONS(711), - [anon_sym_kib] = ACTIONS(711), - [anon_sym_kiB] = ACTIONS(711), - [anon_sym_kIB] = ACTIONS(711), - [anon_sym_kIb] = ACTIONS(711), - [anon_sym_Kib] = ACTIONS(711), - [anon_sym_KIb] = ACTIONS(711), - [anon_sym_KIB] = ACTIONS(711), - [anon_sym_mib] = ACTIONS(711), - [anon_sym_miB] = ACTIONS(711), - [anon_sym_mIB] = ACTIONS(711), - [anon_sym_mIb] = ACTIONS(711), - [anon_sym_Mib] = ACTIONS(711), - [anon_sym_MIb] = ACTIONS(711), - [anon_sym_MIB] = ACTIONS(711), - [anon_sym_gib] = ACTIONS(711), - [anon_sym_giB] = ACTIONS(711), - [anon_sym_gIB] = ACTIONS(711), - [anon_sym_gIb] = ACTIONS(711), - [anon_sym_Gib] = ACTIONS(711), - [anon_sym_GIb] = ACTIONS(711), - [anon_sym_GIB] = ACTIONS(711), - [anon_sym_tib] = ACTIONS(711), - [anon_sym_tiB] = ACTIONS(711), - [anon_sym_tIB] = ACTIONS(711), - [anon_sym_tIb] = ACTIONS(711), - [anon_sym_Tib] = ACTIONS(711), - [anon_sym_TIb] = ACTIONS(711), - [anon_sym_TIB] = ACTIONS(711), - [anon_sym_pib] = ACTIONS(711), - [anon_sym_piB] = ACTIONS(711), - [anon_sym_pIB] = ACTIONS(711), - [anon_sym_pIb] = ACTIONS(711), - [anon_sym_Pib] = ACTIONS(711), - [anon_sym_PIb] = ACTIONS(711), - [anon_sym_PIB] = ACTIONS(711), - [anon_sym_eib] = ACTIONS(711), - [anon_sym_eiB] = ACTIONS(711), - [anon_sym_eIB] = ACTIONS(711), - [anon_sym_eIb] = ACTIONS(711), - [anon_sym_Eib] = ACTIONS(711), - [anon_sym_EIb] = ACTIONS(711), - [anon_sym_EIB] = ACTIONS(711), - [anon_sym_zib] = ACTIONS(711), - [anon_sym_ziB] = ACTIONS(711), - [anon_sym_zIB] = ACTIONS(711), - [anon_sym_zIb] = ACTIONS(711), - [anon_sym_Zib] = ACTIONS(711), - [anon_sym_ZIb] = ACTIONS(711), - [anon_sym_ZIB] = ACTIONS(711), - [anon_sym_POUND] = ACTIONS(147), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(554), + [aux_sym__parenthesized_body_repeat1] = STATE(126), + [anon_sym_export] = ACTIONS(572), + [anon_sym_alias] = ACTIONS(575), + [anon_sym_let] = ACTIONS(578), + [anon_sym_let_DASHenv] = ACTIONS(578), + [anon_sym_mut] = ACTIONS(581), + [anon_sym_const] = ACTIONS(584), + [sym_cmd_identifier] = ACTIONS(587), + [anon_sym_def] = ACTIONS(590), + [anon_sym_def_DASHenv] = ACTIONS(590), + [anon_sym_export_DASHenv] = ACTIONS(593), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_module] = ACTIONS(599), + [anon_sym_use] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(611), + [anon_sym_error] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_for] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(629), + [anon_sym_while] = ACTIONS(632), + [anon_sym_do] = ACTIONS(635), + [anon_sym_if] = ACTIONS(638), + [anon_sym_match] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_try] = ACTIONS(647), + [anon_sym_return] = ACTIONS(650), + [anon_sym_source] = ACTIONS(653), + [anon_sym_source_DASHenv] = ACTIONS(653), + [anon_sym_register] = ACTIONS(656), + [anon_sym_hide] = ACTIONS(659), + [anon_sym_hide_DASHenv] = ACTIONS(662), + [anon_sym_overlay] = ACTIONS(665), + [anon_sym_where] = ACTIONS(668), + [anon_sym_not] = ACTIONS(671), + [anon_sym_DOT_DOT_LT] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(674), + [sym_val_nothing] = ACTIONS(680), + [anon_sym_true] = ACTIONS(683), + [anon_sym_false] = ACTIONS(683), + [aux_sym_val_number_token1] = ACTIONS(686), + [aux_sym_val_number_token2] = ACTIONS(686), + [aux_sym_val_number_token3] = ACTIONS(689), + [aux_sym_val_number_token4] = ACTIONS(689), + [aux_sym_val_number_token5] = ACTIONS(689), + [anon_sym_inf] = ACTIONS(686), + [anon_sym_DASHinf] = ACTIONS(689), + [anon_sym_NaN] = ACTIONS(686), + [anon_sym_0b] = ACTIONS(692), + [anon_sym_0o] = ACTIONS(692), + [anon_sym_0x] = ACTIONS(692), + [sym_val_date] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(698), + [sym__str_single_quotes] = ACTIONS(701), + [sym__str_back_ticks] = ACTIONS(701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(157), }, [127] = { [sym_comment] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_if] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_EQ_GT] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_zb] = ACTIONS(115), + [anon_sym_zB] = ACTIONS(115), + [anon_sym_Zb] = ACTIONS(115), + [anon_sym_ZB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_zib] = ACTIONS(115), + [anon_sym_ziB] = ACTIONS(115), + [anon_sym_zIB] = ACTIONS(115), + [anon_sym_zIb] = ACTIONS(115), + [anon_sym_Zib] = ACTIONS(115), + [anon_sym_ZIb] = ACTIONS(115), + [anon_sym_ZIB] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(157), + }, + [128] = { + [sym_comment] = STATE(128), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_LF] = ACTIONS(105), + [anon_sym_RPAREN] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(103), [anon_sym_GT] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(103), [anon_sym_in] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(103), - [anon_sym_QMARK2] = ACTIONS(103), [anon_sym_STAR_STAR] = ACTIONS(103), [anon_sym_PLUS_PLUS] = ACTIONS(103), [anon_sym_SLASH] = ACTIONS(103), @@ -64201,261 +64785,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(103), - [anon_sym_s] = ACTIONS(103), - [anon_sym_us] = ACTIONS(103), - [anon_sym_ms] = ACTIONS(103), - [anon_sym_sec] = ACTIONS(103), - [anon_sym_min] = ACTIONS(103), - [anon_sym_hr] = ACTIONS(103), - [anon_sym_day] = ACTIONS(103), - [anon_sym_wk] = ACTIONS(103), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(103), - [anon_sym_kb] = ACTIONS(103), - [anon_sym_kB] = ACTIONS(103), - [anon_sym_Kb] = ACTIONS(103), - [anon_sym_KB] = ACTIONS(103), - [anon_sym_mb] = ACTIONS(103), - [anon_sym_mB] = ACTIONS(103), - [anon_sym_Mb] = ACTIONS(103), - [anon_sym_MB] = ACTIONS(103), - [anon_sym_gb] = ACTIONS(103), - [anon_sym_gB] = ACTIONS(103), - [anon_sym_Gb] = ACTIONS(103), - [anon_sym_GB] = ACTIONS(103), - [anon_sym_tb] = ACTIONS(103), - [anon_sym_tB] = ACTIONS(103), - [anon_sym_Tb] = ACTIONS(103), - [anon_sym_TB] = ACTIONS(103), - [anon_sym_pb] = ACTIONS(103), - [anon_sym_pB] = ACTIONS(103), - [anon_sym_Pb] = ACTIONS(103), - [anon_sym_PB] = ACTIONS(103), - [anon_sym_eb] = ACTIONS(103), - [anon_sym_eB] = ACTIONS(103), - [anon_sym_Eb] = ACTIONS(103), - [anon_sym_EB] = ACTIONS(103), - [anon_sym_zb] = ACTIONS(103), - [anon_sym_zB] = ACTIONS(103), - [anon_sym_Zb] = ACTIONS(103), - [anon_sym_ZB] = ACTIONS(103), - [anon_sym_kib] = ACTIONS(103), - [anon_sym_kiB] = ACTIONS(103), - [anon_sym_kIB] = ACTIONS(103), - [anon_sym_kIb] = ACTIONS(103), - [anon_sym_Kib] = ACTIONS(103), - [anon_sym_KIb] = ACTIONS(103), - [anon_sym_KIB] = ACTIONS(103), - [anon_sym_mib] = ACTIONS(103), - [anon_sym_miB] = ACTIONS(103), - [anon_sym_mIB] = ACTIONS(103), - [anon_sym_mIb] = ACTIONS(103), - [anon_sym_Mib] = ACTIONS(103), - [anon_sym_MIb] = ACTIONS(103), - [anon_sym_MIB] = ACTIONS(103), - [anon_sym_gib] = ACTIONS(103), - [anon_sym_giB] = ACTIONS(103), - [anon_sym_gIB] = ACTIONS(103), - [anon_sym_gIb] = ACTIONS(103), - [anon_sym_Gib] = ACTIONS(103), - [anon_sym_GIb] = ACTIONS(103), - [anon_sym_GIB] = ACTIONS(103), - [anon_sym_tib] = ACTIONS(103), - [anon_sym_tiB] = ACTIONS(103), - [anon_sym_tIB] = ACTIONS(103), - [anon_sym_tIb] = ACTIONS(103), - [anon_sym_Tib] = ACTIONS(103), - [anon_sym_TIb] = ACTIONS(103), - [anon_sym_TIB] = ACTIONS(103), - [anon_sym_pib] = ACTIONS(103), - [anon_sym_piB] = ACTIONS(103), - [anon_sym_pIB] = ACTIONS(103), - [anon_sym_pIb] = ACTIONS(103), - [anon_sym_Pib] = ACTIONS(103), - [anon_sym_PIb] = ACTIONS(103), - [anon_sym_PIB] = ACTIONS(103), - [anon_sym_eib] = ACTIONS(103), - [anon_sym_eiB] = ACTIONS(103), - [anon_sym_eIB] = ACTIONS(103), - [anon_sym_eIb] = ACTIONS(103), - [anon_sym_Eib] = ACTIONS(103), - [anon_sym_EIb] = ACTIONS(103), - [anon_sym_EIB] = ACTIONS(103), - [anon_sym_zib] = ACTIONS(103), - [anon_sym_ziB] = ACTIONS(103), - [anon_sym_zIB] = ACTIONS(103), - [anon_sym_zIb] = ACTIONS(103), - [anon_sym_Zib] = ACTIONS(103), - [anon_sym_ZIb] = ACTIONS(103), - [anon_sym_ZIB] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [128] = { - [sym_comment] = STATE(128), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(359), - [anon_sym_ns] = ACTIONS(361), - [anon_sym_s] = ACTIONS(361), - [anon_sym_us] = ACTIONS(361), - [anon_sym_ms] = ACTIONS(361), - [anon_sym_sec] = ACTIONS(361), - [anon_sym_min] = ACTIONS(361), - [anon_sym_hr] = ACTIONS(361), - [anon_sym_day] = ACTIONS(361), - [anon_sym_wk] = ACTIONS(361), - [anon_sym_b] = ACTIONS(363), - [anon_sym_B] = ACTIONS(363), - [anon_sym_kb] = ACTIONS(363), - [anon_sym_kB] = ACTIONS(363), - [anon_sym_Kb] = ACTIONS(363), - [anon_sym_KB] = ACTIONS(363), - [anon_sym_mb] = ACTIONS(363), - [anon_sym_mB] = ACTIONS(363), - [anon_sym_Mb] = ACTIONS(363), - [anon_sym_MB] = ACTIONS(363), - [anon_sym_gb] = ACTIONS(363), - [anon_sym_gB] = ACTIONS(363), - [anon_sym_Gb] = ACTIONS(363), - [anon_sym_GB] = ACTIONS(363), - [anon_sym_tb] = ACTIONS(363), - [anon_sym_tB] = ACTIONS(363), - [anon_sym_Tb] = ACTIONS(363), - [anon_sym_TB] = ACTIONS(363), - [anon_sym_pb] = ACTIONS(363), - [anon_sym_pB] = ACTIONS(363), - [anon_sym_Pb] = ACTIONS(363), - [anon_sym_PB] = ACTIONS(363), - [anon_sym_eb] = ACTIONS(363), - [anon_sym_eB] = ACTIONS(363), - [anon_sym_Eb] = ACTIONS(363), - [anon_sym_EB] = ACTIONS(363), - [anon_sym_zb] = ACTIONS(363), - [anon_sym_zB] = ACTIONS(363), - [anon_sym_Zb] = ACTIONS(363), - [anon_sym_ZB] = ACTIONS(363), - [anon_sym_kib] = ACTIONS(363), - [anon_sym_kiB] = ACTIONS(363), - [anon_sym_kIB] = ACTIONS(363), - [anon_sym_kIb] = ACTIONS(363), - [anon_sym_Kib] = ACTIONS(363), - [anon_sym_KIb] = ACTIONS(363), - [anon_sym_KIB] = ACTIONS(363), - [anon_sym_mib] = ACTIONS(363), - [anon_sym_miB] = ACTIONS(363), - [anon_sym_mIB] = ACTIONS(363), - [anon_sym_mIb] = ACTIONS(363), - [anon_sym_Mib] = ACTIONS(363), - [anon_sym_MIb] = ACTIONS(363), - [anon_sym_MIB] = ACTIONS(363), - [anon_sym_gib] = ACTIONS(363), - [anon_sym_giB] = ACTIONS(363), - [anon_sym_gIB] = ACTIONS(363), - [anon_sym_gIb] = ACTIONS(363), - [anon_sym_Gib] = ACTIONS(363), - [anon_sym_GIb] = ACTIONS(363), - [anon_sym_GIB] = ACTIONS(363), - [anon_sym_tib] = ACTIONS(363), - [anon_sym_tiB] = ACTIONS(363), - [anon_sym_tIB] = ACTIONS(363), - [anon_sym_tIb] = ACTIONS(363), - [anon_sym_Tib] = ACTIONS(363), - [anon_sym_TIb] = ACTIONS(363), - [anon_sym_TIB] = ACTIONS(363), - [anon_sym_pib] = ACTIONS(363), - [anon_sym_piB] = ACTIONS(363), - [anon_sym_pIB] = ACTIONS(363), - [anon_sym_pIb] = ACTIONS(363), - [anon_sym_Pib] = ACTIONS(363), - [anon_sym_PIb] = ACTIONS(363), - [anon_sym_PIB] = ACTIONS(363), - [anon_sym_eib] = ACTIONS(363), - [anon_sym_eiB] = ACTIONS(363), - [anon_sym_eIB] = ACTIONS(363), - [anon_sym_eIb] = ACTIONS(363), - [anon_sym_Eib] = ACTIONS(363), - [anon_sym_EIb] = ACTIONS(363), - [anon_sym_EIB] = ACTIONS(363), - [anon_sym_zib] = ACTIONS(363), - [anon_sym_ziB] = ACTIONS(363), - [anon_sym_zIB] = ACTIONS(363), - [anon_sym_zIb] = ACTIONS(363), - [anon_sym_Zib] = ACTIONS(363), - [anon_sym_ZIb] = ACTIONS(363), - [anon_sym_ZIB] = ACTIONS(363), + [anon_sym_DOT_DOT_LT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_ns] = ACTIONS(353), + [anon_sym_s] = ACTIONS(353), + [anon_sym_us] = ACTIONS(353), + [anon_sym_ms] = ACTIONS(353), + [anon_sym_sec] = ACTIONS(353), + [anon_sym_min] = ACTIONS(353), + [anon_sym_hr] = ACTIONS(353), + [anon_sym_day] = ACTIONS(353), + [anon_sym_wk] = ACTIONS(353), + [anon_sym_b] = ACTIONS(355), + [anon_sym_B] = ACTIONS(355), + [anon_sym_kb] = ACTIONS(355), + [anon_sym_kB] = ACTIONS(355), + [anon_sym_Kb] = ACTIONS(355), + [anon_sym_KB] = ACTIONS(355), + [anon_sym_mb] = ACTIONS(355), + [anon_sym_mB] = ACTIONS(355), + [anon_sym_Mb] = ACTIONS(355), + [anon_sym_MB] = ACTIONS(355), + [anon_sym_gb] = ACTIONS(355), + [anon_sym_gB] = ACTIONS(355), + [anon_sym_Gb] = ACTIONS(355), + [anon_sym_GB] = ACTIONS(355), + [anon_sym_tb] = ACTIONS(355), + [anon_sym_tB] = ACTIONS(355), + [anon_sym_Tb] = ACTIONS(355), + [anon_sym_TB] = ACTIONS(355), + [anon_sym_pb] = ACTIONS(355), + [anon_sym_pB] = ACTIONS(355), + [anon_sym_Pb] = ACTIONS(355), + [anon_sym_PB] = ACTIONS(355), + [anon_sym_eb] = ACTIONS(355), + [anon_sym_eB] = ACTIONS(355), + [anon_sym_Eb] = ACTIONS(355), + [anon_sym_EB] = ACTIONS(355), + [anon_sym_zb] = ACTIONS(355), + [anon_sym_zB] = ACTIONS(355), + [anon_sym_Zb] = ACTIONS(355), + [anon_sym_ZB] = ACTIONS(355), + [anon_sym_kib] = ACTIONS(355), + [anon_sym_kiB] = ACTIONS(355), + [anon_sym_kIB] = ACTIONS(355), + [anon_sym_kIb] = ACTIONS(355), + [anon_sym_Kib] = ACTIONS(355), + [anon_sym_KIb] = ACTIONS(355), + [anon_sym_KIB] = ACTIONS(355), + [anon_sym_mib] = ACTIONS(355), + [anon_sym_miB] = ACTIONS(355), + [anon_sym_mIB] = ACTIONS(355), + [anon_sym_mIb] = ACTIONS(355), + [anon_sym_Mib] = ACTIONS(355), + [anon_sym_MIb] = ACTIONS(355), + [anon_sym_MIB] = ACTIONS(355), + [anon_sym_gib] = ACTIONS(355), + [anon_sym_giB] = ACTIONS(355), + [anon_sym_gIB] = ACTIONS(355), + [anon_sym_gIb] = ACTIONS(355), + [anon_sym_Gib] = ACTIONS(355), + [anon_sym_GIb] = ACTIONS(355), + [anon_sym_GIB] = ACTIONS(355), + [anon_sym_tib] = ACTIONS(355), + [anon_sym_tiB] = ACTIONS(355), + [anon_sym_tIB] = ACTIONS(355), + [anon_sym_tIb] = ACTIONS(355), + [anon_sym_Tib] = ACTIONS(355), + [anon_sym_TIb] = ACTIONS(355), + [anon_sym_TIB] = ACTIONS(355), + [anon_sym_pib] = ACTIONS(355), + [anon_sym_piB] = ACTIONS(355), + [anon_sym_pIB] = ACTIONS(355), + [anon_sym_pIb] = ACTIONS(355), + [anon_sym_Pib] = ACTIONS(355), + [anon_sym_PIb] = ACTIONS(355), + [anon_sym_PIB] = ACTIONS(355), + [anon_sym_eib] = ACTIONS(355), + [anon_sym_eiB] = ACTIONS(355), + [anon_sym_eIB] = ACTIONS(355), + [anon_sym_eIb] = ACTIONS(355), + [anon_sym_Eib] = ACTIONS(355), + [anon_sym_EIb] = ACTIONS(355), + [anon_sym_EIB] = ACTIONS(355), + [anon_sym_zib] = ACTIONS(355), + [anon_sym_ziB] = ACTIONS(355), + [anon_sym_zIB] = ACTIONS(355), + [anon_sym_zIb] = ACTIONS(355), + [anon_sym_Zib] = ACTIONS(355), + [anon_sym_ZIb] = ACTIONS(355), + [anon_sym_ZIB] = ACTIONS(355), [anon_sym_POUND] = ACTIONS(3), }, [129] = { [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), [anon_sym_DOT_DOT_LT] = ACTIONS(395), [anon_sym_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_EQ] = ACTIONS(395), @@ -64551,6 +65007,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [130] = { [sym_comment] = STATE(130), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(115), + [anon_sym_bit_DASHshr] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(115), + [anon_sym_starts_DASHwith] = ACTIONS(115), + [anon_sym_ends_DASHwith] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(115), + [anon_sym_bit_DASHxor] = ACTIONS(115), + [anon_sym_bit_DASHor] = ACTIONS(115), + [anon_sym_and] = ACTIONS(115), + [anon_sym_xor] = ACTIONS(115), + [anon_sym_or] = ACTIONS(115), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [anon_sym_ns] = ACTIONS(115), + [anon_sym_s] = ACTIONS(115), + [anon_sym_us] = ACTIONS(115), + [anon_sym_ms] = ACTIONS(115), + [anon_sym_sec] = ACTIONS(115), + [anon_sym_min] = ACTIONS(115), + [anon_sym_hr] = ACTIONS(115), + [anon_sym_day] = ACTIONS(115), + [anon_sym_wk] = ACTIONS(115), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(115), + [anon_sym_kb] = ACTIONS(115), + [anon_sym_kB] = ACTIONS(115), + [anon_sym_Kb] = ACTIONS(115), + [anon_sym_KB] = ACTIONS(115), + [anon_sym_mb] = ACTIONS(115), + [anon_sym_mB] = ACTIONS(115), + [anon_sym_Mb] = ACTIONS(115), + [anon_sym_MB] = ACTIONS(115), + [anon_sym_gb] = ACTIONS(115), + [anon_sym_gB] = ACTIONS(115), + [anon_sym_Gb] = ACTIONS(115), + [anon_sym_GB] = ACTIONS(115), + [anon_sym_tb] = ACTIONS(115), + [anon_sym_tB] = ACTIONS(115), + [anon_sym_Tb] = ACTIONS(115), + [anon_sym_TB] = ACTIONS(115), + [anon_sym_pb] = ACTIONS(115), + [anon_sym_pB] = ACTIONS(115), + [anon_sym_Pb] = ACTIONS(115), + [anon_sym_PB] = ACTIONS(115), + [anon_sym_eb] = ACTIONS(115), + [anon_sym_eB] = ACTIONS(115), + [anon_sym_Eb] = ACTIONS(115), + [anon_sym_EB] = ACTIONS(115), + [anon_sym_zb] = ACTIONS(115), + [anon_sym_zB] = ACTIONS(115), + [anon_sym_Zb] = ACTIONS(115), + [anon_sym_ZB] = ACTIONS(115), + [anon_sym_kib] = ACTIONS(115), + [anon_sym_kiB] = ACTIONS(115), + [anon_sym_kIB] = ACTIONS(115), + [anon_sym_kIb] = ACTIONS(115), + [anon_sym_Kib] = ACTIONS(115), + [anon_sym_KIb] = ACTIONS(115), + [anon_sym_KIB] = ACTIONS(115), + [anon_sym_mib] = ACTIONS(115), + [anon_sym_miB] = ACTIONS(115), + [anon_sym_mIB] = ACTIONS(115), + [anon_sym_mIb] = ACTIONS(115), + [anon_sym_Mib] = ACTIONS(115), + [anon_sym_MIb] = ACTIONS(115), + [anon_sym_MIB] = ACTIONS(115), + [anon_sym_gib] = ACTIONS(115), + [anon_sym_giB] = ACTIONS(115), + [anon_sym_gIB] = ACTIONS(115), + [anon_sym_gIb] = ACTIONS(115), + [anon_sym_Gib] = ACTIONS(115), + [anon_sym_GIb] = ACTIONS(115), + [anon_sym_GIB] = ACTIONS(115), + [anon_sym_tib] = ACTIONS(115), + [anon_sym_tiB] = ACTIONS(115), + [anon_sym_tIB] = ACTIONS(115), + [anon_sym_tIb] = ACTIONS(115), + [anon_sym_Tib] = ACTIONS(115), + [anon_sym_TIb] = ACTIONS(115), + [anon_sym_TIB] = ACTIONS(115), + [anon_sym_pib] = ACTIONS(115), + [anon_sym_piB] = ACTIONS(115), + [anon_sym_pIB] = ACTIONS(115), + [anon_sym_pIb] = ACTIONS(115), + [anon_sym_Pib] = ACTIONS(115), + [anon_sym_PIb] = ACTIONS(115), + [anon_sym_PIB] = ACTIONS(115), + [anon_sym_eib] = ACTIONS(115), + [anon_sym_eiB] = ACTIONS(115), + [anon_sym_eIB] = ACTIONS(115), + [anon_sym_eIb] = ACTIONS(115), + [anon_sym_Eib] = ACTIONS(115), + [anon_sym_EIb] = ACTIONS(115), + [anon_sym_EIB] = ACTIONS(115), + [anon_sym_zib] = ACTIONS(115), + [anon_sym_ziB] = ACTIONS(115), + [anon_sym_zIB] = ACTIONS(115), + [anon_sym_zIb] = ACTIONS(115), + [anon_sym_Zib] = ACTIONS(115), + [anon_sym_ZIb] = ACTIONS(115), + [anon_sym_ZIB] = ACTIONS(115), + [sym_short_flag] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(157), + }, + [131] = { + [sym_comment] = STATE(131), [anon_sym_GT] = ACTIONS(103), [anon_sym_DASH_DASH] = ACTIONS(105), [anon_sym_DASH] = ACTIONS(103), @@ -64581,132 +65163,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(105), [anon_sym_xor] = ACTIONS(105), [anon_sym_or] = ACTIONS(105), - [anon_sym_DOT_DOT_LT] = ACTIONS(105), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(105), - [anon_sym_ns] = ACTIONS(105), - [anon_sym_s] = ACTIONS(105), - [anon_sym_us] = ACTIONS(105), - [anon_sym_ms] = ACTIONS(105), - [anon_sym_sec] = ACTIONS(105), - [anon_sym_min] = ACTIONS(105), - [anon_sym_hr] = ACTIONS(105), - [anon_sym_day] = ACTIONS(105), - [anon_sym_wk] = ACTIONS(105), - [anon_sym_b] = ACTIONS(103), - [anon_sym_B] = ACTIONS(105), - [anon_sym_kb] = ACTIONS(105), - [anon_sym_kB] = ACTIONS(105), - [anon_sym_Kb] = ACTIONS(105), - [anon_sym_KB] = ACTIONS(105), - [anon_sym_mb] = ACTIONS(105), - [anon_sym_mB] = ACTIONS(105), - [anon_sym_Mb] = ACTIONS(105), - [anon_sym_MB] = ACTIONS(105), - [anon_sym_gb] = ACTIONS(105), - [anon_sym_gB] = ACTIONS(105), - [anon_sym_Gb] = ACTIONS(105), - [anon_sym_GB] = ACTIONS(105), - [anon_sym_tb] = ACTIONS(105), - [anon_sym_tB] = ACTIONS(105), - [anon_sym_Tb] = ACTIONS(105), - [anon_sym_TB] = ACTIONS(105), - [anon_sym_pb] = ACTIONS(105), - [anon_sym_pB] = ACTIONS(105), - [anon_sym_Pb] = ACTIONS(105), - [anon_sym_PB] = ACTIONS(105), - [anon_sym_eb] = ACTIONS(105), - [anon_sym_eB] = ACTIONS(105), - [anon_sym_Eb] = ACTIONS(105), - [anon_sym_EB] = ACTIONS(105), - [anon_sym_zb] = ACTIONS(105), - [anon_sym_zB] = ACTIONS(105), - [anon_sym_Zb] = ACTIONS(105), - [anon_sym_ZB] = ACTIONS(105), - [anon_sym_kib] = ACTIONS(105), - [anon_sym_kiB] = ACTIONS(105), - [anon_sym_kIB] = ACTIONS(105), - [anon_sym_kIb] = ACTIONS(105), - [anon_sym_Kib] = ACTIONS(105), - [anon_sym_KIb] = ACTIONS(105), - [anon_sym_KIB] = ACTIONS(105), - [anon_sym_mib] = ACTIONS(105), - [anon_sym_miB] = ACTIONS(105), - [anon_sym_mIB] = ACTIONS(105), - [anon_sym_mIb] = ACTIONS(105), - [anon_sym_Mib] = ACTIONS(105), - [anon_sym_MIb] = ACTIONS(105), - [anon_sym_MIB] = ACTIONS(105), - [anon_sym_gib] = ACTIONS(105), - [anon_sym_giB] = ACTIONS(105), - [anon_sym_gIB] = ACTIONS(105), - [anon_sym_gIb] = ACTIONS(105), - [anon_sym_Gib] = ACTIONS(105), - [anon_sym_GIb] = ACTIONS(105), - [anon_sym_GIB] = ACTIONS(105), - [anon_sym_tib] = ACTIONS(105), - [anon_sym_tiB] = ACTIONS(105), - [anon_sym_tIB] = ACTIONS(105), - [anon_sym_tIb] = ACTIONS(105), - [anon_sym_Tib] = ACTIONS(105), - [anon_sym_TIb] = ACTIONS(105), - [anon_sym_TIB] = ACTIONS(105), - [anon_sym_pib] = ACTIONS(105), - [anon_sym_piB] = ACTIONS(105), - [anon_sym_pIB] = ACTIONS(105), - [anon_sym_pIb] = ACTIONS(105), - [anon_sym_Pib] = ACTIONS(105), - [anon_sym_PIb] = ACTIONS(105), - [anon_sym_PIB] = ACTIONS(105), - [anon_sym_eib] = ACTIONS(105), - [anon_sym_eiB] = ACTIONS(105), - [anon_sym_eIB] = ACTIONS(105), - [anon_sym_eIb] = ACTIONS(105), - [anon_sym_Eib] = ACTIONS(105), - [anon_sym_EIb] = ACTIONS(105), - [anon_sym_EIB] = ACTIONS(105), - [anon_sym_zib] = ACTIONS(105), - [anon_sym_ziB] = ACTIONS(105), - [anon_sym_zIB] = ACTIONS(105), - [anon_sym_zIb] = ACTIONS(105), - [anon_sym_Zib] = ACTIONS(105), - [anon_sym_ZIb] = ACTIONS(105), - [anon_sym_ZIB] = ACTIONS(105), - [sym_short_flag] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(147), - }, - [131] = { - [sym_comment] = STATE(131), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(109), - [anon_sym_PLUS_PLUS] = ACTIONS(109), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(109), - [anon_sym_SLASH_SLASH] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(109), - [anon_sym_bit_DASHshr] = ACTIONS(109), - [anon_sym_EQ_EQ] = ACTIONS(109), - [anon_sym_BANG_EQ] = ACTIONS(109), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(109), - [anon_sym_not_DASHin] = ACTIONS(109), - [anon_sym_starts_DASHwith] = ACTIONS(109), - [anon_sym_ends_DASHwith] = ACTIONS(109), - [anon_sym_EQ_TILDE] = ACTIONS(109), - [anon_sym_BANG_TILDE] = ACTIONS(109), - [anon_sym_bit_DASHand] = ACTIONS(109), - [anon_sym_bit_DASHxor] = ACTIONS(109), - [anon_sym_bit_DASHor] = ACTIONS(109), - [anon_sym_and] = ACTIONS(109), - [anon_sym_xor] = ACTIONS(109), - [anon_sym_or] = ACTIONS(109), [anon_sym_DOT_DOT_LT] = ACTIONS(713), [anon_sym_DOT_DOT] = ACTIONS(715), [anon_sym_DOT_DOT_EQ] = ACTIONS(713), @@ -64798,13 +65254,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(721), [anon_sym_ZIb] = ACTIONS(721), [anon_sym_ZIB] = ACTIONS(721), - [sym_short_flag] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(147), + [sym_short_flag] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(157), }, [132] = { - [sym_cell_path] = STATE(222), - [sym_path] = STATE(138), + [sym_path] = STATE(191), [sym_comment] = STATE(132), + [aux_sym_cell_path_repeat1] = STATE(132), [anon_sym_export] = ACTIONS(723), [anon_sym_alias] = ACTIONS(723), [anon_sym_let] = ACTIONS(723), @@ -64904,824 +65360,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [133] = { - [sym_cell_path] = STATE(245), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(199), + [sym_path] = STATE(139), [sym_comment] = STATE(133), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), + [anon_sym_export] = ACTIONS(730), + [anon_sym_alias] = ACTIONS(730), + [anon_sym_let] = ACTIONS(730), + [anon_sym_let_DASHenv] = ACTIONS(730), + [anon_sym_mut] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(730), + [sym_cmd_identifier] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_def] = ACTIONS(730), + [anon_sym_def_DASHenv] = ACTIONS(730), + [anon_sym_export_DASHenv] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_module] = ACTIONS(730), + [anon_sym_use] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_error] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_loop] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_match] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_source] = ACTIONS(730), + [anon_sym_source_DASHenv] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_hide] = ACTIONS(730), + [anon_sym_hide_DASHenv] = ACTIONS(730), + [anon_sym_overlay] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_where] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_not] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(730), + [sym_short_flag] = ACTIONS(730), [anon_sym_POUND] = ACTIONS(3), }, [134] = { - [sym_cell_path] = STATE(212), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(207), + [sym_path] = STATE(139), [sym_comment] = STATE(134), - [anon_sym_export] = ACTIONS(733), - [anon_sym_alias] = ACTIONS(733), - [anon_sym_let] = ACTIONS(733), - [anon_sym_let_DASHenv] = ACTIONS(733), - [anon_sym_mut] = ACTIONS(733), - [anon_sym_const] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [sym_cmd_identifier] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_def] = ACTIONS(733), - [anon_sym_def_DASHenv] = ACTIONS(733), - [anon_sym_export_DASHenv] = ACTIONS(733), - [anon_sym_extern] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_use] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_error] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_loop] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_match] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_source] = ACTIONS(733), - [anon_sym_source_DASHenv] = ACTIONS(733), - [anon_sym_register] = ACTIONS(733), - [anon_sym_hide] = ACTIONS(733), - [anon_sym_hide_DASHenv] = ACTIONS(733), - [anon_sym_overlay] = ACTIONS(733), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_where] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_not] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_CARET] = ACTIONS(733), - [sym_short_flag] = ACTIONS(733), + [anon_sym_export] = ACTIONS(736), + [anon_sym_alias] = ACTIONS(736), + [anon_sym_let] = ACTIONS(736), + [anon_sym_let_DASHenv] = ACTIONS(736), + [anon_sym_mut] = ACTIONS(736), + [anon_sym_const] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [sym_cmd_identifier] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_def] = ACTIONS(736), + [anon_sym_def_DASHenv] = ACTIONS(736), + [anon_sym_export_DASHenv] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_use] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_error] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_loop] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_source] = ACTIONS(736), + [anon_sym_source_DASHenv] = ACTIONS(736), + [anon_sym_register] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_hide_DASHenv] = ACTIONS(736), + [anon_sym_overlay] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_where] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [sym_short_flag] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, [135] = { - [sym_cell_path] = STATE(231), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(200), + [sym_path] = STATE(139), [sym_comment] = STATE(135), - [anon_sym_export] = ACTIONS(737), - [anon_sym_alias] = ACTIONS(737), - [anon_sym_let] = ACTIONS(737), - [anon_sym_let_DASHenv] = ACTIONS(737), - [anon_sym_mut] = ACTIONS(737), - [anon_sym_const] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [sym_cmd_identifier] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_def] = ACTIONS(737), - [anon_sym_def_DASHenv] = ACTIONS(737), - [anon_sym_export_DASHenv] = ACTIONS(737), - [anon_sym_extern] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_use] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_error] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_loop] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_match] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_source] = ACTIONS(737), - [anon_sym_source_DASHenv] = ACTIONS(737), - [anon_sym_register] = ACTIONS(737), - [anon_sym_hide] = ACTIONS(737), - [anon_sym_hide_DASHenv] = ACTIONS(737), - [anon_sym_overlay] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_where] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_not] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(737), - [sym_short_flag] = ACTIONS(737), + [anon_sym_export] = ACTIONS(740), + [anon_sym_alias] = ACTIONS(740), + [anon_sym_let] = ACTIONS(740), + [anon_sym_let_DASHenv] = ACTIONS(740), + [anon_sym_mut] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_def] = ACTIONS(740), + [anon_sym_def_DASHenv] = ACTIONS(740), + [anon_sym_export_DASHenv] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_use] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_error] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_loop] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_source] = ACTIONS(740), + [anon_sym_source_DASHenv] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_hide_DASHenv] = ACTIONS(740), + [anon_sym_overlay] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_where] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, [136] = { - [sym_cell_path] = STATE(230), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(197), + [sym_path] = STATE(139), [sym_comment] = STATE(136), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH_DASH] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [sym_short_flag] = ACTIONS(741), + [anon_sym_export] = ACTIONS(744), + [anon_sym_alias] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_let_DASHenv] = ACTIONS(744), + [anon_sym_mut] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_def] = ACTIONS(744), + [anon_sym_def_DASHenv] = ACTIONS(744), + [anon_sym_export_DASHenv] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_error] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_source] = ACTIONS(744), + [anon_sym_source_DASHenv] = ACTIONS(744), + [anon_sym_register] = ACTIONS(744), + [anon_sym_hide] = ACTIONS(744), + [anon_sym_hide_DASHenv] = ACTIONS(744), + [anon_sym_overlay] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [sym_short_flag] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, [137] = { - [sym_path] = STATE(180), + [sym_cell_path] = STATE(235), + [sym_path] = STATE(139), [sym_comment] = STATE(137), - [aux_sym_cell_path_repeat1] = STATE(140), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), + [anon_sym_export] = ACTIONS(748), + [anon_sym_alias] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_let_DASHenv] = ACTIONS(748), + [anon_sym_mut] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(748), + [sym_cmd_identifier] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_def] = ACTIONS(748), + [anon_sym_def_DASHenv] = ACTIONS(748), + [anon_sym_export_DASHenv] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_error] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_source] = ACTIONS(748), + [anon_sym_source_DASHenv] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_hide] = ACTIONS(748), + [anon_sym_hide_DASHenv] = ACTIONS(748), + [anon_sym_overlay] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_not] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [sym_short_flag] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, [138] = { - [sym_path] = STATE(180), + [sym_path] = STATE(191), [sym_comment] = STATE(138), - [aux_sym_cell_path_repeat1] = STATE(137), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), + [aux_sym_cell_path_repeat1] = STATE(132), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, [139] = { - [sym_cell_path] = STATE(221), - [sym_path] = STATE(138), + [sym_path] = STATE(191), [sym_comment] = STATE(139), - [anon_sym_export] = ACTIONS(753), - [anon_sym_alias] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_let_DASHenv] = ACTIONS(753), - [anon_sym_mut] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [sym_cmd_identifier] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_def] = ACTIONS(753), - [anon_sym_def_DASHenv] = ACTIONS(753), - [anon_sym_export_DASHenv] = ACTIONS(753), - [anon_sym_extern] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_error] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(727), - [anon_sym_try] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_source] = ACTIONS(753), - [anon_sym_source_DASHenv] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_hide] = ACTIONS(753), - [anon_sym_hide_DASHenv] = ACTIONS(753), - [anon_sym_overlay] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_not] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [sym_short_flag] = ACTIONS(753), + [aux_sym_cell_path_repeat1] = STATE(138), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), [anon_sym_POUND] = ACTIONS(3), }, [140] = { - [sym_path] = STATE(180), + [sym_cell_path] = STATE(225), + [sym_path] = STATE(139), [sym_comment] = STATE(140), - [aux_sym_cell_path_repeat1] = STATE(140), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(761), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [sym_short_flag] = ACTIONS(760), [anon_sym_POUND] = ACTIONS(3), }, [141] = { - [sym_cell_path] = STATE(197), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(244), + [sym_path] = STATE(139), [sym_comment] = STATE(141), [anon_sym_export] = ACTIONS(764), [anon_sym_alias] = ACTIONS(764), @@ -65758,7 +66214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(764), [anon_sym_LBRACE] = ACTIONS(764), [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(734), [anon_sym_try] = ACTIONS(764), [anon_sym_return] = ACTIONS(764), [anon_sym_source] = ACTIONS(764), @@ -65822,8 +66278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [142] = { - [sym_cell_path] = STATE(248), - [sym_path] = STATE(138), + [sym_cell_path] = STATE(214), + [sym_path] = STATE(139), [sym_comment] = STATE(142), [anon_sym_export] = ACTIONS(768), [anon_sym_alias] = ACTIONS(768), @@ -65860,7 +66316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(768), [anon_sym_LBRACE] = ACTIONS(768), [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(734), [anon_sym_try] = ACTIONS(768), [anon_sym_return] = ACTIONS(768), [anon_sym_source] = ACTIONS(768), @@ -65924,8 +66380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [143] = { - [sym__flag] = STATE(622), - [sym_long_flag] = STATE(707), [sym_comment] = STATE(143), [anon_sym_export] = ACTIONS(772), [anon_sym_alias] = ACTIONS(772), @@ -65948,13 +66402,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(772), [anon_sym_DOLLAR] = ACTIONS(772), [anon_sym_error] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), [anon_sym_break] = ACTIONS(772), [anon_sym_continue] = ACTIONS(772), [anon_sym_for] = ACTIONS(772), - [anon_sym_in] = ACTIONS(782), + [anon_sym_in] = ACTIONS(772), [anon_sym_loop] = ACTIONS(772), [anon_sym_while] = ACTIONS(772), [anon_sym_do] = ACTIONS(772), @@ -65962,6 +66416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(772), [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), [anon_sym_try] = ACTIONS(772), [anon_sym_return] = ACTIONS(772), [anon_sym_source] = ACTIONS(772), @@ -65970,32 +66425,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(772), [anon_sym_hide_DASHenv] = ACTIONS(772), [anon_sym_overlay] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(772), [anon_sym_where] = ACTIONS(772), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), + [anon_sym_QMARK2] = ACTIONS(776), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), [anon_sym_not] = ACTIONS(772), [anon_sym_DOT_DOT_LT] = ACTIONS(772), [anon_sym_DOT_DOT] = ACTIONS(772), @@ -66021,897 +66477,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(804), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, [144] = { - [sym_expr_parenthesized] = STATE(219), - [sym_val_number] = STATE(219), + [sym_cell_path] = STATE(310), + [sym_path] = STATE(167), [sym_comment] = STATE(144), - [anon_sym_export] = ACTIONS(806), - [anon_sym_alias] = ACTIONS(806), - [anon_sym_let] = ACTIONS(806), - [anon_sym_let_DASHenv] = ACTIONS(806), - [anon_sym_mut] = ACTIONS(806), - [anon_sym_const] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [sym_cmd_identifier] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_def] = ACTIONS(806), - [anon_sym_def_DASHenv] = ACTIONS(806), - [anon_sym_export_DASHenv] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_use] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_error] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_match] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_source] = ACTIONS(806), - [anon_sym_source_DASHenv] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_hide] = ACTIONS(806), - [anon_sym_hide_DASHenv] = ACTIONS(806), - [anon_sym_overlay] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_where] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_not] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [aux_sym_val_number_token1] = ACTIONS(812), - [aux_sym_val_number_token2] = ACTIONS(812), - [aux_sym_val_number_token3] = ACTIONS(812), - [aux_sym_val_number_token4] = ACTIONS(812), - [aux_sym_val_number_token5] = ACTIONS(812), - [anon_sym_inf] = ACTIONS(812), - [anon_sym_DASHinf] = ACTIONS(812), - [anon_sym_NaN] = ACTIONS(812), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [sym_short_flag] = ACTIONS(806), + [ts_builtin_sym_end] = ACTIONS(770), + [anon_sym_export] = ACTIONS(768), + [anon_sym_alias] = ACTIONS(768), + [anon_sym_let] = ACTIONS(768), + [anon_sym_let_DASHenv] = ACTIONS(768), + [anon_sym_mut] = ACTIONS(768), + [anon_sym_const] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [sym_cmd_identifier] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_def] = ACTIONS(768), + [anon_sym_def_DASHenv] = ACTIONS(768), + [anon_sym_export_DASHenv] = ACTIONS(768), + [anon_sym_extern] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_use] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_error] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_in] = ACTIONS(768), + [anon_sym_loop] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_match] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_source] = ACTIONS(768), + [anon_sym_source_DASHenv] = ACTIONS(768), + [anon_sym_register] = ACTIONS(768), + [anon_sym_hide] = ACTIONS(768), + [anon_sym_hide_DASHenv] = ACTIONS(768), + [anon_sym_overlay] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_where] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_mod] = ACTIONS(768), + [anon_sym_SLASH_SLASH] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_bit_DASHshl] = ACTIONS(768), + [anon_sym_bit_DASHshr] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT2] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_not_DASHin] = ACTIONS(768), + [anon_sym_starts_DASHwith] = ACTIONS(768), + [anon_sym_ends_DASHwith] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(768), + [anon_sym_BANG_TILDE] = ACTIONS(768), + [anon_sym_bit_DASHand] = ACTIONS(768), + [anon_sym_bit_DASHxor] = ACTIONS(768), + [anon_sym_bit_DASHor] = ACTIONS(768), + [anon_sym_and] = ACTIONS(768), + [anon_sym_xor] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_not] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [sym_short_flag] = ACTIONS(768), [anon_sym_POUND] = ACTIONS(3), }, [145] = { - [sym_cell_path] = STATE(293), - [sym_path] = STATE(157), [sym_comment] = STATE(145), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, [146] = { - [sym__flag] = STATE(629), - [sym_long_flag] = STATE(707), + [sym_cell_path] = STATE(311), + [sym_path] = STATE(167), [sym_comment] = STATE(146), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(816), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(804), + [ts_builtin_sym_end] = ACTIONS(738), + [anon_sym_export] = ACTIONS(736), + [anon_sym_alias] = ACTIONS(736), + [anon_sym_let] = ACTIONS(736), + [anon_sym_let_DASHenv] = ACTIONS(736), + [anon_sym_mut] = ACTIONS(736), + [anon_sym_const] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [sym_cmd_identifier] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_def] = ACTIONS(736), + [anon_sym_def_DASHenv] = ACTIONS(736), + [anon_sym_export_DASHenv] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_use] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_error] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_loop] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_source] = ACTIONS(736), + [anon_sym_source_DASHenv] = ACTIONS(736), + [anon_sym_register] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_hide_DASHenv] = ACTIONS(736), + [anon_sym_overlay] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_where] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [sym_short_flag] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, [147] = { - [sym__flag] = STATE(591), - [sym_long_flag] = STATE(707), [sym_comment] = STATE(147), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), [anon_sym_SLASH] = ACTIONS(784), [anon_sym_mod] = ACTIONS(784), [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, [148] = { - [sym__flag] = STATE(584), - [sym_long_flag] = STATE(707), + [sym__flag] = STATE(683), + [sym_long_flag] = STATE(798), [sym_comment] = STATE(148), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(804), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(788), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, [149] = { - [sym__flag] = STATE(640), - [sym_long_flag] = STATE(707), + [sym__flag] = STATE(671), + [sym_long_flag] = STATE(798), [sym_comment] = STATE(149), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(828), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, [150] = { - [sym_cell_path] = STATE(297), - [sym_path] = STATE(157), + [sym_expr_parenthesized] = STATE(201), + [sym_val_number] = STATE(201), [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(739), - [anon_sym_export] = ACTIONS(737), - [anon_sym_alias] = ACTIONS(737), - [anon_sym_let] = ACTIONS(737), - [anon_sym_let_DASHenv] = ACTIONS(737), - [anon_sym_mut] = ACTIONS(737), - [anon_sym_const] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [sym_cmd_identifier] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_def] = ACTIONS(737), - [anon_sym_def_DASHenv] = ACTIONS(737), - [anon_sym_export_DASHenv] = ACTIONS(737), - [anon_sym_extern] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_use] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_error] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_loop] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_match] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_source] = ACTIONS(737), - [anon_sym_source_DASHenv] = ACTIONS(737), - [anon_sym_register] = ACTIONS(737), - [anon_sym_hide] = ACTIONS(737), - [anon_sym_hide_DASHenv] = ACTIONS(737), - [anon_sym_overlay] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_where] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_not] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(737), - [sym_short_flag] = ACTIONS(737), - [anon_sym_POUND] = ACTIONS(3), - }, - [151] = { - [sym_cell_path] = STATE(263), - [sym_path] = STATE(157), - [sym_comment] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(725), - [anon_sym_export] = ACTIONS(723), - [anon_sym_alias] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_let_DASHenv] = ACTIONS(723), - [anon_sym_mut] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(723), - [sym_cmd_identifier] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_def] = ACTIONS(723), - [anon_sym_def_DASHenv] = ACTIONS(723), - [anon_sym_export_DASHenv] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_module] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_error] = ACTIONS(723), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_in] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_source] = ACTIONS(723), - [anon_sym_source_DASHenv] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_hide] = ACTIONS(723), - [anon_sym_hide_DASHenv] = ACTIONS(723), - [anon_sym_overlay] = ACTIONS(723), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_where] = ACTIONS(723), - [anon_sym_STAR_STAR] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_SLASH_SLASH] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_bit_DASHshl] = ACTIONS(723), - [anon_sym_bit_DASHshr] = ACTIONS(723), - [anon_sym_EQ_EQ] = ACTIONS(723), - [anon_sym_BANG_EQ] = ACTIONS(723), - [anon_sym_LT2] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_not_DASHin] = ACTIONS(723), - [anon_sym_starts_DASHwith] = ACTIONS(723), - [anon_sym_ends_DASHwith] = ACTIONS(723), - [anon_sym_EQ_TILDE] = ACTIONS(723), - [anon_sym_BANG_TILDE] = ACTIONS(723), - [anon_sym_bit_DASHand] = ACTIONS(723), - [anon_sym_bit_DASHxor] = ACTIONS(723), - [anon_sym_bit_DASHor] = ACTIONS(723), - [anon_sym_and] = ACTIONS(723), - [anon_sym_xor] = ACTIONS(723), - [anon_sym_or] = ACTIONS(723), - [anon_sym_not] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), - [sym_short_flag] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(3), - }, - [152] = { - [sym__flag] = STATE(579), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(152), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(832), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), + [anon_sym_export] = ACTIONS(826), + [anon_sym_alias] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_let_DASHenv] = ACTIONS(826), + [anon_sym_mut] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [sym_cmd_identifier] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_def] = ACTIONS(826), + [anon_sym_def_DASHenv] = ACTIONS(826), + [anon_sym_export_DASHenv] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_error] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_source] = ACTIONS(826), + [anon_sym_source_DASHenv] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_hide] = ACTIONS(826), + [anon_sym_hide_DASHenv] = ACTIONS(826), + [anon_sym_overlay] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_where] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_not] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), [aux_sym_val_number_token1] = ACTIONS(832), [aux_sym_val_number_token2] = ACTIONS(832), [aux_sym_val_number_token3] = ACTIONS(832), @@ -66920,121 +67174,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(832), [anon_sym_DASHinf] = ACTIONS(832), [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(804), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [sym_short_flag] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(3), + }, + [151] = { + [sym__flag] = STATE(666), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(151), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(834), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [152] = { + [sym__flag] = STATE(688), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(152), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, [153] = { + [sym_cell_path] = STATE(329), + [sym_path] = STATE(167), [sym_comment] = STATE(153), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(840), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_in] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_mod] = ACTIONS(764), + [anon_sym_SLASH_SLASH] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_bit_DASHshl] = ACTIONS(764), + [anon_sym_bit_DASHshr] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT2] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_not_DASHin] = ACTIONS(764), + [anon_sym_starts_DASHwith] = ACTIONS(764), + [anon_sym_ends_DASHwith] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(764), + [anon_sym_BANG_TILDE] = ACTIONS(764), + [anon_sym_bit_DASHand] = ACTIONS(764), + [anon_sym_bit_DASHxor] = ACTIONS(764), + [anon_sym_bit_DASHor] = ACTIONS(764), + [anon_sym_and] = ACTIONS(764), + [anon_sym_xor] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [sym_short_flag] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, [154] = { + [sym__flag] = STATE(657), + [sym_long_flag] = STATE(798), [sym_comment] = STATE(154), [anon_sym_export] = ACTIONS(842), [anon_sym_alias] = ACTIONS(842), @@ -67057,13 +67515,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(842), [anon_sym_DOLLAR] = ACTIONS(842), [anon_sym_error] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(842), [anon_sym_continue] = ACTIONS(842), [anon_sym_for] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), + [anon_sym_in] = ACTIONS(798), [anon_sym_loop] = ACTIONS(842), [anon_sym_while] = ACTIONS(842), [anon_sym_do] = ACTIONS(842), @@ -67071,7 +67529,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(842), [anon_sym_LBRACE] = ACTIONS(842), [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), [anon_sym_try] = ACTIONS(842), [anon_sym_return] = ACTIONS(842), [anon_sym_source] = ACTIONS(842), @@ -67080,33 +67537,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(842), [anon_sym_hide_DASHenv] = ACTIONS(842), [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), [anon_sym_not] = ACTIONS(842), [anon_sym_DOT_DOT_LT] = ACTIONS(842), [anon_sym_DOT_DOT] = ACTIONS(842), @@ -67132,11 +67588,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), [anon_sym_CARET] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, [155] = { + [sym_cell_path] = STATE(299), + [sym_path] = STATE(167), [sym_comment] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [sym_short_flag] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(3), + }, + [156] = { + [sym_cell_path] = STATE(278), + [sym_path] = STATE(167), + [sym_comment] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(732), + [anon_sym_export] = ACTIONS(730), + [anon_sym_alias] = ACTIONS(730), + [anon_sym_let] = ACTIONS(730), + [anon_sym_let_DASHenv] = ACTIONS(730), + [anon_sym_mut] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(730), + [sym_cmd_identifier] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_def] = ACTIONS(730), + [anon_sym_def_DASHenv] = ACTIONS(730), + [anon_sym_export_DASHenv] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_module] = ACTIONS(730), + [anon_sym_use] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_error] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_loop] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_match] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_source] = ACTIONS(730), + [anon_sym_source_DASHenv] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_hide] = ACTIONS(730), + [anon_sym_hide_DASHenv] = ACTIONS(730), + [anon_sym_overlay] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_where] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_not] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(730), + [sym_short_flag] = ACTIONS(730), + [anon_sym_POUND] = ACTIONS(3), + }, + [157] = { + [sym__flag] = STATE(687), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(157), [anon_sym_export] = ACTIONS(846), [anon_sym_alias] = ACTIONS(846), [anon_sym_let] = ACTIONS(846), @@ -67158,13 +67818,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(846), [anon_sym_DOLLAR] = ACTIONS(846), [anon_sym_error] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(846), [anon_sym_continue] = ACTIONS(846), [anon_sym_for] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), + [anon_sym_in] = ACTIONS(798), [anon_sym_loop] = ACTIONS(846), [anon_sym_while] = ACTIONS(846), [anon_sym_do] = ACTIONS(846), @@ -67172,7 +67832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), [anon_sym_try] = ACTIONS(846), [anon_sym_return] = ACTIONS(846), [anon_sym_source] = ACTIONS(846), @@ -67181,33 +67840,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(846), [anon_sym_hide_DASHenv] = ACTIONS(846), [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), [anon_sym_not] = ACTIONS(846), [anon_sym_DOT_DOT_LT] = ACTIONS(846), [anon_sym_DOT_DOT] = ACTIONS(846), @@ -67233,1226 +67891,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), [anon_sym_CARET] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [156] = { - [sym_cell_path] = STATE(282), - [sym_path] = STATE(157), - [sym_comment] = STATE(156), - [ts_builtin_sym_end] = ACTIONS(743), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH_DASH] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [sym_short_flag] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(3), - }, - [157] = { - [sym_path] = STATE(202), - [sym_comment] = STATE(157), - [aux_sym_cell_path_repeat1] = STATE(160), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, [158] = { - [sym_cell_path] = STATE(283), - [sym_path] = STATE(157), + [sym_cell_path] = STATE(279), + [sym_path] = STATE(167), [sym_comment] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_export] = ACTIONS(740), + [anon_sym_alias] = ACTIONS(740), + [anon_sym_let] = ACTIONS(740), + [anon_sym_let_DASHenv] = ACTIONS(740), + [anon_sym_mut] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_def] = ACTIONS(740), + [anon_sym_def_DASHenv] = ACTIONS(740), + [anon_sym_export_DASHenv] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_use] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_error] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_loop] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_source] = ACTIONS(740), + [anon_sym_source_DASHenv] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_hide_DASHenv] = ACTIONS(740), + [anon_sym_overlay] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_where] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, [159] = { - [sym__flag] = STATE(639), - [sym_long_flag] = STATE(707), [sym_comment] = STATE(159), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(850), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [160] = { - [sym_path] = STATE(202), - [sym_comment] = STATE(160), - [aux_sym_cell_path_repeat1] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - }, - [161] = { - [sym_comment] = STATE(161), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(840), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [162] = { - [sym_cell_path] = STATE(280), - [sym_path] = STATE(157), - [sym_comment] = STATE(162), - [ts_builtin_sym_end] = ACTIONS(735), - [anon_sym_export] = ACTIONS(733), - [anon_sym_alias] = ACTIONS(733), - [anon_sym_let] = ACTIONS(733), - [anon_sym_let_DASHenv] = ACTIONS(733), - [anon_sym_mut] = ACTIONS(733), - [anon_sym_const] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [sym_cmd_identifier] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_def] = ACTIONS(733), - [anon_sym_def_DASHenv] = ACTIONS(733), - [anon_sym_export_DASHenv] = ACTIONS(733), - [anon_sym_extern] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_use] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_error] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_loop] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_match] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_source] = ACTIONS(733), - [anon_sym_source_DASHenv] = ACTIONS(733), - [anon_sym_register] = ACTIONS(733), - [anon_sym_hide] = ACTIONS(733), - [anon_sym_hide_DASHenv] = ACTIONS(733), - [anon_sym_overlay] = ACTIONS(733), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_where] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_not] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_CARET] = ACTIONS(733), - [sym_short_flag] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - }, - [163] = { - [sym__flag] = STATE(615), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(163), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [164] = { - [sym__flag] = STATE(628), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(164), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [165] = { - [sym_cell_path] = STATE(257), - [sym_path] = STATE(157), - [sym_comment] = STATE(165), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [166] = { - [sym_path] = STATE(202), - [sym_comment] = STATE(166), - [aux_sym_cell_path_repeat1] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(759), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(3), - }, - [167] = { - [sym_cell_path] = STATE(298), - [sym_path] = STATE(157), - [sym_comment] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(755), - [anon_sym_export] = ACTIONS(753), - [anon_sym_alias] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_let_DASHenv] = ACTIONS(753), - [anon_sym_mut] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [sym_cmd_identifier] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_def] = ACTIONS(753), - [anon_sym_def_DASHenv] = ACTIONS(753), - [anon_sym_export_DASHenv] = ACTIONS(753), - [anon_sym_extern] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_error] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_try] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_source] = ACTIONS(753), - [anon_sym_source_DASHenv] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_hide] = ACTIONS(753), - [anon_sym_hide_DASHenv] = ACTIONS(753), - [anon_sym_overlay] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_not] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [sym_short_flag] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3), - }, - [168] = { - [sym__flag] = STATE(683), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(774), [anon_sym_export] = ACTIONS(772), [anon_sym_alias] = ACTIONS(772), [anon_sym_let] = ACTIONS(772), @@ -68470,22 +68014,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(772), [anon_sym_LBRACK] = ACTIONS(772), [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), [anon_sym_PIPE] = ACTIONS(772), [anon_sym_DOLLAR] = ACTIONS(772), [anon_sym_error] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), [anon_sym_break] = ACTIONS(772), [anon_sym_continue] = ACTIONS(772), [anon_sym_for] = ACTIONS(772), - [anon_sym_in] = ACTIONS(871), + [anon_sym_in] = ACTIONS(772), [anon_sym_loop] = ACTIONS(772), [anon_sym_while] = ACTIONS(772), [anon_sym_do] = ACTIONS(772), [anon_sym_if] = ACTIONS(772), [anon_sym_match] = ACTIONS(772), [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), [anon_sym_try] = ACTIONS(772), [anon_sym_return] = ACTIONS(772), [anon_sym_source] = ACTIONS(772), @@ -68494,32 +68041,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(772), [anon_sym_hide_DASHenv] = ACTIONS(772), [anon_sym_overlay] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(772), [anon_sym_where] = ACTIONS(772), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), + [anon_sym_QMARK2] = ACTIONS(776), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), [anon_sym_not] = ACTIONS(772), [anon_sym_DOT_DOT_LT] = ACTIONS(772), [anon_sym_DOT_DOT] = ACTIONS(772), @@ -68545,914 +68093,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [169] = { - [sym_cell_path] = STATE(350), - [sym_path] = STATE(173), - [sym_comment] = STATE(169), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(3), - }, - [170] = { - [sym_expr_parenthesized] = STATE(302), - [sym_val_number] = STATE(302), - [sym_comment] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(808), - [anon_sym_export] = ACTIONS(806), - [anon_sym_alias] = ACTIONS(806), - [anon_sym_let] = ACTIONS(806), - [anon_sym_let_DASHenv] = ACTIONS(806), - [anon_sym_mut] = ACTIONS(806), - [anon_sym_const] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [sym_cmd_identifier] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_def] = ACTIONS(806), - [anon_sym_def_DASHenv] = ACTIONS(806), - [anon_sym_export_DASHenv] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_use] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_error] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_match] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_source] = ACTIONS(806), - [anon_sym_source_DASHenv] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_hide] = ACTIONS(806), - [anon_sym_hide_DASHenv] = ACTIONS(806), - [anon_sym_overlay] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_where] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_not] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [aux_sym_val_number_token1] = ACTIONS(899), - [aux_sym_val_number_token2] = ACTIONS(899), - [aux_sym_val_number_token3] = ACTIONS(899), - [aux_sym_val_number_token4] = ACTIONS(899), - [aux_sym_val_number_token5] = ACTIONS(899), - [anon_sym_inf] = ACTIONS(899), - [anon_sym_DASHinf] = ACTIONS(899), - [anon_sym_NaN] = ACTIONS(899), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [sym_short_flag] = ACTIONS(806), - [anon_sym_POUND] = ACTIONS(3), - }, - [171] = { - [sym_comment] = STATE(171), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [172] = { - [sym_cell_path] = STATE(318), - [sym_path] = STATE(173), - [sym_comment] = STATE(172), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(3), - }, - [173] = { - [sym_path] = STATE(284), - [sym_comment] = STATE(173), - [aux_sym_cell_path_repeat1] = STATE(176), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(3), - }, - [174] = { - [sym__flag] = STATE(663), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [175] = { - [sym__flag] = STATE(673), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(175), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(832), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [176] = { - [sym_path] = STATE(284), - [sym_comment] = STATE(176), - [aux_sym_cell_path_repeat1] = STATE(177), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - }, - [177] = { - [sym_path] = STATE(284), - [sym_comment] = STATE(177), - [aux_sym_cell_path_repeat1] = STATE(177), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [178] = { - [sym__flag] = STATE(680), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(178), - [ts_builtin_sym_end] = ACTIONS(852), + [160] = { + [sym__flag] = STATE(650), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(160), [anon_sym_export] = ACTIONS(850), [anon_sym_alias] = ACTIONS(850), [anon_sym_let] = ACTIONS(850), @@ -69470,22 +68117,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_PIPE] = ACTIONS(850), [anon_sym_DOLLAR] = ACTIONS(850), [anon_sym_error] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(850), [anon_sym_continue] = ACTIONS(850), [anon_sym_for] = ACTIONS(850), - [anon_sym_in] = ACTIONS(871), + [anon_sym_in] = ACTIONS(798), [anon_sym_loop] = ACTIONS(850), [anon_sym_while] = ACTIONS(850), [anon_sym_do] = ACTIONS(850), [anon_sym_if] = ACTIONS(850), [anon_sym_match] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_try] = ACTIONS(850), [anon_sym_return] = ACTIONS(850), [anon_sym_source] = ACTIONS(850), @@ -69494,32 +68143,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(850), [anon_sym_hide_DASHenv] = ACTIONS(850), [anon_sym_overlay] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(850), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), [anon_sym_not] = ACTIONS(850), [anon_sym_DOT_DOT_LT] = ACTIONS(850), [anon_sym_DOT_DOT] = ACTIONS(850), @@ -69545,514 +68194,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [179] = { - [sym_cell_path] = STATE(344), - [sym_path] = STATE(173), - [sym_comment] = STATE(179), - [anon_sym_export] = ACTIONS(733), - [anon_sym_alias] = ACTIONS(733), - [anon_sym_let] = ACTIONS(733), - [anon_sym_let_DASHenv] = ACTIONS(733), - [anon_sym_mut] = ACTIONS(733), - [anon_sym_const] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [sym_cmd_identifier] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_def] = ACTIONS(733), - [anon_sym_def_DASHenv] = ACTIONS(733), - [anon_sym_export_DASHenv] = ACTIONS(733), - [anon_sym_extern] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_use] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_error] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_loop] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_match] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_source] = ACTIONS(733), - [anon_sym_source_DASHenv] = ACTIONS(733), - [anon_sym_register] = ACTIONS(733), - [anon_sym_hide] = ACTIONS(733), - [anon_sym_hide_DASHenv] = ACTIONS(733), - [anon_sym_overlay] = ACTIONS(733), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_where] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_not] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - }, - [180] = { - [sym_comment] = STATE(180), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [181] = { - [sym_cell_path] = STATE(334), - [sym_path] = STATE(173), - [sym_comment] = STATE(181), - [anon_sym_export] = ACTIONS(737), - [anon_sym_alias] = ACTIONS(737), - [anon_sym_let] = ACTIONS(737), - [anon_sym_let_DASHenv] = ACTIONS(737), - [anon_sym_mut] = ACTIONS(737), - [anon_sym_const] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [sym_cmd_identifier] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_def] = ACTIONS(737), - [anon_sym_def_DASHenv] = ACTIONS(737), - [anon_sym_export_DASHenv] = ACTIONS(737), - [anon_sym_extern] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_use] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_error] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_loop] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_match] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_source] = ACTIONS(737), - [anon_sym_source_DASHenv] = ACTIONS(737), - [anon_sym_register] = ACTIONS(737), - [anon_sym_hide] = ACTIONS(737), - [anon_sym_hide_DASHenv] = ACTIONS(737), - [anon_sym_overlay] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_where] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_not] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(737), - [anon_sym_POUND] = ACTIONS(3), - }, - [182] = { + [161] = { [sym__flag] = STATE(676), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(818), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(816), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [183] = { - [sym_cell_path] = STATE(333), - [sym_path] = STATE(173), - [sym_comment] = STATE(183), - [anon_sym_export] = ACTIONS(753), - [anon_sym_alias] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_let_DASHenv] = ACTIONS(753), - [anon_sym_mut] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [sym_cmd_identifier] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_def] = ACTIONS(753), - [anon_sym_def_DASHenv] = ACTIONS(753), - [anon_sym_export_DASHenv] = ACTIONS(753), - [anon_sym_extern] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_error] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(895), - [anon_sym_try] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_source] = ACTIONS(753), - [anon_sym_source_DASHenv] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_hide] = ACTIONS(753), - [anon_sym_hide_DASHenv] = ACTIONS(753), - [anon_sym_overlay] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_not] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3), - }, - [184] = { - [sym__flag] = STATE(687), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(856), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(161), [anon_sym_export] = ACTIONS(854), [anon_sym_alias] = ACTIONS(854), [anon_sym_let] = ACTIONS(854), @@ -70070,22 +68218,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(854), [anon_sym_LBRACK] = ACTIONS(854), [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), [anon_sym_PIPE] = ACTIONS(854), [anon_sym_DOLLAR] = ACTIONS(854), [anon_sym_error] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(854), [anon_sym_continue] = ACTIONS(854), [anon_sym_for] = ACTIONS(854), - [anon_sym_in] = ACTIONS(871), + [anon_sym_in] = ACTIONS(798), [anon_sym_loop] = ACTIONS(854), [anon_sym_while] = ACTIONS(854), [anon_sym_do] = ACTIONS(854), [anon_sym_if] = ACTIONS(854), [anon_sym_match] = ACTIONS(854), [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), [anon_sym_try] = ACTIONS(854), [anon_sym_return] = ACTIONS(854), [anon_sym_source] = ACTIONS(854), @@ -70094,32 +68244,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(854), [anon_sym_hide_DASHenv] = ACTIONS(854), [anon_sym_overlay] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), [anon_sym_not] = ACTIONS(854), [anon_sym_DOT_DOT_LT] = ACTIONS(854), [anon_sym_DOT_DOT] = ACTIONS(854), @@ -70145,413 +68295,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [185] = { - [sym__flag] = STATE(690), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [186] = { - [sym_comment] = STATE(186), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(912), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [187] = { - [sym_comment] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(912), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [188] = { - [sym_comment] = STATE(188), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [189] = { - [sym_cell_path] = STATE(335), - [sym_path] = STATE(173), - [sym_comment] = STATE(189), + [162] = { + [sym_path] = STATE(249), + [sym_comment] = STATE(162), + [aux_sym_cell_path_repeat1] = STATE(162), + [ts_builtin_sym_end] = ACTIONS(725), [anon_sym_export] = ACTIONS(723), [anon_sym_alias] = ACTIONS(723), [anon_sym_let] = ACTIONS(723), @@ -70569,11 +68320,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(723), [anon_sym_LBRACK] = ACTIONS(723), [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_RPAREN] = ACTIONS(723), [anon_sym_PIPE] = ACTIONS(723), [anon_sym_DOLLAR] = ACTIONS(723), [anon_sym_error] = ACTIONS(723), [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), [anon_sym_DASH] = ACTIONS(723), [anon_sym_break] = ACTIONS(723), [anon_sym_continue] = ACTIONS(723), @@ -70585,8 +68336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(723), [anon_sym_match] = ACTIONS(723), [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(858), [anon_sym_try] = ACTIONS(723), [anon_sym_return] = ACTIONS(723), [anon_sym_source] = ACTIONS(723), @@ -70646,19 +68396,2025 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), [anon_sym_CARET] = ACTIONS(723), + [sym_short_flag] = ACTIONS(723), [anon_sym_POUND] = ACTIONS(3), }, - [190] = { - [sym_cell_path] = STATE(346), + [163] = { + [sym_cell_path] = STATE(283), + [sym_path] = STATE(167), + [sym_comment] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_export] = ACTIONS(748), + [anon_sym_alias] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_let_DASHenv] = ACTIONS(748), + [anon_sym_mut] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(748), + [sym_cmd_identifier] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_def] = ACTIONS(748), + [anon_sym_def_DASHenv] = ACTIONS(748), + [anon_sym_export_DASHenv] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_error] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_source] = ACTIONS(748), + [anon_sym_source_DASHenv] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_hide] = ACTIONS(748), + [anon_sym_hide_DASHenv] = ACTIONS(748), + [anon_sym_overlay] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_not] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [sym_short_flag] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3), + }, + [164] = { + [sym_path] = STATE(249), + [sym_comment] = STATE(164), + [aux_sym_cell_path_repeat1] = STATE(162), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [165] = { + [sym__flag] = STATE(678), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(165), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [166] = { + [sym_cell_path] = STATE(282), + [sym_path] = STATE(167), + [sym_comment] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_export] = ACTIONS(744), + [anon_sym_alias] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_let_DASHenv] = ACTIONS(744), + [anon_sym_mut] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_def] = ACTIONS(744), + [anon_sym_def_DASHenv] = ACTIONS(744), + [anon_sym_export_DASHenv] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_error] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_source] = ACTIONS(744), + [anon_sym_source_DASHenv] = ACTIONS(744), + [anon_sym_register] = ACTIONS(744), + [anon_sym_hide] = ACTIONS(744), + [anon_sym_hide_DASHenv] = ACTIONS(744), + [anon_sym_overlay] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [sym_short_flag] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(3), + }, + [167] = { + [sym_path] = STATE(249), + [sym_comment] = STATE(167), + [aux_sym_cell_path_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(3), + }, + [168] = { + [sym_cell_path] = STATE(344), [sym_path] = STATE(173), - [sym_comment] = STATE(190), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), + [sym_comment] = STATE(168), + [anon_sym_export] = ACTIONS(740), + [anon_sym_alias] = ACTIONS(740), + [anon_sym_let] = ACTIONS(740), + [anon_sym_let_DASHenv] = ACTIONS(740), + [anon_sym_mut] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_def] = ACTIONS(740), + [anon_sym_def_DASHenv] = ACTIONS(740), + [anon_sym_export_DASHenv] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_use] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_error] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_loop] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_source] = ACTIONS(740), + [anon_sym_source_DASHenv] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_hide_DASHenv] = ACTIONS(740), + [anon_sym_overlay] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_where] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(3), + }, + [169] = { + [sym__flag] = STATE(776), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [170] = { + [sym__flag] = STATE(774), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(842), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [171] = { + [sym_cell_path] = STATE(363), + [sym_path] = STATE(173), + [sym_comment] = STATE(171), + [anon_sym_export] = ACTIONS(736), + [anon_sym_alias] = ACTIONS(736), + [anon_sym_let] = ACTIONS(736), + [anon_sym_let_DASHenv] = ACTIONS(736), + [anon_sym_mut] = ACTIONS(736), + [anon_sym_const] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [sym_cmd_identifier] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_def] = ACTIONS(736), + [anon_sym_def_DASHenv] = ACTIONS(736), + [anon_sym_export_DASHenv] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_use] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_error] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_loop] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_source] = ACTIONS(736), + [anon_sym_source_DASHenv] = ACTIONS(736), + [anon_sym_register] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_hide_DASHenv] = ACTIONS(736), + [anon_sym_overlay] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_where] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(3), + }, + [172] = { + [sym_cell_path] = STATE(338), + [sym_path] = STATE(173), + [sym_comment] = STATE(172), + [anon_sym_export] = ACTIONS(744), + [anon_sym_alias] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_let_DASHenv] = ACTIONS(744), + [anon_sym_mut] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_def] = ACTIONS(744), + [anon_sym_def_DASHenv] = ACTIONS(744), + [anon_sym_export_DASHenv] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_error] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_source] = ACTIONS(744), + [anon_sym_source_DASHenv] = ACTIONS(744), + [anon_sym_register] = ACTIONS(744), + [anon_sym_hide] = ACTIONS(744), + [anon_sym_hide_DASHenv] = ACTIONS(744), + [anon_sym_overlay] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(3), + }, + [173] = { + [sym_path] = STATE(313), + [sym_comment] = STATE(173), + [aux_sym_cell_path_repeat1] = STATE(179), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(3), + }, + [174] = { + [sym__flag] = STATE(750), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(788), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [175] = { + [sym_cell_path] = STATE(341), + [sym_path] = STATE(173), + [sym_comment] = STATE(175), + [anon_sym_export] = ACTIONS(768), + [anon_sym_alias] = ACTIONS(768), + [anon_sym_let] = ACTIONS(768), + [anon_sym_let_DASHenv] = ACTIONS(768), + [anon_sym_mut] = ACTIONS(768), + [anon_sym_const] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [sym_cmd_identifier] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_def] = ACTIONS(768), + [anon_sym_def_DASHenv] = ACTIONS(768), + [anon_sym_export_DASHenv] = ACTIONS(768), + [anon_sym_extern] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_use] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_error] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_in] = ACTIONS(768), + [anon_sym_loop] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_match] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_source] = ACTIONS(768), + [anon_sym_source_DASHenv] = ACTIONS(768), + [anon_sym_register] = ACTIONS(768), + [anon_sym_hide] = ACTIONS(768), + [anon_sym_hide_DASHenv] = ACTIONS(768), + [anon_sym_overlay] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_where] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_mod] = ACTIONS(768), + [anon_sym_SLASH_SLASH] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_bit_DASHshl] = ACTIONS(768), + [anon_sym_bit_DASHshr] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT2] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_not_DASHin] = ACTIONS(768), + [anon_sym_starts_DASHwith] = ACTIONS(768), + [anon_sym_ends_DASHwith] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(768), + [anon_sym_BANG_TILDE] = ACTIONS(768), + [anon_sym_bit_DASHand] = ACTIONS(768), + [anon_sym_bit_DASHxor] = ACTIONS(768), + [anon_sym_bit_DASHor] = ACTIONS(768), + [anon_sym_and] = ACTIONS(768), + [anon_sym_xor] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_not] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(3), + }, + [176] = { + [sym_cell_path] = STATE(343), + [sym_path] = STATE(173), + [sym_comment] = STATE(176), + [anon_sym_export] = ACTIONS(730), + [anon_sym_alias] = ACTIONS(730), + [anon_sym_let] = ACTIONS(730), + [anon_sym_let_DASHenv] = ACTIONS(730), + [anon_sym_mut] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(730), + [sym_cmd_identifier] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_def] = ACTIONS(730), + [anon_sym_def_DASHenv] = ACTIONS(730), + [anon_sym_export_DASHenv] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_module] = ACTIONS(730), + [anon_sym_use] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_error] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_loop] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_match] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_source] = ACTIONS(730), + [anon_sym_source_DASHenv] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_hide] = ACTIONS(730), + [anon_sym_hide_DASHenv] = ACTIONS(730), + [anon_sym_overlay] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_where] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_not] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(730), + [anon_sym_POUND] = ACTIONS(3), + }, + [177] = { + [sym__flag] = STATE(773), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(177), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_def_DASHenv] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(846), + [anon_sym_DOT_DOT_LT] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [sym_val_nothing] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym_val_number_token1] = ACTIONS(846), + [aux_sym_val_number_token2] = ACTIONS(846), + [aux_sym_val_number_token3] = ACTIONS(846), + [aux_sym_val_number_token4] = ACTIONS(846), + [aux_sym_val_number_token5] = ACTIONS(846), + [anon_sym_inf] = ACTIONS(846), + [anon_sym_DASHinf] = ACTIONS(846), + [anon_sym_NaN] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [178] = { + [sym_comment] = STATE(178), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [179] = { + [sym_path] = STATE(313), + [sym_comment] = STATE(179), + [aux_sym_cell_path_repeat1] = STATE(195), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [180] = { + [sym_comment] = STATE(180), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [181] = { + [sym_comment] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(3), + }, + [182] = { + [sym__flag] = STATE(757), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [183] = { + [sym_cell_path] = STATE(340), + [sym_path] = STATE(173), + [sym_comment] = STATE(183), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), [sym_cmd_identifier] = ACTIONS(764), [anon_sym_LF] = ACTIONS(766), [anon_sym_def] = ACTIONS(764), @@ -70686,7 +70442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(764), [anon_sym_LBRACE] = ACTIONS(764), [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(865), [anon_sym_try] = ACTIONS(764), [anon_sym_return] = ACTIONS(764), [anon_sym_source] = ACTIONS(764), @@ -70748,110 +70504,2102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, + [184] = { + [sym_comment] = STATE(184), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(3), + }, + [185] = { + [sym_comment] = STATE(185), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(3), + }, + [186] = { + [sym_cell_path] = STATE(361), + [sym_path] = STATE(173), + [sym_comment] = STATE(186), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(3), + }, + [187] = { + [sym_comment] = STATE(187), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(3), + }, + [188] = { + [sym__flag] = STATE(770), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [189] = { + [sym__flag] = STATE(762), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [190] = { + [sym__flag] = STATE(767), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, [191] = { [sym_comment] = STATE(191), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), [anon_sym_POUND] = ACTIONS(3), }, [192] = { - [sym_cell_path] = STATE(352), - [sym_path] = STATE(173), + [sym_expr_parenthesized] = STATE(276), + [sym_val_number] = STATE(276), [sym_comment] = STATE(192), + [ts_builtin_sym_end] = ACTIONS(828), + [anon_sym_export] = ACTIONS(826), + [anon_sym_alias] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_let_DASHenv] = ACTIONS(826), + [anon_sym_mut] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [sym_cmd_identifier] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_def] = ACTIONS(826), + [anon_sym_def_DASHenv] = ACTIONS(826), + [anon_sym_export_DASHenv] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_error] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_source] = ACTIONS(826), + [anon_sym_source_DASHenv] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_hide] = ACTIONS(826), + [anon_sym_hide_DASHenv] = ACTIONS(826), + [anon_sym_overlay] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_where] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_not] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [sym_short_flag] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(3), + }, + [193] = { + [sym_cell_path] = STATE(336), + [sym_path] = STATE(173), + [sym_comment] = STATE(193), + [anon_sym_export] = ACTIONS(748), + [anon_sym_alias] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_let_DASHenv] = ACTIONS(748), + [anon_sym_mut] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(748), + [sym_cmd_identifier] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_def] = ACTIONS(748), + [anon_sym_def_DASHenv] = ACTIONS(748), + [anon_sym_export_DASHenv] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_error] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_try] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_source] = ACTIONS(748), + [anon_sym_source_DASHenv] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_hide] = ACTIONS(748), + [anon_sym_hide_DASHenv] = ACTIONS(748), + [anon_sym_overlay] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_not] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3), + }, + [194] = { + [sym__flag] = STATE(748), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(834), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [195] = { + [sym_path] = STATE(313), + [sym_comment] = STATE(195), + [aux_sym_cell_path_repeat1] = STATE(195), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_in] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_STAR_STAR] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_mod] = ACTIONS(723), + [anon_sym_SLASH_SLASH] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_bit_DASHshl] = ACTIONS(723), + [anon_sym_bit_DASHshr] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT2] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_not_DASHin] = ACTIONS(723), + [anon_sym_starts_DASHwith] = ACTIONS(723), + [anon_sym_ends_DASHwith] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_BANG_TILDE] = ACTIONS(723), + [anon_sym_bit_DASHand] = ACTIONS(723), + [anon_sym_bit_DASHxor] = ACTIONS(723), + [anon_sym_bit_DASHor] = ACTIONS(723), + [anon_sym_and] = ACTIONS(723), + [anon_sym_xor] = ACTIONS(723), + [anon_sym_or] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(3), + }, + [196] = { + [sym_comment] = STATE(196), + [anon_sym_export] = ACTIONS(918), + [anon_sym_alias] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_let_DASHenv] = ACTIONS(918), + [anon_sym_mut] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [sym_cmd_identifier] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_def] = ACTIONS(918), + [anon_sym_def_DASHenv] = ACTIONS(918), + [anon_sym_export_DASHenv] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_module] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_error] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_source] = ACTIONS(918), + [anon_sym_source_DASHenv] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_hide] = ACTIONS(918), + [anon_sym_hide_DASHenv] = ACTIONS(918), + [anon_sym_overlay] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_where] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_not] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), + [sym_short_flag] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(3), + }, + [197] = { + [sym_comment] = STATE(197), + [anon_sym_export] = ACTIONS(922), + [anon_sym_alias] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_let_DASHenv] = ACTIONS(922), + [anon_sym_mut] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [sym_cmd_identifier] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_def] = ACTIONS(922), + [anon_sym_def_DASHenv] = ACTIONS(922), + [anon_sym_export_DASHenv] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_module] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_source] = ACTIONS(922), + [anon_sym_source_DASHenv] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_hide_DASHenv] = ACTIONS(922), + [anon_sym_overlay] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [sym_short_flag] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(3), + }, + [198] = { + [sym_comment] = STATE(198), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(3), + }, + [199] = { + [sym_comment] = STATE(199), + [anon_sym_export] = ACTIONS(930), + [anon_sym_alias] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_let_DASHenv] = ACTIONS(930), + [anon_sym_mut] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [sym_cmd_identifier] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_def] = ACTIONS(930), + [anon_sym_def_DASHenv] = ACTIONS(930), + [anon_sym_export_DASHenv] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_use] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_error] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_source] = ACTIONS(930), + [anon_sym_source_DASHenv] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_hide_DASHenv] = ACTIONS(930), + [anon_sym_overlay] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_where] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_not] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(930), + [sym_short_flag] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(3), + }, + [200] = { + [sym_comment] = STATE(200), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_def_DASHenv] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [sym_short_flag] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [201] = { + [sym_comment] = STATE(201), + [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), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_CARET] = ACTIONS(938), + [sym_short_flag] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [202] = { + [sym_comment] = STATE(202), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(107), + [anon_sym_DOT_DOT] = ACTIONS(107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(3), + }, + [203] = { + [sym_comment] = STATE(203), + [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), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_CARET] = ACTIONS(942), + [sym_short_flag] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(3), + }, + [204] = { + [sym_comment] = STATE(204), + [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), + [anon_sym_SEMI] = ACTIONS(946), + [sym_cmd_identifier] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_where] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_not] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_CARET] = ACTIONS(946), + [sym_short_flag] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(3), + }, + [205] = { + [sym_cell_path] = STATE(443), + [sym_path] = STATE(221), + [sym_comment] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(770), [anon_sym_export] = ACTIONS(768), [anon_sym_alias] = ACTIONS(768), [anon_sym_let] = ACTIONS(768), @@ -70869,7 +72617,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(768), [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), [anon_sym_PIPE] = ACTIONS(768), [anon_sym_DOLLAR] = ACTIONS(768), [anon_sym_error] = ACTIONS(768), @@ -70885,8 +72632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(768), [anon_sym_match] = ACTIONS(768), [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(950), [anon_sym_try] = ACTIONS(768), [anon_sym_return] = ACTIONS(768), [anon_sym_source] = ACTIONS(768), @@ -70948,1793 +72694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(768), [anon_sym_POUND] = ACTIONS(3), }, - [193] = { - [sym__flag] = STATE(691), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(193), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(828), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [194] = { - [sym_comment] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(844), - [anon_sym_export] = ACTIONS(842), - [anon_sym_alias] = ACTIONS(842), - [anon_sym_let] = ACTIONS(842), - [anon_sym_let_DASHenv] = ACTIONS(842), - [anon_sym_mut] = ACTIONS(842), - [anon_sym_const] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(842), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_def] = ACTIONS(842), - [anon_sym_def_DASHenv] = ACTIONS(842), - [anon_sym_export_DASHenv] = ACTIONS(842), - [anon_sym_extern] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_use] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_error] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_match] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_source] = ACTIONS(842), - [anon_sym_source_DASHenv] = ACTIONS(842), - [anon_sym_register] = ACTIONS(842), - [anon_sym_hide] = ACTIONS(842), - [anon_sym_hide_DASHenv] = ACTIONS(842), - [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [195] = { - [sym__flag] = STATE(665), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(822), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [196] = { - [sym_cell_path] = STATE(358), - [sym_path] = STATE(199), - [sym_comment] = STATE(196), - [ts_builtin_sym_end] = ACTIONS(735), - [anon_sym_export] = ACTIONS(733), - [anon_sym_alias] = ACTIONS(733), - [anon_sym_let] = ACTIONS(733), - [anon_sym_let_DASHenv] = ACTIONS(733), - [anon_sym_mut] = ACTIONS(733), - [anon_sym_const] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [sym_cmd_identifier] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_def] = ACTIONS(733), - [anon_sym_def_DASHenv] = ACTIONS(733), - [anon_sym_export_DASHenv] = ACTIONS(733), - [anon_sym_extern] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_use] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_error] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_loop] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_match] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_source] = ACTIONS(733), - [anon_sym_source_DASHenv] = ACTIONS(733), - [anon_sym_register] = ACTIONS(733), - [anon_sym_hide] = ACTIONS(733), - [anon_sym_hide_DASHenv] = ACTIONS(733), - [anon_sym_overlay] = ACTIONS(733), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_where] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_not] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - }, - [197] = { - [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [sym_cmd_identifier] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_def_DASHenv] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_where] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_not] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(920), - [sym_short_flag] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [198] = { - [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [sym_cmd_identifier] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_def_DASHenv] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_not] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [sym_short_flag] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), - }, - [199] = { - [sym_path] = STATE(325), - [sym_comment] = STATE(199), - [aux_sym_cell_path_repeat1] = STATE(253), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(3), - }, - [200] = { - [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [201] = { - [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [202] = { - [sym_comment] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(910), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [203] = { - [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(798), - [anon_sym_xor] = ACTIONS(800), - [anon_sym_or] = ACTIONS(802), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [sym_cmd_identifier] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_def_DASHenv] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_where] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_not] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [sym_short_flag] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [205] = { - [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_def_DASHenv] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [sym_short_flag] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, [206] = { [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [sym_cmd_identifier] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_def] = ACTIONS(940), - [anon_sym_def_DASHenv] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_error] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_where] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_CARET] = ACTIONS(940), - [sym_short_flag] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(3), - }, - [207] = { - [sym_comment] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(916), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [208] = { - [sym_comment] = STATE(208), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [209] = { - [sym_comment] = STATE(209), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [210] = { - [sym_comment] = STATE(210), - [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), - [anon_sym_SEMI] = ACTIONS(948), - [sym_cmd_identifier] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_where] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_CARET] = ACTIONS(948), - [sym_short_flag] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), - }, - [211] = { - [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(952), [anon_sym_alias] = ACTIONS(952), [anon_sym_let] = ACTIONS(952), @@ -72832,8 +72793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(3), }, - [212] = { - [sym_comment] = STATE(212), + [207] = { + [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(956), [anon_sym_alias] = ACTIONS(956), [anon_sym_let] = ACTIONS(956), @@ -72931,8 +72892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(3), }, - [213] = { - [sym_comment] = STATE(213), + [208] = { + [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(960), [anon_sym_alias] = ACTIONS(960), [anon_sym_let] = ACTIONS(960), @@ -73030,8 +72991,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), }, - [214] = { - [sym_comment] = STATE(214), + [209] = { + [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(964), [anon_sym_alias] = ACTIONS(964), [anon_sym_let] = ACTIONS(964), @@ -73129,8 +73090,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), }, - [215] = { - [sym_comment] = STATE(215), + [210] = { + [sym_comment] = STATE(210), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(3), + }, + [211] = { + [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(968), [anon_sym_alias] = ACTIONS(968), [anon_sym_let] = ACTIONS(968), @@ -73228,8 +73288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), }, - [216] = { - [sym_comment] = STATE(216), + [212] = { + [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -73327,8 +73387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), }, - [217] = { - [sym_comment] = STATE(217), + [213] = { + [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(976), [anon_sym_alias] = ACTIONS(976), [anon_sym_let] = ACTIONS(976), @@ -73426,107 +73486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [218] = { - [sym_cell_path] = STATE(422), - [sym_path] = STATE(199), - [sym_comment] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(3), - }, - [219] = { - [sym_comment] = STATE(219), + [214] = { + [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(980), [anon_sym_alias] = ACTIONS(980), [anon_sym_let] = ACTIONS(980), @@ -73624,8 +73585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, - [220] = { - [sym_comment] = STATE(220), + [215] = { + [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(984), [anon_sym_alias] = ACTIONS(984), [anon_sym_let] = ACTIONS(984), @@ -73723,8 +73684,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [221] = { - [sym_comment] = STATE(221), + [216] = { + [sym_comment] = STATE(216), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(3), + }, + [217] = { + [sym_cell_path] = STATE(445), + [sym_path] = STATE(221), + [sym_comment] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_export] = ACTIONS(744), + [anon_sym_alias] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_let_DASHenv] = ACTIONS(744), + [anon_sym_mut] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_def] = ACTIONS(744), + [anon_sym_def_DASHenv] = ACTIONS(744), + [anon_sym_export_DASHenv] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_error] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_source] = ACTIONS(744), + [anon_sym_source_DASHenv] = ACTIONS(744), + [anon_sym_register] = ACTIONS(744), + [anon_sym_hide] = ACTIONS(744), + [anon_sym_hide_DASHenv] = ACTIONS(744), + [anon_sym_overlay] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(3), + }, + [218] = { + [sym_cell_path] = STATE(447), + [sym_path] = STATE(221), + [sym_comment] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_export] = ACTIONS(748), + [anon_sym_alias] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_let_DASHenv] = ACTIONS(748), + [anon_sym_mut] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(748), + [sym_cmd_identifier] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_def] = ACTIONS(748), + [anon_sym_def_DASHenv] = ACTIONS(748), + [anon_sym_export_DASHenv] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_error] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_source] = ACTIONS(748), + [anon_sym_source_DASHenv] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_hide] = ACTIONS(748), + [anon_sym_hide_DASHenv] = ACTIONS(748), + [anon_sym_overlay] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_not] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3), + }, + [219] = { + [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(988), [anon_sym_alias] = ACTIONS(988), [anon_sym_let] = ACTIONS(988), @@ -73822,800 +74080,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(3), }, + [220] = { + [sym_comment] = STATE(220), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [221] = { + [sym_path] = STATE(382), + [sym_comment] = STATE(221), + [aux_sym_cell_path_repeat1] = STATE(239), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(3), + }, [222] = { [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [sym_short_flag] = ACTIONS(992), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, [223] = { - [sym_expr_parenthesized] = STATE(319), - [sym_val_number] = STATE(319), [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(806), - [anon_sym_alias] = ACTIONS(806), - [anon_sym_let] = ACTIONS(806), - [anon_sym_let_DASHenv] = ACTIONS(806), - [anon_sym_mut] = ACTIONS(806), - [anon_sym_const] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [sym_cmd_identifier] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_def] = ACTIONS(806), - [anon_sym_def_DASHenv] = ACTIONS(806), - [anon_sym_export_DASHenv] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_use] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_error] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_match] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_source] = ACTIONS(806), - [anon_sym_source_DASHenv] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_hide] = ACTIONS(806), - [anon_sym_hide_DASHenv] = ACTIONS(806), - [anon_sym_overlay] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_where] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_not] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [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), - [anon_sym_inf] = ACTIONS(998), - [anon_sym_DASHinf] = ACTIONS(998), - [anon_sym_NaN] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, [224] = { + [sym_cell_path] = STATE(431), + [sym_path] = STATE(221), [sym_comment] = STATE(224), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(796), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_in] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_mod] = ACTIONS(764), + [anon_sym_SLASH_SLASH] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_bit_DASHshl] = ACTIONS(764), + [anon_sym_bit_DASHshr] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT2] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_not_DASHin] = ACTIONS(764), + [anon_sym_starts_DASHwith] = ACTIONS(764), + [anon_sym_ends_DASHwith] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(764), + [anon_sym_BANG_TILDE] = ACTIONS(764), + [anon_sym_bit_DASHand] = ACTIONS(764), + [anon_sym_bit_DASHxor] = ACTIONS(764), + [anon_sym_bit_DASHor] = ACTIONS(764), + [anon_sym_and] = ACTIONS(764), + [anon_sym_xor] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, [225] = { [sym_comment] = STATE(225), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), + [sym_short_flag] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, [226] = { [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, [227] = { [sym_comment] = STATE(227), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [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), + [anon_sym_SEMI] = ACTIONS(998), + [sym_cmd_identifier] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_where] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_not] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(998), + [sym_short_flag] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(3), }, [228] = { [sym_comment] = STATE(228), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(794), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [229] = { - [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [230] = { - [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -74637,9 +74895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), [anon_sym_error] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(1002), [anon_sym_continue] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1002), @@ -74659,21 +74917,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1002), [anon_sym_hide_DASHenv] = ACTIONS(1002), [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_SLASH_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_bit_DASHshl] = ACTIONS(1002), - [anon_sym_bit_DASHshr] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), [anon_sym_not_DASHin] = ACTIONS(1002), [anon_sym_starts_DASHwith] = ACTIONS(1002), [anon_sym_ends_DASHwith] = ACTIONS(1002), @@ -74713,8 +74971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [231] = { - [sym_comment] = STATE(231), + [229] = { + [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -74812,503 +75070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [232] = { - [sym_comment] = STATE(232), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(792), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [233] = { - [sym_comment] = STATE(233), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_BANG_TILDE] = ACTIONS(790), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [234] = { - [sym_comment] = STATE(234), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [235] = { - [sym_comment] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [236] = { - [sym_comment] = STATE(236), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_def_DASHenv] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(111), - [anon_sym_DOT_DOT] = ACTIONS(111), - [anon_sym_DOT_DOT_EQ] = ACTIONS(111), - [sym_val_nothing] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym_val_number_token1] = ACTIONS(1010), - [aux_sym_val_number_token2] = ACTIONS(1010), - [aux_sym_val_number_token3] = ACTIONS(1010), - [aux_sym_val_number_token4] = ACTIONS(1010), - [aux_sym_val_number_token5] = ACTIONS(1010), - [anon_sym_inf] = ACTIONS(1010), - [anon_sym_DASHinf] = ACTIONS(1010), - [anon_sym_NaN] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_CARET] = ACTIONS(1010), - [sym_short_flag] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [237] = { - [sym_comment] = STATE(237), + [230] = { + [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -75406,404 +75169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [238] = { - [sym_cell_path] = STATE(381), - [sym_path] = STATE(199), - [sym_comment] = STATE(238), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(3), - }, - [239] = { - [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(842), - [anon_sym_alias] = ACTIONS(842), - [anon_sym_let] = ACTIONS(842), - [anon_sym_let_DASHenv] = ACTIONS(842), - [anon_sym_mut] = ACTIONS(842), - [anon_sym_const] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(842), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_def] = ACTIONS(842), - [anon_sym_def_DASHenv] = ACTIONS(842), - [anon_sym_export_DASHenv] = ACTIONS(842), - [anon_sym_extern] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_use] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_error] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_match] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_source] = ACTIONS(842), - [anon_sym_source_DASHenv] = ACTIONS(842), - [anon_sym_register] = ACTIONS(842), - [anon_sym_hide] = ACTIONS(842), - [anon_sym_hide_DASHenv] = ACTIONS(842), - [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [240] = { - [sym_comment] = STATE(240), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [241] = { - [sym_cell_path] = STATE(357), - [sym_path] = STATE(199), - [sym_comment] = STATE(241), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [242] = { - [sym_comment] = STATE(242), + [231] = { + [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(1014), [anon_sym_alias] = ACTIONS(1014), [anon_sym_let] = ACTIONS(1014), @@ -75901,260 +75268,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [243] = { - [sym_comment] = STATE(243), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [244] = { - [sym_cell_path] = STATE(355), - [sym_path] = STATE(199), - [sym_comment] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(743), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), + [232] = { + [sym_comment] = STATE(232), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [245] = { - [sym_comment] = STATE(245), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_STAR_STAR] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1018), - [anon_sym_SLASH_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_bit_DASHshl] = ACTIONS(1018), - [anon_sym_bit_DASHshr] = ACTIONS(1018), - [anon_sym_EQ_EQ] = ACTIONS(1018), + [233] = { + [sym_comment] = STATE(233), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [234] = { + [sym_comment] = STATE(234), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [235] = { + [sym_comment] = STATE(235), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [sym_cmd_identifier] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_def_DASHenv] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_where] = ACTIONS(1018), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), [anon_sym_BANG_EQ] = ACTIONS(1018), [anon_sym_LT2] = ACTIONS(1018), [anon_sym_LT_EQ] = ACTIONS(1018), @@ -76198,503 +75664,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym_path] = STATE(325), - [sym_comment] = STATE(246), - [aux_sym_cell_path_repeat1] = STATE(246), - [ts_builtin_sym_end] = ACTIONS(759), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), + [236] = { + [sym_comment] = STATE(236), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [247] = { - [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [237] = { + [sym_comment] = STATE(237), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [248] = { - [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(1025), - [anon_sym_alias] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_let_DASHenv] = ACTIONS(1025), - [anon_sym_mut] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1025), - [sym_cmd_identifier] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1025), - [anon_sym_def_DASHenv] = ACTIONS(1025), - [anon_sym_export_DASHenv] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_error] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_source] = ACTIONS(1025), - [anon_sym_source_DASHenv] = ACTIONS(1025), - [anon_sym_register] = ACTIONS(1025), - [anon_sym_hide] = ACTIONS(1025), - [anon_sym_hide_DASHenv] = ACTIONS(1025), - [anon_sym_overlay] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_not] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [sym_short_flag] = ACTIONS(1025), + [238] = { + [sym_comment] = STATE(238), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [249] = { - [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [239] = { + [sym_path] = STATE(382), + [sym_comment] = STATE(239), + [aux_sym_cell_path_repeat1] = STATE(242), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [250] = { - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(782), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(788), - [anon_sym_bit_DASHshr] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(776), - [anon_sym_BANG_EQ] = ACTIONS(776), - [anon_sym_LT2] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(776), - [anon_sym_GT_EQ] = ACTIONS(776), - [anon_sym_not_DASHin] = ACTIONS(782), - [anon_sym_starts_DASHwith] = ACTIONS(782), - [anon_sym_ends_DASHwith] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [240] = { + [sym_comment] = STATE(240), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [251] = { - [sym_comment] = STATE(251), + [241] = { + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [sym_short_flag] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), + }, + [242] = { + [sym_path] = STATE(382), + [sym_comment] = STATE(242), + [aux_sym_cell_path_repeat1] = STATE(242), + [ts_builtin_sym_end] = ACTIONS(725), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_in] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_STAR_STAR] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_mod] = ACTIONS(723), + [anon_sym_SLASH_SLASH] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_bit_DASHshl] = ACTIONS(723), + [anon_sym_bit_DASHshr] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT2] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_not_DASHin] = ACTIONS(723), + [anon_sym_starts_DASHwith] = ACTIONS(723), + [anon_sym_ends_DASHwith] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_BANG_TILDE] = ACTIONS(723), + [anon_sym_bit_DASHand] = ACTIONS(723), + [anon_sym_bit_DASHxor] = ACTIONS(723), + [anon_sym_bit_DASHor] = ACTIONS(723), + [anon_sym_and] = ACTIONS(723), + [anon_sym_xor] = ACTIONS(723), + [anon_sym_or] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(3), + }, + [243] = { + [sym_comment] = STATE(243), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [244] = { + [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(1029), [anon_sym_alias] = ACTIONS(1029), [anon_sym_let] = ACTIONS(1029), @@ -76792,2954 +76555,701 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [252] = { - [sym_cell_path] = STATE(417), - [sym_path] = STATE(199), - [sym_comment] = STATE(252), - [ts_builtin_sym_end] = ACTIONS(725), - [anon_sym_export] = ACTIONS(723), - [anon_sym_alias] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_let_DASHenv] = ACTIONS(723), - [anon_sym_mut] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(723), - [sym_cmd_identifier] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_def] = ACTIONS(723), - [anon_sym_def_DASHenv] = ACTIONS(723), - [anon_sym_export_DASHenv] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_module] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_error] = ACTIONS(723), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_in] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_source] = ACTIONS(723), - [anon_sym_source_DASHenv] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_hide] = ACTIONS(723), - [anon_sym_hide_DASHenv] = ACTIONS(723), - [anon_sym_overlay] = ACTIONS(723), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_where] = ACTIONS(723), - [anon_sym_STAR_STAR] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_SLASH_SLASH] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_bit_DASHshl] = ACTIONS(723), - [anon_sym_bit_DASHshr] = ACTIONS(723), - [anon_sym_EQ_EQ] = ACTIONS(723), - [anon_sym_BANG_EQ] = ACTIONS(723), - [anon_sym_LT2] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_not_DASHin] = ACTIONS(723), - [anon_sym_starts_DASHwith] = ACTIONS(723), - [anon_sym_ends_DASHwith] = ACTIONS(723), - [anon_sym_EQ_TILDE] = ACTIONS(723), - [anon_sym_BANG_TILDE] = ACTIONS(723), - [anon_sym_bit_DASHand] = ACTIONS(723), - [anon_sym_bit_DASHxor] = ACTIONS(723), - [anon_sym_bit_DASHor] = ACTIONS(723), - [anon_sym_and] = ACTIONS(723), - [anon_sym_xor] = ACTIONS(723), - [anon_sym_or] = ACTIONS(723), - [anon_sym_not] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(3), - }, - [253] = { - [sym_path] = STATE(325), - [sym_comment] = STATE(253), - [aux_sym_cell_path_repeat1] = STATE(246), - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), + [245] = { + [sym_cell_path] = STATE(441), + [sym_path] = STATE(221), + [sym_comment] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(732), + [anon_sym_export] = ACTIONS(730), + [anon_sym_alias] = ACTIONS(730), + [anon_sym_let] = ACTIONS(730), + [anon_sym_let_DASHenv] = ACTIONS(730), + [anon_sym_mut] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(730), + [sym_cmd_identifier] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_def] = ACTIONS(730), + [anon_sym_def_DASHenv] = ACTIONS(730), + [anon_sym_export_DASHenv] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_module] = ACTIONS(730), + [anon_sym_use] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_error] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_loop] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_match] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_source] = ACTIONS(730), + [anon_sym_source_DASHenv] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_hide] = ACTIONS(730), + [anon_sym_hide_DASHenv] = ACTIONS(730), + [anon_sym_overlay] = ACTIONS(730), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_where] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_not] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(730), [anon_sym_POUND] = ACTIONS(3), }, - [254] = { - [sym_cell_path] = STATE(414), - [sym_path] = STATE(199), - [sym_comment] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(755), - [anon_sym_export] = ACTIONS(753), - [anon_sym_alias] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_let_DASHenv] = ACTIONS(753), - [anon_sym_mut] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [sym_cmd_identifier] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_def] = ACTIONS(753), - [anon_sym_def_DASHenv] = ACTIONS(753), - [anon_sym_export_DASHenv] = ACTIONS(753), - [anon_sym_extern] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_error] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_source] = ACTIONS(753), - [anon_sym_source_DASHenv] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_hide] = ACTIONS(753), - [anon_sym_hide_DASHenv] = ACTIONS(753), - [anon_sym_overlay] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_not] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), + [246] = { + [sym_cell_path] = STATE(396), + [sym_path] = STATE(221), + [sym_comment] = STATE(246), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_export] = ACTIONS(740), + [anon_sym_alias] = ACTIONS(740), + [anon_sym_let] = ACTIONS(740), + [anon_sym_let_DASHenv] = ACTIONS(740), + [anon_sym_mut] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_def] = ACTIONS(740), + [anon_sym_def_DASHenv] = ACTIONS(740), + [anon_sym_export_DASHenv] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_use] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_error] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_loop] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_source] = ACTIONS(740), + [anon_sym_source_DASHenv] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_hide] = ACTIONS(740), + [anon_sym_hide_DASHenv] = ACTIONS(740), + [anon_sym_overlay] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_where] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [255] = { - [sym_cell_path] = STATE(415), - [sym_path] = STATE(199), - [sym_comment] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(739), - [anon_sym_export] = ACTIONS(737), - [anon_sym_alias] = ACTIONS(737), - [anon_sym_let] = ACTIONS(737), - [anon_sym_let_DASHenv] = ACTIONS(737), - [anon_sym_mut] = ACTIONS(737), - [anon_sym_const] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [sym_cmd_identifier] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_def] = ACTIONS(737), - [anon_sym_def_DASHenv] = ACTIONS(737), - [anon_sym_export_DASHenv] = ACTIONS(737), - [anon_sym_extern] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_use] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_error] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_loop] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_match] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_try] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_source] = ACTIONS(737), - [anon_sym_source_DASHenv] = ACTIONS(737), - [anon_sym_register] = ACTIONS(737), - [anon_sym_hide] = ACTIONS(737), - [anon_sym_hide_DASHenv] = ACTIONS(737), - [anon_sym_overlay] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_where] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_not] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(737), + [247] = { + [sym_expr_parenthesized] = STATE(346), + [sym_val_number] = STATE(346), + [sym_comment] = STATE(247), + [anon_sym_export] = ACTIONS(826), + [anon_sym_alias] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_let_DASHenv] = ACTIONS(826), + [anon_sym_mut] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [sym_cmd_identifier] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_def] = ACTIONS(826), + [anon_sym_def_DASHenv] = ACTIONS(826), + [anon_sym_export_DASHenv] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_error] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_source] = ACTIONS(826), + [anon_sym_source_DASHenv] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_hide] = ACTIONS(826), + [anon_sym_hide_DASHenv] = ACTIONS(826), + [anon_sym_overlay] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_where] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_not] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_val_number_token1] = ACTIONS(1035), + [aux_sym_val_number_token2] = ACTIONS(1035), + [aux_sym_val_number_token3] = ACTIONS(1035), + [aux_sym_val_number_token4] = ACTIONS(1035), + [aux_sym_val_number_token5] = ACTIONS(1035), + [anon_sym_inf] = ACTIONS(1035), + [anon_sym_DASHinf] = ACTIONS(1035), + [anon_sym_NaN] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), [anon_sym_POUND] = ACTIONS(3), }, - [256] = { - [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_mod] = ACTIONS(784), - [anon_sym_SLASH_SLASH] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [248] = { + [sym_comment] = STATE(248), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [257] = { - [sym_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(1025), - [anon_sym_alias] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_let_DASHenv] = ACTIONS(1025), - [anon_sym_mut] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1025), - [sym_cmd_identifier] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1025), - [anon_sym_def_DASHenv] = ACTIONS(1025), - [anon_sym_export_DASHenv] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_error] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_source] = ACTIONS(1025), - [anon_sym_source_DASHenv] = ACTIONS(1025), - [anon_sym_register] = ACTIONS(1025), - [anon_sym_hide] = ACTIONS(1025), - [anon_sym_hide_DASHenv] = ACTIONS(1025), - [anon_sym_overlay] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_not] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [sym_short_flag] = ACTIONS(1025), + [249] = { + [sym_comment] = STATE(249), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), [anon_sym_POUND] = ACTIONS(3), }, - [258] = { - [sym_comment] = STATE(258), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [259] = { - [sym_comment] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [260] = { - [sym_comment] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [261] = { - [sym_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(970), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_cmd_identifier] = ACTIONS(968), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_def] = ACTIONS(968), - [anon_sym_def_DASHenv] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_not] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [sym_val_nothing] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(968), - [anon_sym_DASHinf] = ACTIONS(968), - [anon_sym_NaN] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [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_CARET] = ACTIONS(968), - [sym_short_flag] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [262] = { - [sym_comment] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [263] = { - [sym_comment] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [sym_short_flag] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - }, - [264] = { - [sym_comment] = STATE(264), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [265] = { - [sym_comment] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(954), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [sym_cmd_identifier] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_def_DASHenv] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_where] = ACTIONS(952), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_not] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [sym_val_nothing] = ACTIONS(952), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(952), - [anon_sym_DASHinf] = ACTIONS(952), - [anon_sym_NaN] = ACTIONS(952), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [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_CARET] = ACTIONS(952), - [sym_short_flag] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(3), - }, - [266] = { - [sym_comment] = STATE(266), - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [sym_cmd_identifier] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_def] = ACTIONS(940), - [anon_sym_def_DASHenv] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_error] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_where] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_CARET] = ACTIONS(940), - [sym_short_flag] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(3), - }, - [267] = { - [sym_comment] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(844), - [anon_sym_export] = ACTIONS(842), - [anon_sym_alias] = ACTIONS(842), - [anon_sym_let] = ACTIONS(842), - [anon_sym_let_DASHenv] = ACTIONS(842), - [anon_sym_mut] = ACTIONS(842), - [anon_sym_const] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(842), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_def] = ACTIONS(842), - [anon_sym_def_DASHenv] = ACTIONS(842), - [anon_sym_export_DASHenv] = ACTIONS(842), - [anon_sym_extern] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_use] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_error] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_match] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_source] = ACTIONS(842), - [anon_sym_source_DASHenv] = ACTIONS(842), - [anon_sym_register] = ACTIONS(842), - [anon_sym_hide] = ACTIONS(842), - [anon_sym_hide_DASHenv] = ACTIONS(842), - [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [268] = { - [sym_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [269] = { - [sym_comment] = STATE(269), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [270] = { - [sym_comment] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_def_DASHenv] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [sym_short_flag] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [271] = { - [sym_comment] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [272] = { - [sym_comment] = STATE(272), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [273] = { - [sym_comment] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [sym_cmd_identifier] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_def_DASHenv] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_where] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_not] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [sym_short_flag] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [274] = { - [sym_comment] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(881), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [275] = { - [sym_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(962), - [anon_sym_export] = ACTIONS(960), - [anon_sym_alias] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_let_DASHenv] = ACTIONS(960), - [anon_sym_mut] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_cmd_identifier] = ACTIONS(960), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_def] = ACTIONS(960), - [anon_sym_def_DASHenv] = ACTIONS(960), - [anon_sym_export_DASHenv] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_source] = ACTIONS(960), - [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_hide] = ACTIONS(960), - [anon_sym_hide_DASHenv] = ACTIONS(960), - [anon_sym_overlay] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_STAR_STAR] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_SLASH_SLASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_bit_DASHshl] = ACTIONS(960), - [anon_sym_bit_DASHshr] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_not_DASHin] = ACTIONS(960), - [anon_sym_starts_DASHwith] = ACTIONS(960), - [anon_sym_ends_DASHwith] = ACTIONS(960), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_BANG_TILDE] = ACTIONS(960), - [anon_sym_bit_DASHand] = ACTIONS(960), - [anon_sym_bit_DASHxor] = ACTIONS(960), - [anon_sym_bit_DASHor] = ACTIONS(960), - [anon_sym_and] = ACTIONS(960), - [anon_sym_xor] = ACTIONS(960), - [anon_sym_or] = ACTIONS(960), - [anon_sym_not] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [sym_val_nothing] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(960), - [anon_sym_DASHinf] = ACTIONS(960), - [anon_sym_NaN] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [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_CARET] = ACTIONS(960), - [sym_short_flag] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(3), - }, - [276] = { - [sym_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(3), - }, - [277] = { - [sym_comment] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [sym_cmd_identifier] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_def_DASHenv] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_where] = ACTIONS(984), - [anon_sym_STAR_STAR] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_bit_DASHshl] = ACTIONS(984), - [anon_sym_bit_DASHshr] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_not_DASHin] = ACTIONS(984), - [anon_sym_starts_DASHwith] = ACTIONS(984), - [anon_sym_ends_DASHwith] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(984), - [anon_sym_BANG_TILDE] = ACTIONS(984), - [anon_sym_bit_DASHand] = ACTIONS(984), - [anon_sym_bit_DASHxor] = ACTIONS(984), - [anon_sym_bit_DASHor] = ACTIONS(984), - [anon_sym_and] = ACTIONS(984), - [anon_sym_xor] = ACTIONS(984), - [anon_sym_or] = ACTIONS(984), - [anon_sym_not] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [sym_val_nothing] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(984), - [anon_sym_DASHinf] = ACTIONS(984), - [anon_sym_NaN] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [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_CARET] = ACTIONS(984), - [sym_short_flag] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - }, - [278] = { - [sym_expr_parenthesized] = STATE(408), - [sym_val_number] = STATE(408), - [sym_comment] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(808), - [anon_sym_export] = ACTIONS(806), - [anon_sym_alias] = ACTIONS(806), - [anon_sym_let] = ACTIONS(806), - [anon_sym_let_DASHenv] = ACTIONS(806), - [anon_sym_mut] = ACTIONS(806), - [anon_sym_const] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [sym_cmd_identifier] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_def] = ACTIONS(806), - [anon_sym_def_DASHenv] = ACTIONS(806), - [anon_sym_export_DASHenv] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(806), - [anon_sym_module] = ACTIONS(806), - [anon_sym_use] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_error] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_do] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_match] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_try] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_source] = ACTIONS(806), - [anon_sym_source_DASHenv] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_hide] = ACTIONS(806), - [anon_sym_hide_DASHenv] = ACTIONS(806), - [anon_sym_overlay] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_where] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_not] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [aux_sym_val_number_token1] = ACTIONS(1037), - [aux_sym_val_number_token2] = ACTIONS(1037), - [aux_sym_val_number_token3] = ACTIONS(1037), - [aux_sym_val_number_token4] = ACTIONS(1037), - [aux_sym_val_number_token5] = ACTIONS(1037), - [anon_sym_inf] = ACTIONS(1037), - [anon_sym_DASHinf] = ACTIONS(1037), - [anon_sym_NaN] = ACTIONS(1037), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym_POUND] = ACTIONS(3), - }, - [279] = { - [sym_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(1031), - [anon_sym_export] = ACTIONS(1029), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_let_DASHenv] = ACTIONS(1029), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [sym_cmd_identifier] = ACTIONS(1029), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_def_DASHenv] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_source] = ACTIONS(1029), - [anon_sym_source_DASHenv] = ACTIONS(1029), - [anon_sym_register] = ACTIONS(1029), - [anon_sym_hide] = ACTIONS(1029), - [anon_sym_hide_DASHenv] = ACTIONS(1029), - [anon_sym_overlay] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_STAR_STAR] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_bit_DASHshl] = ACTIONS(1029), - [anon_sym_bit_DASHshr] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT2] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_not_DASHin] = ACTIONS(1029), - [anon_sym_starts_DASHwith] = ACTIONS(1029), - [anon_sym_ends_DASHwith] = ACTIONS(1029), - [anon_sym_EQ_TILDE] = ACTIONS(1029), - [anon_sym_BANG_TILDE] = ACTIONS(1029), - [anon_sym_bit_DASHand] = ACTIONS(1029), - [anon_sym_bit_DASHxor] = ACTIONS(1029), - [anon_sym_bit_DASHor] = ACTIONS(1029), - [anon_sym_and] = ACTIONS(1029), - [anon_sym_xor] = ACTIONS(1029), - [anon_sym_or] = ACTIONS(1029), - [anon_sym_not] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [sym_val_nothing] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [aux_sym_val_number_token1] = ACTIONS(1029), - [aux_sym_val_number_token2] = ACTIONS(1029), - [aux_sym_val_number_token3] = ACTIONS(1029), - [aux_sym_val_number_token4] = ACTIONS(1029), - [aux_sym_val_number_token5] = ACTIONS(1029), - [anon_sym_inf] = ACTIONS(1029), - [anon_sym_DASHinf] = ACTIONS(1029), - [anon_sym_NaN] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1029), - [anon_sym_0o] = ACTIONS(1029), - [anon_sym_0x] = ACTIONS(1029), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [sym_short_flag] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(3), - }, - [280] = { - [sym_comment] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(958), - [anon_sym_export] = ACTIONS(956), - [anon_sym_alias] = ACTIONS(956), - [anon_sym_let] = ACTIONS(956), - [anon_sym_let_DASHenv] = ACTIONS(956), - [anon_sym_mut] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [sym_cmd_identifier] = ACTIONS(956), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_def] = ACTIONS(956), - [anon_sym_def_DASHenv] = ACTIONS(956), - [anon_sym_export_DASHenv] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_use] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_error] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_in] = ACTIONS(956), - [anon_sym_loop] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_match] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_source] = ACTIONS(956), - [anon_sym_source_DASHenv] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_hide] = ACTIONS(956), - [anon_sym_hide_DASHenv] = ACTIONS(956), - [anon_sym_overlay] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_where] = ACTIONS(956), - [anon_sym_STAR_STAR] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(956), - [anon_sym_SLASH_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_bit_DASHshl] = ACTIONS(956), - [anon_sym_bit_DASHshr] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_not_DASHin] = ACTIONS(956), - [anon_sym_starts_DASHwith] = ACTIONS(956), - [anon_sym_ends_DASHwith] = ACTIONS(956), - [anon_sym_EQ_TILDE] = ACTIONS(956), - [anon_sym_BANG_TILDE] = ACTIONS(956), - [anon_sym_bit_DASHand] = ACTIONS(956), - [anon_sym_bit_DASHxor] = ACTIONS(956), - [anon_sym_bit_DASHor] = ACTIONS(956), - [anon_sym_and] = ACTIONS(956), - [anon_sym_xor] = ACTIONS(956), - [anon_sym_or] = ACTIONS(956), - [anon_sym_not] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [sym_val_nothing] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(956), - [anon_sym_DASHinf] = ACTIONS(956), - [anon_sym_NaN] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(956), - [anon_sym_0o] = ACTIONS(956), - [anon_sym_0x] = ACTIONS(956), - [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_CARET] = ACTIONS(956), - [sym_short_flag] = ACTIONS(956), + [250] = { + [sym_comment] = STATE(250), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [281] = { - [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [251] = { + [sym_comment] = STATE(251), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [282] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1004), + [252] = { + [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -79757,12 +77267,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), [anon_sym_error] = ACTIONS(1002), [anon_sym_GT] = ACTIONS(1002), [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), [anon_sym_break] = ACTIONS(1002), [anon_sym_continue] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1002), @@ -79773,6 +77284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1002), [anon_sym_match] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), [anon_sym_try] = ACTIONS(1002), [anon_sym_return] = ACTIONS(1002), [anon_sym_source] = ACTIONS(1002), @@ -79781,16 +77293,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1002), [anon_sym_hide_DASHenv] = ACTIONS(1002), [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), [anon_sym_where] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_SLASH_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_bit_DASHshl] = ACTIONS(1002), - [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), [anon_sym_EQ_EQ] = ACTIONS(1002), [anon_sym_BANG_EQ] = ACTIONS(1002), [anon_sym_LT2] = ACTIONS(1002), @@ -79835,1185 +77347,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [283] = { - [sym_comment] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [sym_cmd_identifier] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_def_DASHenv] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_where] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_not] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(920), - [sym_short_flag] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [284] = { - [sym_comment] = STATE(284), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [285] = { - [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [286] = { - [sym_comment] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [287] = { - [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(871), - [anon_sym_starts_DASHwith] = ACTIONS(871), - [anon_sym_ends_DASHwith] = ACTIONS(871), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [288] = { - [sym_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [sym_cmd_identifier] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_def_DASHenv] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_not] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [sym_short_flag] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), - }, - [289] = { - [sym_comment] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [253] = { + [sym_comment] = STATE(253), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [290] = { - [sym_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(966), - [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), - [anon_sym_SEMI] = ACTIONS(964), - [sym_cmd_identifier] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(966), - [anon_sym_def] = ACTIONS(964), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_where] = ACTIONS(964), - [anon_sym_STAR_STAR] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_mod] = ACTIONS(964), - [anon_sym_SLASH_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_bit_DASHshl] = ACTIONS(964), - [anon_sym_bit_DASHshr] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_not_DASHin] = ACTIONS(964), - [anon_sym_starts_DASHwith] = ACTIONS(964), - [anon_sym_ends_DASHwith] = ACTIONS(964), - [anon_sym_EQ_TILDE] = ACTIONS(964), - [anon_sym_BANG_TILDE] = ACTIONS(964), - [anon_sym_bit_DASHand] = ACTIONS(964), - [anon_sym_bit_DASHxor] = ACTIONS(964), - [anon_sym_bit_DASHor] = ACTIONS(964), - [anon_sym_and] = ACTIONS(964), - [anon_sym_xor] = ACTIONS(964), - [anon_sym_or] = ACTIONS(964), - [anon_sym_not] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [sym_val_nothing] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(964), - [anon_sym_DASHinf] = ACTIONS(964), - [anon_sym_NaN] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(964), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [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_CARET] = ACTIONS(964), - [sym_short_flag] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(3), - }, - [291] = { - [sym_comment] = STATE(291), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [292] = { - [sym_comment] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [293] = { - [sym_comment] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_STAR_STAR] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1018), - [anon_sym_SLASH_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_bit_DASHshl] = ACTIONS(1018), - [anon_sym_bit_DASHshr] = ACTIONS(1018), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_not_DASHin] = ACTIONS(1018), - [anon_sym_starts_DASHwith] = ACTIONS(1018), - [anon_sym_ends_DASHwith] = ACTIONS(1018), - [anon_sym_EQ_TILDE] = ACTIONS(1018), - [anon_sym_BANG_TILDE] = ACTIONS(1018), - [anon_sym_bit_DASHand] = ACTIONS(1018), - [anon_sym_bit_DASHxor] = ACTIONS(1018), - [anon_sym_bit_DASHor] = ACTIONS(1018), - [anon_sym_and] = ACTIONS(1018), - [anon_sym_xor] = ACTIONS(1018), - [anon_sym_or] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [sym_short_flag] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [294] = { - [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_cmd_identifier] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_def_DASHenv] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_where] = ACTIONS(1014), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_not] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [sym_val_nothing] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym_val_number_token1] = ACTIONS(1014), - [aux_sym_val_number_token2] = ACTIONS(1014), - [aux_sym_val_number_token3] = ACTIONS(1014), - [aux_sym_val_number_token4] = ACTIONS(1014), - [aux_sym_val_number_token5] = ACTIONS(1014), - [anon_sym_inf] = ACTIONS(1014), - [anon_sym_DASHinf] = ACTIONS(1014), - [anon_sym_NaN] = ACTIONS(1014), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), - [sym_short_flag] = ACTIONS(1014), + [254] = { + [sym_comment] = STATE(254), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [295] = { - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(1012), + [255] = { + [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -81031,6 +77564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), @@ -81047,6 +77581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), @@ -81109,401 +77644,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [296] = { - [sym_comment] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [sym_cmd_identifier] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_def_DASHenv] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_where] = ACTIONS(972), - [anon_sym_STAR_STAR] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_bit_DASHshl] = ACTIONS(972), - [anon_sym_bit_DASHshr] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_not_DASHin] = ACTIONS(972), - [anon_sym_starts_DASHwith] = ACTIONS(972), - [anon_sym_ends_DASHwith] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_BANG_TILDE] = ACTIONS(972), - [anon_sym_bit_DASHand] = ACTIONS(972), - [anon_sym_bit_DASHxor] = ACTIONS(972), - [anon_sym_bit_DASHor] = ACTIONS(972), - [anon_sym_and] = ACTIONS(972), - [anon_sym_xor] = ACTIONS(972), - [anon_sym_or] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [sym_val_nothing] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = 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(972), - [aux_sym_val_number_token5] = ACTIONS(972), - [anon_sym_inf] = ACTIONS(972), - [anon_sym_DASHinf] = ACTIONS(972), - [anon_sym_NaN] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(972), - [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_CARET] = ACTIONS(972), - [sym_short_flag] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), - }, - [297] = { - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_def_DASHenv] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [sym_val_nothing] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym_val_number_token1] = ACTIONS(1006), - [aux_sym_val_number_token2] = ACTIONS(1006), - [aux_sym_val_number_token3] = ACTIONS(1006), - [aux_sym_val_number_token4] = ACTIONS(1006), - [aux_sym_val_number_token5] = ACTIONS(1006), - [anon_sym_inf] = ACTIONS(1006), - [anon_sym_DASHinf] = ACTIONS(1006), - [anon_sym_NaN] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [sym_short_flag] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [298] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(990), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [sym_cmd_identifier] = ACTIONS(988), - [anon_sym_LF] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_def_DASHenv] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_where] = ACTIONS(988), - [anon_sym_STAR_STAR] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_bit_DASHshl] = ACTIONS(988), - [anon_sym_bit_DASHshr] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_not_DASHin] = ACTIONS(988), - [anon_sym_starts_DASHwith] = ACTIONS(988), - [anon_sym_ends_DASHwith] = ACTIONS(988), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_BANG_TILDE] = ACTIONS(988), - [anon_sym_bit_DASHand] = ACTIONS(988), - [anon_sym_bit_DASHxor] = ACTIONS(988), - [anon_sym_bit_DASHor] = ACTIONS(988), - [anon_sym_and] = ACTIONS(988), - [anon_sym_xor] = ACTIONS(988), - [anon_sym_or] = ACTIONS(988), - [anon_sym_not] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [sym_val_nothing] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym_val_number_token1] = ACTIONS(988), - [aux_sym_val_number_token2] = ACTIONS(988), - [aux_sym_val_number_token3] = ACTIONS(988), - [aux_sym_val_number_token4] = ACTIONS(988), - [aux_sym_val_number_token5] = ACTIONS(988), - [anon_sym_inf] = ACTIONS(988), - [anon_sym_DASHinf] = ACTIONS(988), - [anon_sym_NaN] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_CARET] = ACTIONS(988), - [sym_short_flag] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - }, - [299] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(946), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), + [256] = { + [sym_comment] = STATE(256), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [300] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(1012), + [257] = { + [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -81521,6 +77762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), @@ -81537,6 +77779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), @@ -81572,9 +77815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(117), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(117), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [sym_val_nothing] = ACTIONS(1010), [anon_sym_true] = ACTIONS(1010), [anon_sym_false] = ACTIONS(1010), @@ -81599,693 +77842,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [301] = { - [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(877), - [anon_sym_bit_DASHshr] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [258] = { + [sym_comment] = STATE(258), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [302] = { - [sym_comment] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [sym_cmd_identifier] = ACTIONS(980), - [anon_sym_LF] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_def_DASHenv] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_where] = ACTIONS(980), - [anon_sym_STAR_STAR] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_bit_DASHshl] = ACTIONS(980), - [anon_sym_bit_DASHshr] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_not_DASHin] = ACTIONS(980), - [anon_sym_starts_DASHwith] = ACTIONS(980), - [anon_sym_ends_DASHwith] = ACTIONS(980), - [anon_sym_EQ_TILDE] = ACTIONS(980), - [anon_sym_BANG_TILDE] = ACTIONS(980), - [anon_sym_bit_DASHand] = ACTIONS(980), - [anon_sym_bit_DASHxor] = ACTIONS(980), - [anon_sym_bit_DASHor] = ACTIONS(980), - [anon_sym_and] = ACTIONS(980), - [anon_sym_xor] = ACTIONS(980), - [anon_sym_or] = ACTIONS(980), - [anon_sym_not] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [sym_val_nothing] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(980), - [anon_sym_DASHinf] = ACTIONS(980), - [anon_sym_NaN] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [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_CARET] = ACTIONS(980), - [sym_short_flag] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - }, - [303] = { - [sym_comment] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(950), - [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), - [anon_sym_SEMI] = ACTIONS(948), - [sym_cmd_identifier] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_where] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_CARET] = ACTIONS(948), - [sym_short_flag] = ACTIONS(948), + [259] = { + [sym_comment] = STATE(259), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [304] = { - [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), + [260] = { + [sym_comment] = STATE(260), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [305] = { - [sym_comment] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [261] = { + [sym_comment] = STATE(261), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [306] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), + [262] = { + [sym_comment] = STATE(262), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [307] = { - [sym_comment] = STATE(307), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [sym_cmd_identifier] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_def_DASHenv] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_not] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), + [263] = { + [sym_cell_path] = STATE(436), + [sym_path] = STATE(221), + [sym_comment] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), [anon_sym_POUND] = ACTIONS(3), }, - [308] = { - [sym_comment] = STATE(308), + [264] = { + [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -82308,6 +78460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), @@ -82355,9 +78508,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(123), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(123), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [sym_val_nothing] = ACTIONS(1010), [anon_sym_true] = ACTIONS(1010), [anon_sym_false] = ACTIONS(1010), @@ -82379,917 +78532,1815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [309] = { - [sym_comment] = STATE(309), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [265] = { + [sym_comment] = STATE(265), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_def_DASHenv] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [sym_short_flag] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [266] = { + [sym_cell_path] = STATE(435), + [sym_path] = STATE(221), + [sym_comment] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(738), + [anon_sym_export] = ACTIONS(736), + [anon_sym_alias] = ACTIONS(736), + [anon_sym_let] = ACTIONS(736), + [anon_sym_let_DASHenv] = ACTIONS(736), + [anon_sym_mut] = ACTIONS(736), + [anon_sym_const] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [sym_cmd_identifier] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_def] = ACTIONS(736), + [anon_sym_def_DASHenv] = ACTIONS(736), + [anon_sym_export_DASHenv] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_use] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_error] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_loop] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_match] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_try] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_source] = ACTIONS(736), + [anon_sym_source_DASHenv] = ACTIONS(736), + [anon_sym_register] = ACTIONS(736), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_hide_DASHenv] = ACTIONS(736), + [anon_sym_overlay] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_where] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [311] = { - [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [267] = { + [sym_comment] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(901), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), [anon_sym_POUND] = ACTIONS(3), }, - [312] = { - [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [268] = { + [sym_comment] = STATE(268), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [269] = { + [sym_comment] = STATE(269), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(802), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_mod] = ACTIONS(800), + [anon_sym_SLASH_SLASH] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_bit_DASHshl] = ACTIONS(804), + [anon_sym_bit_DASHshr] = ACTIONS(804), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_LT2] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_not_DASHin] = ACTIONS(798), + [anon_sym_starts_DASHwith] = ACTIONS(798), + [anon_sym_ends_DASHwith] = ACTIONS(798), + [anon_sym_EQ_TILDE] = ACTIONS(806), + [anon_sym_BANG_TILDE] = ACTIONS(806), + [anon_sym_bit_DASHand] = ACTIONS(808), + [anon_sym_bit_DASHxor] = ACTIONS(810), + [anon_sym_bit_DASHor] = ACTIONS(812), + [anon_sym_and] = ACTIONS(814), + [anon_sym_xor] = ACTIONS(816), + [anon_sym_or] = ACTIONS(818), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [314] = { - [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [270] = { + [sym_comment] = STATE(270), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [315] = { - [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [271] = { + [sym_comment] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [316] = { - [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [272] = { + [sym_comment] = STATE(272), + [ts_builtin_sym_end] = ACTIONS(1000), + [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), + [anon_sym_SEMI] = ACTIONS(998), + [sym_cmd_identifier] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_where] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_not] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(998), + [sym_short_flag] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(3), }, - [317] = { - [sym_comment] = STATE(317), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [273] = { + [sym_comment] = STATE(273), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [318] = { - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), + [274] = { + [sym_comment] = STATE(274), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [275] = { + [sym_comment] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(3), + }, + [276] = { + [sym_comment] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(940), + [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), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_CARET] = ACTIONS(938), + [sym_short_flag] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [277] = { + [sym_comment] = STATE(277), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [278] = { + [sym_comment] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(932), + [anon_sym_export] = ACTIONS(930), + [anon_sym_alias] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_let_DASHenv] = ACTIONS(930), + [anon_sym_mut] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [sym_cmd_identifier] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_def] = ACTIONS(930), + [anon_sym_def_DASHenv] = ACTIONS(930), + [anon_sym_export_DASHenv] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_use] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_error] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_source] = ACTIONS(930), + [anon_sym_source_DASHenv] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_hide_DASHenv] = ACTIONS(930), + [anon_sym_overlay] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_where] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_not] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(930), + [sym_short_flag] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(3), + }, + [279] = { + [sym_comment] = STATE(279), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_def_DASHenv] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [sym_short_flag] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [280] = { + [sym_comment] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [281] = { + [sym_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [sym_short_flag] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(3), + }, + [282] = { + [sym_comment] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(924), + [anon_sym_export] = ACTIONS(922), + [anon_sym_alias] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_let_DASHenv] = ACTIONS(922), + [anon_sym_mut] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [sym_cmd_identifier] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_def] = ACTIONS(922), + [anon_sym_def_DASHenv] = ACTIONS(922), + [anon_sym_export_DASHenv] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_module] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_source] = ACTIONS(922), + [anon_sym_source_DASHenv] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_hide_DASHenv] = ACTIONS(922), + [anon_sym_overlay] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [sym_short_flag] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(3), + }, + [283] = { + [sym_comment] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [sym_cmd_identifier] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_def_DASHenv] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), [anon_sym_if] = ACTIONS(1018), [anon_sym_match] = ACTIONS(1018), [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), [anon_sym_try] = ACTIONS(1018), [anon_sym_return] = ACTIONS(1018), [anon_sym_source] = ACTIONS(1018), @@ -83349,2823 +80400,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), [anon_sym_CARET] = ACTIONS(1018), + [sym_short_flag] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(3), }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [sym_cmd_identifier] = ACTIONS(980), - [anon_sym_LF] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_def_DASHenv] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_where] = ACTIONS(980), - [anon_sym_STAR_STAR] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_bit_DASHshl] = ACTIONS(980), - [anon_sym_bit_DASHshr] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_not_DASHin] = ACTIONS(980), - [anon_sym_starts_DASHwith] = ACTIONS(980), - [anon_sym_ends_DASHwith] = ACTIONS(980), - [anon_sym_EQ_TILDE] = ACTIONS(980), - [anon_sym_BANG_TILDE] = ACTIONS(980), - [anon_sym_bit_DASHand] = ACTIONS(980), - [anon_sym_bit_DASHxor] = ACTIONS(980), - [anon_sym_bit_DASHor] = ACTIONS(980), - [anon_sym_and] = ACTIONS(980), - [anon_sym_xor] = ACTIONS(980), - [anon_sym_or] = ACTIONS(980), - [anon_sym_not] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [sym_val_nothing] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(980), - [anon_sym_DASHinf] = ACTIONS(980), - [anon_sym_NaN] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [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_CARET] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [sym_cmd_identifier] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_def_DASHenv] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_where] = ACTIONS(972), - [anon_sym_STAR_STAR] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_bit_DASHshl] = ACTIONS(972), - [anon_sym_bit_DASHshr] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_not_DASHin] = ACTIONS(972), - [anon_sym_starts_DASHwith] = ACTIONS(972), - [anon_sym_ends_DASHwith] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_BANG_TILDE] = ACTIONS(972), - [anon_sym_bit_DASHand] = ACTIONS(972), - [anon_sym_bit_DASHxor] = ACTIONS(972), - [anon_sym_bit_DASHor] = ACTIONS(972), - [anon_sym_and] = ACTIONS(972), - [anon_sym_xor] = ACTIONS(972), - [anon_sym_or] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [sym_val_nothing] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = 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(972), - [aux_sym_val_number_token5] = ACTIONS(972), - [anon_sym_inf] = ACTIONS(972), - [anon_sym_DASHinf] = ACTIONS(972), - [anon_sym_NaN] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(972), - [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_CARET] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), - }, - [321] = { - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [322] = { - [sym_comment] = STATE(322), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [323] = { - [sym_comment] = STATE(323), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [324] = { - [sym_comment] = STATE(324), - [anon_sym_export] = ACTIONS(960), - [anon_sym_alias] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_let_DASHenv] = ACTIONS(960), - [anon_sym_mut] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_cmd_identifier] = ACTIONS(960), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_def] = ACTIONS(960), - [anon_sym_def_DASHenv] = ACTIONS(960), - [anon_sym_export_DASHenv] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_source] = ACTIONS(960), - [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_hide] = ACTIONS(960), - [anon_sym_hide_DASHenv] = ACTIONS(960), - [anon_sym_overlay] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_STAR_STAR] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_SLASH_SLASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_bit_DASHshl] = ACTIONS(960), - [anon_sym_bit_DASHshr] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_not_DASHin] = ACTIONS(960), - [anon_sym_starts_DASHwith] = ACTIONS(960), - [anon_sym_ends_DASHwith] = ACTIONS(960), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_BANG_TILDE] = ACTIONS(960), - [anon_sym_bit_DASHand] = ACTIONS(960), - [anon_sym_bit_DASHxor] = ACTIONS(960), - [anon_sym_bit_DASHor] = ACTIONS(960), - [anon_sym_and] = ACTIONS(960), - [anon_sym_xor] = ACTIONS(960), - [anon_sym_or] = ACTIONS(960), - [anon_sym_not] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [sym_val_nothing] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(960), - [anon_sym_DASHinf] = ACTIONS(960), - [anon_sym_NaN] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [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_CARET] = ACTIONS(960), + [284] = { + [sym_comment] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [325] = { - [sym_comment] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(910), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), + [285] = { + [sym_comment] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [326] = { - [sym_comment] = STATE(326), - [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), - [anon_sym_SEMI] = ACTIONS(948), - [sym_cmd_identifier] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_where] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_CARET] = ACTIONS(948), + [286] = { + [sym_comment] = STATE(286), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [327] = { - [sym_comment] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), + [287] = { + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [sym_short_flag] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(3), }, - [328] = { - [sym_comment] = STATE(328), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), + [288] = { + [sym_comment] = STATE(288), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), [anon_sym_POUND] = ACTIONS(3), }, - [329] = { - [sym_comment] = STATE(329), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [sym_cmd_identifier] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_def_DASHenv] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_where] = ACTIONS(984), - [anon_sym_STAR_STAR] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_bit_DASHshl] = ACTIONS(984), - [anon_sym_bit_DASHshr] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_not_DASHin] = ACTIONS(984), - [anon_sym_starts_DASHwith] = ACTIONS(984), - [anon_sym_ends_DASHwith] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(984), - [anon_sym_BANG_TILDE] = ACTIONS(984), - [anon_sym_bit_DASHand] = ACTIONS(984), - [anon_sym_bit_DASHxor] = ACTIONS(984), - [anon_sym_bit_DASHor] = ACTIONS(984), - [anon_sym_and] = ACTIONS(984), - [anon_sym_xor] = ACTIONS(984), - [anon_sym_or] = ACTIONS(984), - [anon_sym_not] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [sym_val_nothing] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(984), - [anon_sym_DASHinf] = ACTIONS(984), - [anon_sym_NaN] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [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_CARET] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - }, - [330] = { - [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [331] = { - [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [332] = { - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [333] = { - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [sym_cmd_identifier] = ACTIONS(988), - [anon_sym_LF] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_def_DASHenv] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_where] = ACTIONS(988), - [anon_sym_STAR_STAR] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_bit_DASHshl] = ACTIONS(988), - [anon_sym_bit_DASHshr] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_not_DASHin] = ACTIONS(988), - [anon_sym_starts_DASHwith] = ACTIONS(988), - [anon_sym_ends_DASHwith] = ACTIONS(988), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_BANG_TILDE] = ACTIONS(988), - [anon_sym_bit_DASHand] = ACTIONS(988), - [anon_sym_bit_DASHxor] = ACTIONS(988), - [anon_sym_bit_DASHor] = ACTIONS(988), - [anon_sym_and] = ACTIONS(988), - [anon_sym_xor] = ACTIONS(988), - [anon_sym_or] = ACTIONS(988), - [anon_sym_not] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [sym_val_nothing] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym_val_number_token1] = ACTIONS(988), - [aux_sym_val_number_token2] = ACTIONS(988), - [aux_sym_val_number_token3] = ACTIONS(988), - [aux_sym_val_number_token4] = ACTIONS(988), - [aux_sym_val_number_token5] = ACTIONS(988), - [anon_sym_inf] = ACTIONS(988), - [anon_sym_DASHinf] = ACTIONS(988), - [anon_sym_NaN] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_CARET] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - }, - [334] = { - [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_def_DASHenv] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [sym_val_nothing] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym_val_number_token1] = ACTIONS(1006), - [aux_sym_val_number_token2] = ACTIONS(1006), - [aux_sym_val_number_token3] = ACTIONS(1006), - [aux_sym_val_number_token4] = ACTIONS(1006), - [aux_sym_val_number_token5] = ACTIONS(1006), - [anon_sym_inf] = ACTIONS(1006), - [anon_sym_DASHinf] = ACTIONS(1006), - [anon_sym_NaN] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [335] = { - [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - }, - [336] = { - [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_cmd_identifier] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_def_DASHenv] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_where] = ACTIONS(1014), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_not] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [sym_val_nothing] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym_val_number_token1] = ACTIONS(1014), - [aux_sym_val_number_token2] = ACTIONS(1014), - [aux_sym_val_number_token3] = ACTIONS(1014), - [aux_sym_val_number_token4] = ACTIONS(1014), - [aux_sym_val_number_token5] = ACTIONS(1014), - [anon_sym_inf] = ACTIONS(1014), - [anon_sym_DASHinf] = ACTIONS(1014), - [anon_sym_NaN] = ACTIONS(1014), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(3), - }, - [337] = { - [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [338] = { - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [339] = { - [sym_comment] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(916), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [sym_cmd_identifier] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_def_DASHenv] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_where] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_not] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_def_DASHenv] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [sym_cmd_identifier] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_def] = ACTIONS(940), - [anon_sym_def_DASHenv] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_error] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_where] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_CARET] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(3), - }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [sym_cmd_identifier] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_def_DASHenv] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_RPAREN] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_where] = ACTIONS(952), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_not] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [sym_val_nothing] = ACTIONS(952), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(952), - [anon_sym_DASHinf] = ACTIONS(952), - [anon_sym_NaN] = ACTIONS(952), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [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_CARET] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(3), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(956), - [anon_sym_alias] = ACTIONS(956), - [anon_sym_let] = ACTIONS(956), - [anon_sym_let_DASHenv] = ACTIONS(956), - [anon_sym_mut] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [sym_cmd_identifier] = ACTIONS(956), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_def] = ACTIONS(956), - [anon_sym_def_DASHenv] = ACTIONS(956), - [anon_sym_export_DASHenv] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_use] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_error] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_in] = ACTIONS(956), - [anon_sym_loop] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_match] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_source] = ACTIONS(956), - [anon_sym_source_DASHenv] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_hide] = ACTIONS(956), - [anon_sym_hide_DASHenv] = ACTIONS(956), - [anon_sym_overlay] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_where] = ACTIONS(956), - [anon_sym_STAR_STAR] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(956), - [anon_sym_SLASH_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_bit_DASHshl] = ACTIONS(956), - [anon_sym_bit_DASHshr] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_not_DASHin] = ACTIONS(956), - [anon_sym_starts_DASHwith] = ACTIONS(956), - [anon_sym_ends_DASHwith] = ACTIONS(956), - [anon_sym_EQ_TILDE] = ACTIONS(956), - [anon_sym_BANG_TILDE] = ACTIONS(956), - [anon_sym_bit_DASHand] = ACTIONS(956), - [anon_sym_bit_DASHxor] = ACTIONS(956), - [anon_sym_bit_DASHor] = ACTIONS(956), - [anon_sym_and] = ACTIONS(956), - [anon_sym_xor] = ACTIONS(956), - [anon_sym_or] = ACTIONS(956), - [anon_sym_not] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [sym_val_nothing] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(956), - [anon_sym_DASHinf] = ACTIONS(956), - [anon_sym_NaN] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(956), - [anon_sym_0o] = ACTIONS(956), - [anon_sym_0x] = ACTIONS(956), - [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_CARET] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(3), - }, - [345] = { - [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_def_DASHenv] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [sym_val_nothing] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym_val_number_token1] = ACTIONS(1065), - [aux_sym_val_number_token2] = ACTIONS(1065), - [aux_sym_val_number_token3] = ACTIONS(1065), - [aux_sym_val_number_token4] = ACTIONS(1065), - [aux_sym_val_number_token5] = ACTIONS(1065), - [anon_sym_inf] = ACTIONS(1065), - [anon_sym_DASHinf] = ACTIONS(1065), - [anon_sym_NaN] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(3), - }, - [346] = { - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [sym_cmd_identifier] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_def_DASHenv] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_where] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_not] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_cmd_identifier] = ACTIONS(968), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_def] = ACTIONS(968), - [anon_sym_def_DASHenv] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_not] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [sym_val_nothing] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(968), - [anon_sym_DASHinf] = ACTIONS(968), - [anon_sym_NaN] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [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_CARET] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [348] = { - [sym_comment] = STATE(348), + [289] = { + [sym_comment] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(1012), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -86183,11 +80913,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), @@ -86199,7 +80929,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), @@ -86259,107 +80988,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [349] = { - [sym_comment] = STATE(349), - [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), - [anon_sym_SEMI] = ACTIONS(964), - [sym_cmd_identifier] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(966), - [anon_sym_def] = ACTIONS(964), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_where] = ACTIONS(964), - [anon_sym_STAR_STAR] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_mod] = ACTIONS(964), - [anon_sym_SLASH_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_bit_DASHshl] = ACTIONS(964), - [anon_sym_bit_DASHshr] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_not_DASHin] = ACTIONS(964), - [anon_sym_starts_DASHwith] = ACTIONS(964), - [anon_sym_ends_DASHwith] = ACTIONS(964), - [anon_sym_EQ_TILDE] = ACTIONS(964), - [anon_sym_BANG_TILDE] = ACTIONS(964), - [anon_sym_bit_DASHand] = ACTIONS(964), - [anon_sym_bit_DASHxor] = ACTIONS(964), - [anon_sym_bit_DASHor] = ACTIONS(964), - [anon_sym_and] = ACTIONS(964), - [anon_sym_xor] = ACTIONS(964), - [anon_sym_or] = ACTIONS(964), - [anon_sym_not] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [sym_val_nothing] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(964), - [anon_sym_DASHinf] = ACTIONS(964), - [anon_sym_NaN] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(964), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [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_CARET] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(3), - }, - [350] = { - [sym_comment] = STATE(350), + [290] = { + [sym_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1004), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -86377,12 +81011,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), [anon_sym_error] = ACTIONS(1002), [anon_sym_GT] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), [anon_sym_break] = ACTIONS(1002), [anon_sym_continue] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1002), @@ -86393,7 +81027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1002), [anon_sym_match] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), [anon_sym_try] = ACTIONS(1002), [anon_sym_return] = ACTIONS(1002), [anon_sym_source] = ACTIONS(1002), @@ -86402,16 +81035,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1002), [anon_sym_hide_DASHenv] = ACTIONS(1002), [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), [anon_sym_where] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_SLASH_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_bit_DASHshl] = ACTIONS(1002), - [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), [anon_sym_EQ_EQ] = ACTIONS(1002), [anon_sym_BANG_EQ] = ACTIONS(1002), [anon_sym_LT2] = ACTIONS(1002), @@ -86453,396 +81086,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [351] = { - [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1029), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_let_DASHenv] = ACTIONS(1029), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [sym_cmd_identifier] = ACTIONS(1029), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_def_DASHenv] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_source] = ACTIONS(1029), - [anon_sym_source_DASHenv] = ACTIONS(1029), - [anon_sym_register] = ACTIONS(1029), - [anon_sym_hide] = ACTIONS(1029), - [anon_sym_hide_DASHenv] = ACTIONS(1029), - [anon_sym_overlay] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_STAR_STAR] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_bit_DASHshl] = ACTIONS(1029), - [anon_sym_bit_DASHshr] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT2] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_not_DASHin] = ACTIONS(1029), - [anon_sym_starts_DASHwith] = ACTIONS(1029), - [anon_sym_ends_DASHwith] = ACTIONS(1029), - [anon_sym_EQ_TILDE] = ACTIONS(1029), - [anon_sym_BANG_TILDE] = ACTIONS(1029), - [anon_sym_bit_DASHand] = ACTIONS(1029), - [anon_sym_bit_DASHxor] = ACTIONS(1029), - [anon_sym_bit_DASHor] = ACTIONS(1029), - [anon_sym_and] = ACTIONS(1029), - [anon_sym_xor] = ACTIONS(1029), - [anon_sym_or] = ACTIONS(1029), - [anon_sym_not] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [sym_val_nothing] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [aux_sym_val_number_token1] = ACTIONS(1029), - [aux_sym_val_number_token2] = ACTIONS(1029), - [aux_sym_val_number_token3] = ACTIONS(1029), - [aux_sym_val_number_token4] = ACTIONS(1029), - [aux_sym_val_number_token5] = ACTIONS(1029), - [anon_sym_inf] = ACTIONS(1029), - [anon_sym_DASHinf] = ACTIONS(1029), - [anon_sym_NaN] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1029), - [anon_sym_0o] = ACTIONS(1029), - [anon_sym_0x] = ACTIONS(1029), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(3), - }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1025), - [anon_sym_alias] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_let_DASHenv] = ACTIONS(1025), - [anon_sym_mut] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1025), - [sym_cmd_identifier] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1025), - [anon_sym_def_DASHenv] = ACTIONS(1025), - [anon_sym_export_DASHenv] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_error] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_source] = ACTIONS(1025), - [anon_sym_source_DASHenv] = ACTIONS(1025), - [anon_sym_register] = ACTIONS(1025), - [anon_sym_hide] = ACTIONS(1025), - [anon_sym_hide_DASHenv] = ACTIONS(1025), - [anon_sym_overlay] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_not] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), + [291] = { + [sym_comment] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [353] = { - [sym__expression] = STATE(152), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(639), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), + [292] = { + [sym_comment] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [354] = { - [sym__expression] = STATE(164), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(382), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [355] = { - [sym_comment] = STATE(355), + [294] = { + [sym_comment] = STATE(294), [ts_builtin_sym_end] = ACTIONS(1004), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), @@ -86864,12 +81406,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), [anon_sym_error] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), [anon_sym_break] = ACTIONS(1002), [anon_sym_continue] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1002), - [anon_sym_in] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), [anon_sym_loop] = ACTIONS(1002), [anon_sym_while] = ACTIONS(1002), [anon_sym_do] = ACTIONS(1002), @@ -86884,27 +81427,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1002), [anon_sym_hide_DASHenv] = ACTIONS(1002), [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), [anon_sym_where] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_SLASH_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_bit_DASHshl] = ACTIONS(1002), - [anon_sym_bit_DASHshr] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1002), - [anon_sym_not_DASHin] = ACTIONS(1002), - [anon_sym_starts_DASHwith] = ACTIONS(1002), - [anon_sym_ends_DASHwith] = ACTIONS(1002), - [anon_sym_EQ_TILDE] = ACTIONS(1002), - [anon_sym_BANG_TILDE] = ACTIONS(1002), - [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), [anon_sym_bit_DASHxor] = ACTIONS(1002), [anon_sym_bit_DASHor] = ACTIONS(1002), [anon_sym_and] = ACTIONS(1002), @@ -86935,1819 +81478,2151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [356] = { - [sym__expression] = STATE(148), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(579), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [357] = { - [sym_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1027), - [anon_sym_export] = ACTIONS(1025), - [anon_sym_alias] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_let_DASHenv] = ACTIONS(1025), - [anon_sym_mut] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1025), - [sym_cmd_identifier] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1025), - [anon_sym_def_DASHenv] = ACTIONS(1025), - [anon_sym_export_DASHenv] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_error] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_source] = ACTIONS(1025), - [anon_sym_source_DASHenv] = ACTIONS(1025), - [anon_sym_register] = ACTIONS(1025), - [anon_sym_hide] = ACTIONS(1025), - [anon_sym_hide_DASHenv] = ACTIONS(1025), - [anon_sym_overlay] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_not] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), + [295] = { + [sym_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [358] = { - [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(958), - [anon_sym_export] = ACTIONS(956), - [anon_sym_alias] = ACTIONS(956), - [anon_sym_let] = ACTIONS(956), - [anon_sym_let_DASHenv] = ACTIONS(956), - [anon_sym_mut] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [sym_cmd_identifier] = ACTIONS(956), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_def] = ACTIONS(956), - [anon_sym_def_DASHenv] = ACTIONS(956), - [anon_sym_export_DASHenv] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_use] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_error] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_in] = ACTIONS(956), - [anon_sym_loop] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_match] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_source] = ACTIONS(956), - [anon_sym_source_DASHenv] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_hide] = ACTIONS(956), - [anon_sym_hide_DASHenv] = ACTIONS(956), - [anon_sym_overlay] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_where] = ACTIONS(956), - [anon_sym_STAR_STAR] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(956), - [anon_sym_SLASH_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_bit_DASHshl] = ACTIONS(956), - [anon_sym_bit_DASHshr] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_not_DASHin] = ACTIONS(956), - [anon_sym_starts_DASHwith] = ACTIONS(956), - [anon_sym_ends_DASHwith] = ACTIONS(956), - [anon_sym_EQ_TILDE] = ACTIONS(956), - [anon_sym_BANG_TILDE] = ACTIONS(956), - [anon_sym_bit_DASHand] = ACTIONS(956), - [anon_sym_bit_DASHxor] = ACTIONS(956), - [anon_sym_bit_DASHor] = ACTIONS(956), - [anon_sym_and] = ACTIONS(956), - [anon_sym_xor] = ACTIONS(956), - [anon_sym_or] = ACTIONS(956), - [anon_sym_not] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [sym_val_nothing] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(956), - [anon_sym_DASHinf] = ACTIONS(956), - [anon_sym_NaN] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(956), - [anon_sym_0o] = ACTIONS(956), - [anon_sym_0x] = ACTIONS(956), - [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_CARET] = ACTIONS(956), + [296] = { + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_def_DASHenv] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [sym_short_flag] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [359] = { - [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [sym_cmd_identifier] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_def_DASHenv] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_where] = ACTIONS(984), - [anon_sym_STAR_STAR] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_bit_DASHshl] = ACTIONS(984), - [anon_sym_bit_DASHshr] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_not_DASHin] = ACTIONS(984), - [anon_sym_starts_DASHwith] = ACTIONS(984), - [anon_sym_ends_DASHwith] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(984), - [anon_sym_BANG_TILDE] = ACTIONS(984), - [anon_sym_bit_DASHand] = ACTIONS(984), - [anon_sym_bit_DASHxor] = ACTIONS(984), - [anon_sym_bit_DASHor] = ACTIONS(984), - [anon_sym_and] = ACTIONS(984), - [anon_sym_xor] = ACTIONS(984), - [anon_sym_or] = ACTIONS(984), - [anon_sym_not] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [sym_val_nothing] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(984), - [anon_sym_DASHinf] = ACTIONS(984), - [anon_sym_NaN] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [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_CARET] = ACTIONS(984), + [297] = { + [sym_comment] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [360] = { - [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(954), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [sym_cmd_identifier] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_def_DASHenv] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_where] = ACTIONS(952), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_not] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [sym_val_nothing] = ACTIONS(952), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(952), - [anon_sym_DASHinf] = ACTIONS(952), - [anon_sym_NaN] = ACTIONS(952), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [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_CARET] = ACTIONS(952), + [298] = { + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [361] = { - [sym_comment] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [sym_cmd_identifier] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_def] = ACTIONS(940), - [anon_sym_def_DASHenv] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_error] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_where] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_CARET] = ACTIONS(940), + [299] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), + [sym_short_flag] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, - [362] = { - [sym__expression] = STATE(152), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(388), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(362), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [363] = { - [sym__expression] = STATE(152), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(356), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(1016), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_cmd_identifier] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_def_DASHenv] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_where] = ACTIONS(1014), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_not] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [sym_val_nothing] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym_val_number_token1] = ACTIONS(1014), - [aux_sym_val_number_token2] = ACTIONS(1014), - [aux_sym_val_number_token3] = ACTIONS(1014), - [aux_sym_val_number_token4] = ACTIONS(1014), - [aux_sym_val_number_token5] = ACTIONS(1014), - [anon_sym_inf] = ACTIONS(1014), - [anon_sym_DASHinf] = ACTIONS(1014), - [anon_sym_NaN] = ACTIONS(1014), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), + [300] = { + [sym_comment] = STATE(300), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [365] = { - [sym__expression] = STATE(159), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(362), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [301] = { + [sym_comment] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(117), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [366] = { - [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [302] = { + [sym_comment] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [367] = { - [sym__expression] = STATE(159), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(363), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [303] = { + [sym_comment] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [368] = { - [sym__expression] = STATE(159), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(353), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [304] = { + [sym_comment] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [369] = { - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(107), - [anon_sym_let] = ACTIONS(107), - [anon_sym_let_DASHenv] = ACTIONS(107), - [anon_sym_mut] = ACTIONS(107), - [anon_sym_const] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(107), - [sym_cmd_identifier] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_def] = ACTIONS(107), - [anon_sym_def_DASHenv] = ACTIONS(107), - [anon_sym_export_DASHenv] = ACTIONS(107), - [anon_sym_extern] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_use] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_error] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_break] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(107), - [anon_sym_for] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_loop] = ACTIONS(107), - [anon_sym_while] = ACTIONS(107), - [anon_sym_do] = ACTIONS(107), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_try] = ACTIONS(107), - [anon_sym_return] = ACTIONS(107), - [anon_sym_source] = ACTIONS(107), - [anon_sym_source_DASHenv] = ACTIONS(107), - [anon_sym_register] = ACTIONS(107), - [anon_sym_hide] = ACTIONS(107), - [anon_sym_hide_DASHenv] = ACTIONS(107), - [anon_sym_overlay] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_where] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_not] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_CARET] = ACTIONS(107), + [305] = { + [sym_comment] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(920), + [anon_sym_export] = ACTIONS(918), + [anon_sym_alias] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_let_DASHenv] = ACTIONS(918), + [anon_sym_mut] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [sym_cmd_identifier] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_def] = ACTIONS(918), + [anon_sym_def_DASHenv] = ACTIONS(918), + [anon_sym_export_DASHenv] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_module] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_error] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_source] = ACTIONS(918), + [anon_sym_source_DASHenv] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_hide] = ACTIONS(918), + [anon_sym_hide_DASHenv] = ACTIONS(918), + [anon_sym_overlay] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_where] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_not] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), + [sym_short_flag] = ACTIONS(918), [anon_sym_POUND] = ACTIONS(3), }, - [370] = { - [sym__expression] = STATE(159), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(640), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [306] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(944), + [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), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_CARET] = ACTIONS(942), + [sym_short_flag] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(3), }, - [371] = { - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(962), - [anon_sym_export] = ACTIONS(960), - [anon_sym_alias] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_let_DASHenv] = ACTIONS(960), - [anon_sym_mut] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_cmd_identifier] = ACTIONS(960), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_def] = ACTIONS(960), - [anon_sym_def_DASHenv] = ACTIONS(960), - [anon_sym_export_DASHenv] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_source] = ACTIONS(960), - [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_hide] = ACTIONS(960), - [anon_sym_hide_DASHenv] = ACTIONS(960), - [anon_sym_overlay] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_STAR_STAR] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_SLASH_SLASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_bit_DASHshl] = ACTIONS(960), - [anon_sym_bit_DASHshr] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_not_DASHin] = ACTIONS(960), - [anon_sym_starts_DASHwith] = ACTIONS(960), - [anon_sym_ends_DASHwith] = ACTIONS(960), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_BANG_TILDE] = ACTIONS(960), - [anon_sym_bit_DASHand] = ACTIONS(960), - [anon_sym_bit_DASHxor] = ACTIONS(960), - [anon_sym_bit_DASHor] = ACTIONS(960), - [anon_sym_and] = ACTIONS(960), - [anon_sym_xor] = ACTIONS(960), - [anon_sym_or] = ACTIONS(960), - [anon_sym_not] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [sym_val_nothing] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(960), - [anon_sym_DASHinf] = ACTIONS(960), - [anon_sym_NaN] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [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_CARET] = ACTIONS(960), + [307] = { + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [372] = { - [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), + [308] = { + [sym_comment] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(948), + [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), + [anon_sym_SEMI] = ACTIONS(946), + [sym_cmd_identifier] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_where] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_not] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_CARET] = ACTIONS(946), + [sym_short_flag] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), }, - [373] = { - [sym__expression] = STATE(147), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(584), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(804), + [309] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [374] = { - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(966), - [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), - [anon_sym_SEMI] = ACTIONS(964), - [sym_cmd_identifier] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(966), - [anon_sym_def] = ACTIONS(964), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_where] = ACTIONS(964), - [anon_sym_STAR_STAR] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_mod] = ACTIONS(964), - [anon_sym_SLASH_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_bit_DASHshl] = ACTIONS(964), - [anon_sym_bit_DASHshr] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_not_DASHin] = ACTIONS(964), - [anon_sym_starts_DASHwith] = ACTIONS(964), - [anon_sym_ends_DASHwith] = ACTIONS(964), - [anon_sym_EQ_TILDE] = ACTIONS(964), - [anon_sym_BANG_TILDE] = ACTIONS(964), - [anon_sym_bit_DASHand] = ACTIONS(964), - [anon_sym_bit_DASHxor] = ACTIONS(964), - [anon_sym_bit_DASHor] = ACTIONS(964), - [anon_sym_and] = ACTIONS(964), - [anon_sym_xor] = ACTIONS(964), - [anon_sym_or] = ACTIONS(964), - [anon_sym_not] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [sym_val_nothing] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(964), - [anon_sym_DASHinf] = ACTIONS(964), + [310] = { + [sym_comment] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [sym_cmd_identifier] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_def_DASHenv] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_bit_DASHshl] = ACTIONS(980), + [anon_sym_bit_DASHshr] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_not_DASHin] = ACTIONS(980), + [anon_sym_starts_DASHwith] = ACTIONS(980), + [anon_sym_ends_DASHwith] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_BANG_TILDE] = ACTIONS(980), + [anon_sym_bit_DASHand] = ACTIONS(980), + [anon_sym_bit_DASHxor] = ACTIONS(980), + [anon_sym_bit_DASHor] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_not] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [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_CARET] = ACTIONS(980), + [sym_short_flag] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + }, + [311] = { + [sym_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(958), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [sym_cmd_identifier] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_def_DASHenv] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_STAR_STAR] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_bit_DASHshl] = ACTIONS(956), + [anon_sym_bit_DASHshr] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_not_DASHin] = ACTIONS(956), + [anon_sym_starts_DASHwith] = ACTIONS(956), + [anon_sym_ends_DASHwith] = ACTIONS(956), + [anon_sym_EQ_TILDE] = ACTIONS(956), + [anon_sym_BANG_TILDE] = ACTIONS(956), + [anon_sym_bit_DASHand] = ACTIONS(956), + [anon_sym_bit_DASHxor] = ACTIONS(956), + [anon_sym_bit_DASHor] = ACTIONS(956), + [anon_sym_and] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(956), + [anon_sym_or] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [sym_val_nothing] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(956), + [anon_sym_DASHinf] = ACTIONS(956), + [anon_sym_NaN] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [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_CARET] = ACTIONS(956), + [sym_short_flag] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(3), + }, + [312] = { + [sym_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(887), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [313] = { + [sym_comment] = STATE(313), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(3), + }, + [314] = { + [sym_comment] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [sym_cmd_identifier] = ACTIONS(952), + [anon_sym_LF] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_def_DASHenv] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_where] = ACTIONS(952), + [anon_sym_STAR_STAR] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_mod] = ACTIONS(952), + [anon_sym_SLASH_SLASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_bit_DASHshl] = ACTIONS(952), + [anon_sym_bit_DASHshr] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_not_DASHin] = ACTIONS(952), + [anon_sym_starts_DASHwith] = ACTIONS(952), + [anon_sym_ends_DASHwith] = ACTIONS(952), + [anon_sym_EQ_TILDE] = ACTIONS(952), + [anon_sym_BANG_TILDE] = ACTIONS(952), + [anon_sym_bit_DASHand] = ACTIONS(952), + [anon_sym_bit_DASHxor] = ACTIONS(952), + [anon_sym_bit_DASHor] = ACTIONS(952), + [anon_sym_and] = ACTIONS(952), + [anon_sym_xor] = ACTIONS(952), + [anon_sym_or] = ACTIONS(952), + [anon_sym_not] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [sym_val_nothing] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(952), + [anon_sym_DASHinf] = ACTIONS(952), + [anon_sym_NaN] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [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_CARET] = ACTIONS(952), + [sym_short_flag] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(3), + }, + [315] = { + [sym_comment] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(962), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [sym_cmd_identifier] = ACTIONS(960), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_def_DASHenv] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_bit_DASHshl] = ACTIONS(960), + [anon_sym_bit_DASHshr] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_not_DASHin] = ACTIONS(960), + [anon_sym_starts_DASHwith] = ACTIONS(960), + [anon_sym_ends_DASHwith] = ACTIONS(960), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_BANG_TILDE] = ACTIONS(960), + [anon_sym_bit_DASHand] = ACTIONS(960), + [anon_sym_bit_DASHxor] = ACTIONS(960), + [anon_sym_bit_DASHor] = ACTIONS(960), + [anon_sym_and] = ACTIONS(960), + [anon_sym_xor] = ACTIONS(960), + [anon_sym_or] = ACTIONS(960), + [anon_sym_not] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [sym_val_nothing] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(960), + [anon_sym_DASHinf] = ACTIONS(960), + [anon_sym_NaN] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [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_CARET] = ACTIONS(960), + [sym_short_flag] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(3), + }, + [316] = { + [sym_comment] = STATE(316), + [ts_builtin_sym_end] = ACTIONS(966), + [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), + [anon_sym_SEMI] = ACTIONS(964), + [sym_cmd_identifier] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_STAR_STAR] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_bit_DASHshl] = ACTIONS(964), + [anon_sym_bit_DASHshr] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_not_DASHin] = ACTIONS(964), + [anon_sym_starts_DASHwith] = ACTIONS(964), + [anon_sym_ends_DASHwith] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_BANG_TILDE] = ACTIONS(964), + [anon_sym_bit_DASHand] = ACTIONS(964), + [anon_sym_bit_DASHxor] = ACTIONS(964), + [anon_sym_bit_DASHor] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_not] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [sym_val_nothing] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(964), + [anon_sym_DASHinf] = ACTIONS(964), [anon_sym_NaN] = ACTIONS(964), [anon_sym_0b] = ACTIONS(964), [anon_sym_0o] = ACTIONS(964), @@ -88759,1066 +83634,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), [anon_sym_CARET] = ACTIONS(964), + [sym_short_flag] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), }, - [375] = { - [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1031), - [anon_sym_export] = ACTIONS(1029), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_let_DASHenv] = ACTIONS(1029), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [sym_cmd_identifier] = ACTIONS(1029), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_def_DASHenv] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_source] = ACTIONS(1029), - [anon_sym_source_DASHenv] = ACTIONS(1029), - [anon_sym_register] = ACTIONS(1029), - [anon_sym_hide] = ACTIONS(1029), - [anon_sym_hide_DASHenv] = ACTIONS(1029), - [anon_sym_overlay] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_STAR_STAR] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_bit_DASHshl] = ACTIONS(1029), - [anon_sym_bit_DASHshr] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT2] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_not_DASHin] = ACTIONS(1029), - [anon_sym_starts_DASHwith] = ACTIONS(1029), - [anon_sym_ends_DASHwith] = ACTIONS(1029), - [anon_sym_EQ_TILDE] = ACTIONS(1029), - [anon_sym_BANG_TILDE] = ACTIONS(1029), - [anon_sym_bit_DASHand] = ACTIONS(1029), - [anon_sym_bit_DASHxor] = ACTIONS(1029), - [anon_sym_bit_DASHor] = ACTIONS(1029), - [anon_sym_and] = ACTIONS(1029), - [anon_sym_xor] = ACTIONS(1029), - [anon_sym_or] = ACTIONS(1029), - [anon_sym_not] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [sym_val_nothing] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [aux_sym_val_number_token1] = ACTIONS(1029), - [aux_sym_val_number_token2] = ACTIONS(1029), - [aux_sym_val_number_token3] = ACTIONS(1029), - [aux_sym_val_number_token4] = ACTIONS(1029), - [aux_sym_val_number_token5] = ACTIONS(1029), - [anon_sym_inf] = ACTIONS(1029), - [anon_sym_DASHinf] = ACTIONS(1029), - [anon_sym_NaN] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1029), - [anon_sym_0o] = ACTIONS(1029), - [anon_sym_0x] = ACTIONS(1029), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(3), - }, - [376] = { - [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(1093), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [377] = { - [sym_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [317] = { + [sym_expr_parenthesized] = STATE(439), + [sym_val_number] = STATE(439), + [sym_comment] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(828), + [anon_sym_export] = ACTIONS(826), + [anon_sym_alias] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_let_DASHenv] = ACTIONS(826), + [anon_sym_mut] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [sym_cmd_identifier] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_def] = ACTIONS(826), + [anon_sym_def_DASHenv] = ACTIONS(826), + [anon_sym_export_DASHenv] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_error] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_source] = ACTIONS(826), + [anon_sym_source_DASHenv] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_hide] = ACTIONS(826), + [anon_sym_hide_DASHenv] = ACTIONS(826), + [anon_sym_overlay] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_where] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_not] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_val_number_token1] = ACTIONS(1045), + [aux_sym_val_number_token2] = ACTIONS(1045), + [aux_sym_val_number_token3] = ACTIONS(1045), + [aux_sym_val_number_token4] = ACTIONS(1045), + [aux_sym_val_number_token5] = ACTIONS(1045), + [anon_sym_inf] = ACTIONS(1045), + [anon_sym_DASHinf] = ACTIONS(1045), + [anon_sym_NaN] = ACTIONS(1045), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), [anon_sym_POUND] = ACTIONS(3), }, - [378] = { - [sym__expression] = STATE(149), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(365), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(378), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), + [318] = { + [sym_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [379] = { - [sym__expression] = STATE(149), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(367), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), + [319] = { + [sym_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(970), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [sym_cmd_identifier] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_def_DASHenv] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_not] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [sym_val_nothing] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(968), + [anon_sym_DASHinf] = ACTIONS(968), + [anon_sym_NaN] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [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_CARET] = ACTIONS(968), + [sym_short_flag] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), }, - [380] = { - [sym__expression] = STATE(149), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(368), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), + [320] = { + [sym_comment] = STATE(320), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [sym_cmd_identifier] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_def_DASHenv] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_where] = ACTIONS(972), + [anon_sym_STAR_STAR] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_bit_DASHshl] = ACTIONS(972), + [anon_sym_bit_DASHshr] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_not_DASHin] = ACTIONS(972), + [anon_sym_starts_DASHwith] = ACTIONS(972), + [anon_sym_ends_DASHwith] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_BANG_TILDE] = ACTIONS(972), + [anon_sym_bit_DASHand] = ACTIONS(972), + [anon_sym_bit_DASHxor] = ACTIONS(972), + [anon_sym_bit_DASHor] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [sym_val_nothing] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = 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(972), + [aux_sym_val_number_token5] = ACTIONS(972), + [anon_sym_inf] = ACTIONS(972), + [anon_sym_DASHinf] = ACTIONS(972), + [anon_sym_NaN] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(972), + [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_CARET] = ACTIONS(972), + [sym_short_flag] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), }, - [381] = { - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_STAR_STAR] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1018), - [anon_sym_SLASH_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_bit_DASHshl] = ACTIONS(1018), - [anon_sym_bit_DASHshr] = ACTIONS(1018), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_not_DASHin] = ACTIONS(1018), - [anon_sym_starts_DASHwith] = ACTIONS(1018), - [anon_sym_ends_DASHwith] = ACTIONS(1018), - [anon_sym_EQ_TILDE] = ACTIONS(1018), - [anon_sym_BANG_TILDE] = ACTIONS(1018), - [anon_sym_bit_DASHand] = ACTIONS(1018), - [anon_sym_bit_DASHxor] = ACTIONS(1018), - [anon_sym_bit_DASHor] = ACTIONS(1018), - [anon_sym_and] = ACTIONS(1018), - [anon_sym_xor] = ACTIONS(1018), - [anon_sym_or] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [382] = { - [sym__expression] = STATE(149), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(370), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [383] = { - [sym__expression] = STATE(149), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(628), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [384] = { - [sym__expression] = STATE(164), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(379), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [385] = { - [sym__expression] = STATE(164), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(380), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), + [321] = { + [sym_comment] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_def_DASHenv] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [sym_short_flag] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [386] = { - [sym_comment] = STATE(386), + [322] = { + [sym_comment] = STATE(322), [ts_builtin_sym_end] = ACTIONS(978), [anon_sym_export] = ACTIONS(976), [anon_sym_alias] = ACTIONS(976), @@ -89841,6 +84151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(976), [anon_sym_error] = ACTIONS(976), [anon_sym_GT] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(976), [anon_sym_DASH] = ACTIONS(976), [anon_sym_break] = ACTIONS(976), [anon_sym_continue] = ACTIONS(976), @@ -89911,778 +84222,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), [anon_sym_CARET] = ACTIONS(976), + [sym_short_flag] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [387] = { - [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [388] = { - [sym__expression] = STATE(148), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(373), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [389] = { - [sym__expression] = STATE(164), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(383), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [390] = { - [sym_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [391] = { - [sym__expression] = STATE(163), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(385), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [392] = { - [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_def_DASHenv] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(1093), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [sym_val_nothing] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym_val_number_token1] = ACTIONS(1065), - [aux_sym_val_number_token2] = ACTIONS(1065), - [aux_sym_val_number_token3] = ACTIONS(1065), - [aux_sym_val_number_token4] = ACTIONS(1065), - [aux_sym_val_number_token5] = ACTIONS(1065), - [anon_sym_inf] = ACTIONS(1065), - [anon_sym_DASHinf] = ACTIONS(1065), - [anon_sym_NaN] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), + [323] = { + [sym_comment] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(883), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [393] = { - [sym__expression] = STATE(163), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(354), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(804), + [324] = { + [sym_comment] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(879), + [anon_sym_bit_DASHshr] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [394] = { - [sym__expression] = STATE(163), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(389), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(804), + [325] = { + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [395] = { - [sym_comment] = STATE(395), + [326] = { + [sym_comment] = STATE(326), [ts_builtin_sym_end] = ACTIONS(1012), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), @@ -90705,6 +84543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), @@ -90775,1738 +84614,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [396] = { - [sym_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_def_DASHenv] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(129), - [anon_sym_DOT_DOT] = ACTIONS(129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(129), - [sym_val_nothing] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym_val_number_token1] = ACTIONS(1010), - [aux_sym_val_number_token2] = ACTIONS(1010), - [aux_sym_val_number_token3] = ACTIONS(1010), - [aux_sym_val_number_token4] = ACTIONS(1010), - [aux_sym_val_number_token5] = ACTIONS(1010), - [anon_sym_inf] = ACTIONS(1010), - [anon_sym_DASHinf] = ACTIONS(1010), - [anon_sym_NaN] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_CARET] = ACTIONS(1010), + [327] = { + [sym_comment] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(970), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_cmd_identifier] = ACTIONS(968), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_def] = ACTIONS(968), - [anon_sym_def_DASHenv] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_not] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [sym_val_nothing] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(968), - [anon_sym_DASHinf] = ACTIONS(968), - [anon_sym_NaN] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [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_CARET] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [398] = { - [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [sym_cmd_identifier] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_def_DASHenv] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_where] = ACTIONS(972), - [anon_sym_STAR_STAR] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_bit_DASHshl] = ACTIONS(972), - [anon_sym_bit_DASHshr] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_not_DASHin] = ACTIONS(972), - [anon_sym_starts_DASHwith] = ACTIONS(972), - [anon_sym_ends_DASHwith] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_BANG_TILDE] = ACTIONS(972), - [anon_sym_bit_DASHand] = ACTIONS(972), - [anon_sym_bit_DASHxor] = ACTIONS(972), - [anon_sym_bit_DASHor] = ACTIONS(972), - [anon_sym_and] = ACTIONS(972), - [anon_sym_xor] = ACTIONS(972), - [anon_sym_or] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [sym_val_nothing] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = 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(972), - [aux_sym_val_number_token5] = ACTIONS(972), - [anon_sym_inf] = ACTIONS(972), - [anon_sym_DASHinf] = ACTIONS(972), - [anon_sym_NaN] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(972), - [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_CARET] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), - }, - [399] = { - [sym_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(950), - [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), - [anon_sym_SEMI] = ACTIONS(948), - [sym_cmd_identifier] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_where] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_CARET] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), - }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_alias] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_let_DASHenv] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1095), - [sym_cmd_identifier] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1097), - [anon_sym_def] = ACTIONS(1095), - [anon_sym_def_DASHenv] = ACTIONS(1095), - [anon_sym_export_DASHenv] = ACTIONS(1095), - [anon_sym_extern] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_use] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_DOLLAR] = ACTIONS(1095), - [anon_sym_error] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_source] = ACTIONS(1095), - [anon_sym_source_DASHenv] = ACTIONS(1095), - [anon_sym_register] = ACTIONS(1095), - [anon_sym_hide] = ACTIONS(1095), - [anon_sym_hide_DASHenv] = ACTIONS(1095), - [anon_sym_overlay] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1095), - [anon_sym_STAR_STAR] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_bit_DASHshl] = ACTIONS(1049), - [anon_sym_bit_DASHshr] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_LT2] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1045), - [anon_sym_not_DASHin] = ACTIONS(1047), - [anon_sym_starts_DASHwith] = ACTIONS(1047), - [anon_sym_ends_DASHwith] = ACTIONS(1047), - [anon_sym_EQ_TILDE] = ACTIONS(1051), - [anon_sym_BANG_TILDE] = ACTIONS(1051), - [anon_sym_bit_DASHand] = ACTIONS(1053), - [anon_sym_bit_DASHxor] = ACTIONS(1055), - [anon_sym_bit_DASHor] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1095), - [anon_sym_DOT_DOT_LT] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), - [sym_val_nothing] = ACTIONS(1095), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [aux_sym_val_number_token1] = ACTIONS(1095), - [aux_sym_val_number_token2] = ACTIONS(1095), - [aux_sym_val_number_token3] = ACTIONS(1095), - [aux_sym_val_number_token4] = ACTIONS(1095), - [aux_sym_val_number_token5] = ACTIONS(1095), - [anon_sym_inf] = ACTIONS(1095), - [anon_sym_DASHinf] = ACTIONS(1095), - [anon_sym_NaN] = ACTIONS(1095), - [anon_sym_0b] = ACTIONS(1095), - [anon_sym_0o] = ACTIONS(1095), - [anon_sym_0x] = ACTIONS(1095), - [sym_val_date] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1095), - [sym__str_single_quotes] = ACTIONS(1095), - [sym__str_back_ticks] = ACTIONS(1095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_POUND] = ACTIONS(3), - }, - [401] = { - [sym__expression] = STATE(146), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(403), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1099), - [anon_sym_alias] = ACTIONS(1099), - [anon_sym_let] = ACTIONS(1099), - [anon_sym_let_DASHenv] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1099), - [sym_cmd_identifier] = ACTIONS(1099), - [anon_sym_LF] = ACTIONS(1101), - [anon_sym_def] = ACTIONS(1099), - [anon_sym_def_DASHenv] = ACTIONS(1099), - [anon_sym_export_DASHenv] = ACTIONS(1099), - [anon_sym_extern] = ACTIONS(1099), - [anon_sym_module] = ACTIONS(1099), - [anon_sym_use] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_RPAREN] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_error] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_loop] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [anon_sym_try] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_source] = ACTIONS(1099), - [anon_sym_source_DASHenv] = ACTIONS(1099), - [anon_sym_register] = ACTIONS(1099), - [anon_sym_hide] = ACTIONS(1099), - [anon_sym_hide_DASHenv] = ACTIONS(1099), - [anon_sym_overlay] = ACTIONS(1099), - [anon_sym_where] = ACTIONS(1099), - [anon_sym_not] = ACTIONS(1099), - [anon_sym_DOT_DOT_LT] = ACTIONS(1099), - [anon_sym_DOT_DOT] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1099), - [sym_val_nothing] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [aux_sym_val_number_token1] = ACTIONS(1099), - [aux_sym_val_number_token2] = ACTIONS(1099), - [aux_sym_val_number_token3] = ACTIONS(1099), - [aux_sym_val_number_token4] = ACTIONS(1099), - [aux_sym_val_number_token5] = ACTIONS(1099), - [anon_sym_inf] = ACTIONS(1099), - [anon_sym_DASHinf] = ACTIONS(1099), - [anon_sym_NaN] = ACTIONS(1099), - [anon_sym_0b] = ACTIONS(1099), - [anon_sym_0o] = ACTIONS(1099), - [anon_sym_0x] = ACTIONS(1099), - [sym_val_date] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [sym__str_single_quotes] = ACTIONS(1099), - [sym__str_back_ticks] = ACTIONS(1099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1099), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [402] = { - [sym__expression] = STATE(143), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(393), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(402), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_where] = ACTIONS(816), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [403] = { - [sym__expression] = STATE(143), - [sym_expr_unary] = STATE(237), - [sym_expr_binary] = STATE(237), - [sym_expr_parenthesized] = STATE(236), - [sym_val_range] = STATE(237), - [sym__value] = STATE(237), - [sym_val_bool] = STATE(234), - [sym_val_variable] = STATE(234), - [sym__var] = STATE(133), - [sym_val_number] = STATE(3), - [sym_val_duration] = STATE(234), - [sym_val_filesize] = STATE(234), - [sym_val_binary] = STATE(234), - [sym_val_string] = STATE(234), - [sym__str_double_quotes] = STATE(251), - [sym_val_interpolated] = STATE(234), - [sym__inter_single_quotes] = STATE(217), - [sym__inter_double_quotes] = STATE(229), - [sym_val_list] = STATE(234), - [sym_val_record] = STATE(234), - [sym_val_table] = STATE(234), - [sym_val_closure] = STATE(234), - [sym__flag] = STATE(394), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_where] = ACTIONS(816), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [sym_cmd_identifier] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_def_DASHenv] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_where] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_not] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_CARET] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [405] = { - [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(946), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [407] = { - [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [408] = { - [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [sym_cmd_identifier] = ACTIONS(980), - [anon_sym_LF] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_def_DASHenv] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_where] = ACTIONS(980), - [anon_sym_STAR_STAR] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_bit_DASHshl] = ACTIONS(980), - [anon_sym_bit_DASHshr] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_not_DASHin] = ACTIONS(980), - [anon_sym_starts_DASHwith] = ACTIONS(980), - [anon_sym_ends_DASHwith] = ACTIONS(980), - [anon_sym_EQ_TILDE] = ACTIONS(980), - [anon_sym_BANG_TILDE] = ACTIONS(980), - [anon_sym_bit_DASHand] = ACTIONS(980), - [anon_sym_bit_DASHxor] = ACTIONS(980), - [anon_sym_bit_DASHor] = ACTIONS(980), - [anon_sym_and] = ACTIONS(980), - [anon_sym_xor] = ACTIONS(980), - [anon_sym_or] = ACTIONS(980), - [anon_sym_not] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [sym_val_nothing] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(980), - [anon_sym_DASHinf] = ACTIONS(980), - [anon_sym_NaN] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [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_CARET] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [328] = { + [sym_comment] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [410] = { - [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [sym_cmd_identifier] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_def_DASHenv] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_not] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), + [329] = { + [sym_comment] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_in] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_STAR_STAR] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_bit_DASHshl] = ACTIONS(1029), + [anon_sym_bit_DASHshr] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT2] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_not_DASHin] = ACTIONS(1029), + [anon_sym_starts_DASHwith] = ACTIONS(1029), + [anon_sym_ends_DASHwith] = ACTIONS(1029), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1029), + [anon_sym_bit_DASHxor] = ACTIONS(1029), + [anon_sym_bit_DASHor] = ACTIONS(1029), + [anon_sym_and] = ACTIONS(1029), + [anon_sym_xor] = ACTIONS(1029), + [anon_sym_or] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [sym_short_flag] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [411] = { - [sym_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [330] = { + [sym_comment] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [412] = { - [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [331] = { + [sym_comment] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [413] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), + [332] = { + [sym_comment] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [414] = { - [sym_comment] = STATE(414), + [333] = { + [sym_comment] = STATE(333), [ts_builtin_sym_end] = ACTIONS(990), [anon_sym_export] = ACTIONS(988), [anon_sym_alias] = ACTIONS(988), @@ -92529,6 +85229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(988), [anon_sym_error] = ACTIONS(988), [anon_sym_GT] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), [anon_sym_DASH] = ACTIONS(988), [anon_sym_break] = ACTIONS(988), [anon_sym_continue] = ACTIONS(988), @@ -92599,8215 +85300,5294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), [anon_sym_CARET] = ACTIONS(988), + [sym_short_flag] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(3), }, - [415] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_def_DASHenv] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [sym_val_nothing] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym_val_number_token1] = ACTIONS(1006), - [aux_sym_val_number_token2] = ACTIONS(1006), - [aux_sym_val_number_token3] = ACTIONS(1006), - [aux_sym_val_number_token4] = ACTIONS(1006), - [aux_sym_val_number_token5] = ACTIONS(1006), - [anon_sym_inf] = ACTIONS(1006), - [anon_sym_DASHinf] = ACTIONS(1006), - [anon_sym_NaN] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [416] = { - [sym_ctrl_do] = STATE(795), - [sym_ctrl_if] = STATE(795), - [sym_ctrl_match] = STATE(795), - [sym_ctrl_try] = STATE(795), - [sym__expression] = STATE(345), - [sym_expr_unary] = STATE(348), - [sym_expr_binary] = STATE(348), - [sym_expr_parenthesized] = STATE(308), - [sym_val_range] = STATE(348), - [sym__value] = STATE(348), - [sym_val_bool] = STATE(328), - [sym_val_variable] = STATE(328), - [sym__var] = STATE(172), - [sym_val_number] = STATE(7), - [sym_val_duration] = STATE(328), - [sym_val_filesize] = STATE(328), - [sym_val_binary] = STATE(328), - [sym_val_string] = STATE(328), - [sym__str_double_quotes] = STATE(351), - [sym_val_interpolated] = STATE(328), - [sym__inter_single_quotes] = STATE(330), - [sym__inter_double_quotes] = STATE(337), - [sym_val_list] = STATE(328), - [sym_val_record] = STATE(328), - [sym_val_table] = STATE(328), - [sym_val_closure] = STATE(328), - [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_alias] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_let_DASHenv] = ACTIONS(1103), - [anon_sym_mut] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [sym_cmd_identifier] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_def] = ACTIONS(1103), - [anon_sym_def_DASHenv] = ACTIONS(1103), - [anon_sym_export_DASHenv] = ACTIONS(1103), - [anon_sym_extern] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_use] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1111), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_loop] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(213), - [anon_sym_if] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(223), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_source] = ACTIONS(1103), - [anon_sym_source_DASHenv] = ACTIONS(1103), - [anon_sym_register] = ACTIONS(1103), - [anon_sym_hide] = ACTIONS(1103), - [anon_sym_hide_DASHenv] = ACTIONS(1103), - [anon_sym_overlay] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(1103), - [anon_sym_not] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [sym_val_nothing] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1121), - [anon_sym_false] = ACTIONS(1121), - [aux_sym_val_number_token1] = ACTIONS(1123), - [aux_sym_val_number_token2] = ACTIONS(1123), - [aux_sym_val_number_token3] = ACTIONS(1123), - [aux_sym_val_number_token4] = ACTIONS(1123), - [aux_sym_val_number_token5] = ACTIONS(1123), - [anon_sym_inf] = ACTIONS(1123), - [anon_sym_DASHinf] = ACTIONS(1123), - [anon_sym_NaN] = ACTIONS(1123), - [anon_sym_0b] = ACTIONS(1125), - [anon_sym_0o] = ACTIONS(1125), - [anon_sym_0x] = ACTIONS(1125), - [sym_val_date] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1127), - [sym__str_single_quotes] = ACTIONS(1129), - [sym__str_back_ticks] = ACTIONS(1129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(3), - }, - [417] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - }, - [418] = { - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [419] = { - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [sym_cmd_identifier] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_def_DASHenv] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_not] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [420] = { - [sym_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [sym_cmd_identifier] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_def_DASHenv] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_where] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_not] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [421] = { - [sym_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_def_DASHenv] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [422] = { - [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [sym_cmd_identifier] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_def_DASHenv] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_where] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_not] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(920), + [334] = { + [sym_comment] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [423] = { - [sym__expression] = STATE(185), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(446), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(856), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [424] = { - [sym__expression] = STATE(175), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(434), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(852), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), + [336] = { + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [sym_cmd_identifier] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_def_DASHenv] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_where] = ACTIONS(1018), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_not] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [sym_val_nothing] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1018), + [anon_sym_false] = ACTIONS(1018), + [aux_sym_val_number_token1] = ACTIONS(1018), + [aux_sym_val_number_token2] = ACTIONS(1018), + [aux_sym_val_number_token3] = ACTIONS(1018), + [aux_sym_val_number_token4] = ACTIONS(1018), + [aux_sym_val_number_token5] = ACTIONS(1018), + [anon_sym_inf] = ACTIONS(1018), + [anon_sym_DASHinf] = ACTIONS(1018), + [anon_sym_NaN] = ACTIONS(1018), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), + [anon_sym_CARET] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(3), }, - [425] = { - [sym_ctrl_do] = STATE(903), - [sym_ctrl_if] = STATE(903), - [sym_ctrl_match] = STATE(903), - [sym_ctrl_try] = STATE(903), - [sym__expression] = STATE(392), - [sym_expr_unary] = STATE(395), - [sym_expr_binary] = STATE(395), - [sym_expr_parenthesized] = STATE(396), - [sym_val_range] = STATE(395), - [sym__value] = STATE(395), - [sym_val_bool] = STATE(369), - [sym_val_variable] = STATE(369), - [sym__var] = STATE(238), - [sym_val_number] = STATE(8), - [sym_val_duration] = STATE(369), - [sym_val_filesize] = STATE(369), - [sym_val_binary] = STATE(369), - [sym_val_string] = STATE(369), - [sym__str_double_quotes] = STATE(375), - [sym_val_interpolated] = STATE(369), - [sym__inter_single_quotes] = STATE(386), - [sym__inter_double_quotes] = STATE(404), - [sym_val_list] = STATE(369), - [sym_val_record] = STATE(369), - [sym_val_table] = STATE(369), - [sym_val_closure] = STATE(369), - [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1105), - [anon_sym_export] = ACTIONS(1103), - [anon_sym_alias] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_let_DASHenv] = ACTIONS(1103), - [anon_sym_mut] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [sym_cmd_identifier] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_def] = ACTIONS(1103), - [anon_sym_def_DASHenv] = ACTIONS(1103), - [anon_sym_export_DASHenv] = ACTIONS(1103), - [anon_sym_extern] = ACTIONS(1103), - [anon_sym_module] = ACTIONS(1103), - [anon_sym_use] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1137), - [anon_sym_error] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_loop] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(59), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_source] = ACTIONS(1103), - [anon_sym_source_DASHenv] = ACTIONS(1103), - [anon_sym_register] = ACTIONS(1103), - [anon_sym_hide] = ACTIONS(1103), - [anon_sym_hide_DASHenv] = ACTIONS(1103), - [anon_sym_overlay] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(1103), - [anon_sym_not] = ACTIONS(1143), - [anon_sym_DOT_DOT_LT] = ACTIONS(1145), - [anon_sym_DOT_DOT] = ACTIONS(1145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), - [sym_val_nothing] = ACTIONS(1147), - [anon_sym_true] = ACTIONS(1149), - [anon_sym_false] = ACTIONS(1149), - [aux_sym_val_number_token1] = ACTIONS(1151), - [aux_sym_val_number_token2] = ACTIONS(1151), - [aux_sym_val_number_token3] = ACTIONS(1151), - [aux_sym_val_number_token4] = ACTIONS(1151), - [aux_sym_val_number_token5] = ACTIONS(1151), - [anon_sym_inf] = ACTIONS(1151), - [anon_sym_DASHinf] = ACTIONS(1151), - [anon_sym_NaN] = ACTIONS(1151), - [anon_sym_0b] = ACTIONS(1153), - [anon_sym_0o] = ACTIONS(1153), - [anon_sym_0x] = ACTIONS(1153), - [sym_val_date] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym__str_single_quotes] = ACTIONS(1157), - [sym__str_back_ticks] = ACTIONS(1157), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1103), + [337] = { + [sym_comment] = STATE(337), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(3), }, - [426] = { - [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(1097), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_alias] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_let_DASHenv] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1095), - [sym_cmd_identifier] = ACTIONS(1095), - [anon_sym_LF] = ACTIONS(1097), - [anon_sym_def] = ACTIONS(1095), - [anon_sym_def_DASHenv] = ACTIONS(1095), - [anon_sym_export_DASHenv] = ACTIONS(1095), - [anon_sym_extern] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_use] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_DOLLAR] = ACTIONS(1095), - [anon_sym_error] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_source] = ACTIONS(1095), - [anon_sym_source_DASHenv] = ACTIONS(1095), - [anon_sym_register] = ACTIONS(1095), - [anon_sym_hide] = ACTIONS(1095), - [anon_sym_hide_DASHenv] = ACTIONS(1095), - [anon_sym_overlay] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_where] = ACTIONS(1095), - [anon_sym_STAR_STAR] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_mod] = ACTIONS(1077), - [anon_sym_SLASH_SLASH] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_bit_DASHshl] = ACTIONS(1079), - [anon_sym_bit_DASHshr] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1071), - [anon_sym_BANG_EQ] = ACTIONS(1071), - [anon_sym_LT2] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_not_DASHin] = ACTIONS(1075), - [anon_sym_starts_DASHwith] = ACTIONS(1075), - [anon_sym_ends_DASHwith] = ACTIONS(1075), - [anon_sym_EQ_TILDE] = ACTIONS(1081), - [anon_sym_BANG_TILDE] = ACTIONS(1081), - [anon_sym_bit_DASHand] = ACTIONS(1083), - [anon_sym_bit_DASHxor] = ACTIONS(1085), - [anon_sym_bit_DASHor] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1089), - [anon_sym_xor] = ACTIONS(1091), - [anon_sym_or] = ACTIONS(1093), - [anon_sym_not] = ACTIONS(1095), - [anon_sym_DOT_DOT_LT] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), - [sym_val_nothing] = ACTIONS(1095), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [aux_sym_val_number_token1] = ACTIONS(1095), - [aux_sym_val_number_token2] = ACTIONS(1095), - [aux_sym_val_number_token3] = ACTIONS(1095), - [aux_sym_val_number_token4] = ACTIONS(1095), - [aux_sym_val_number_token5] = ACTIONS(1095), - [anon_sym_inf] = ACTIONS(1095), - [anon_sym_DASHinf] = ACTIONS(1095), - [anon_sym_NaN] = ACTIONS(1095), - [anon_sym_0b] = ACTIONS(1095), - [anon_sym_0o] = ACTIONS(1095), - [anon_sym_0x] = ACTIONS(1095), - [sym_val_date] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1095), - [sym__str_single_quotes] = ACTIONS(1095), - [sym__str_back_ticks] = ACTIONS(1095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), + [338] = { + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(922), + [anon_sym_alias] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_let_DASHenv] = ACTIONS(922), + [anon_sym_mut] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [sym_cmd_identifier] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_def] = ACTIONS(922), + [anon_sym_def_DASHenv] = ACTIONS(922), + [anon_sym_export_DASHenv] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_module] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_source] = ACTIONS(922), + [anon_sym_source_DASHenv] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_hide_DASHenv] = ACTIONS(922), + [anon_sym_overlay] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), [anon_sym_POUND] = ACTIONS(3), }, - [427] = { - [sym__expression] = STATE(184), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(430), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(774), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(893), + [339] = { + [sym_comment] = STATE(339), + [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), + [anon_sym_SEMI] = ACTIONS(998), + [sym_cmd_identifier] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_where] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_not] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(3), }, - [428] = { - [sym__expression] = STATE(185), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(447), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(856), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_in] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_STAR_STAR] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_bit_DASHshl] = ACTIONS(1029), + [anon_sym_bit_DASHshr] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT2] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_not_DASHin] = ACTIONS(1029), + [anon_sym_starts_DASHwith] = ACTIONS(1029), + [anon_sym_ends_DASHwith] = ACTIONS(1029), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1029), + [anon_sym_bit_DASHxor] = ACTIONS(1029), + [anon_sym_bit_DASHor] = ACTIONS(1029), + [anon_sym_and] = ACTIONS(1029), + [anon_sym_xor] = ACTIONS(1029), + [anon_sym_or] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [429] = { - [sym__expression] = STATE(184), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(432), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(774), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(893), + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [sym_cmd_identifier] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_def_DASHenv] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_bit_DASHshl] = ACTIONS(980), + [anon_sym_bit_DASHshr] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_not_DASHin] = ACTIONS(980), + [anon_sym_starts_DASHwith] = ACTIONS(980), + [anon_sym_ends_DASHwith] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_BANG_TILDE] = ACTIONS(980), + [anon_sym_bit_DASHand] = ACTIONS(980), + [anon_sym_bit_DASHxor] = ACTIONS(980), + [anon_sym_bit_DASHor] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_not] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [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_CARET] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, - [430] = { - [sym__expression] = STATE(185), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(445), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(856), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), + [342] = { + [sym_comment] = STATE(342), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_def_DASHenv] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [431] = { - [sym__expression] = STATE(168), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(429), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(818), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_where] = ACTIONS(816), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(893), + [343] = { + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(930), + [anon_sym_alias] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_let_DASHenv] = ACTIONS(930), + [anon_sym_mut] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [sym_cmd_identifier] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_def] = ACTIONS(930), + [anon_sym_def_DASHenv] = ACTIONS(930), + [anon_sym_export_DASHenv] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_use] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_error] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_source] = ACTIONS(930), + [anon_sym_source_DASHenv] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_hide_DASHenv] = ACTIONS(930), + [anon_sym_overlay] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_where] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_not] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(3), }, - [432] = { - [sym__expression] = STATE(185), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(444), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(856), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), + [344] = { + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_def_DASHenv] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(3), }, - [433] = { - [sym__expression] = STATE(195), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(663), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(893), + [345] = { + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [434] = { - [sym__expression] = STATE(174), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(433), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [435] = { - [sym__expression] = STATE(174), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(673), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [436] = { - [sym__expression] = STATE(193), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(440), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [437] = { - [sym__expression] = STATE(175), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(435), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(852), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [438] = { - [sym__expression] = STATE(175), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(680), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(852), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [439] = { - [sym__expression] = STATE(184), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(423), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(774), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [440] = { - [sym__expression] = STATE(178), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(424), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [441] = { - [sym__expression] = STATE(178), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(437), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [442] = { - [sym__expression] = STATE(178), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(438), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), + [346] = { + [sym_comment] = STATE(346), + [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), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_CARET] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(3), }, - [443] = { - [sym__expression] = STATE(178), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(691), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), + [347] = { + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1069), + [anon_sym_or] = ACTIONS(1071), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [444] = { - [sym__expression] = STATE(193), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(690), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [445] = { - [sym__expression] = STATE(193), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(443), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), + [349] = { + [sym_comment] = STATE(349), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1069), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [446] = { - [sym__expression] = STATE(193), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(442), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), + [350] = { + [sym_comment] = STATE(350), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [447] = { - [sym__expression] = STATE(193), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(441), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), + [351] = { + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [448] = { - [sym__expression] = STATE(168), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(427), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(818), - [anon_sym_export] = ACTIONS(816), - [anon_sym_alias] = ACTIONS(816), - [anon_sym_let] = ACTIONS(816), - [anon_sym_let_DASHenv] = ACTIONS(816), - [anon_sym_mut] = ACTIONS(816), - [anon_sym_const] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [sym_cmd_identifier] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_def] = ACTIONS(816), - [anon_sym_def_DASHenv] = ACTIONS(816), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_module] = ACTIONS(816), - [anon_sym_use] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_error] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_match] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_try] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_source] = ACTIONS(816), - [anon_sym_source_DASHenv] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_hide] = ACTIONS(816), - [anon_sym_hide_DASHenv] = ACTIONS(816), - [anon_sym_overlay] = ACTIONS(816), - [anon_sym_where] = ACTIONS(816), - [anon_sym_not] = ACTIONS(816), - [anon_sym_DOT_DOT_LT] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(816), - [sym_val_nothing] = ACTIONS(816), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_val_number_token1] = ACTIONS(816), - [aux_sym_val_number_token2] = ACTIONS(816), - [aux_sym_val_number_token3] = ACTIONS(816), - [aux_sym_val_number_token4] = ACTIONS(816), - [aux_sym_val_number_token5] = ACTIONS(816), - [anon_sym_inf] = ACTIONS(816), - [anon_sym_DASHinf] = ACTIONS(816), - [anon_sym_NaN] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(816), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [sym__str_single_quotes] = ACTIONS(816), - [sym__str_back_ticks] = ACTIONS(816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [sym_short_flag] = ACTIONS(893), + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [449] = { - [sym__expression] = STATE(182), - [sym_expr_unary] = STATE(295), - [sym_expr_binary] = STATE(295), - [sym_expr_parenthesized] = STATE(300), - [sym_val_range] = STATE(295), - [sym__value] = STATE(295), - [sym_val_bool] = STATE(276), - [sym_val_variable] = STATE(276), - [sym__var] = STATE(145), - [sym_val_number] = STATE(5), - [sym_val_duration] = STATE(276), - [sym_val_filesize] = STATE(276), - [sym_val_binary] = STATE(276), - [sym_val_string] = STATE(276), - [sym__str_double_quotes] = STATE(279), - [sym_val_interpolated] = STATE(276), - [sym__inter_single_quotes] = STATE(292), - [sym__inter_double_quotes] = STATE(258), - [sym_val_list] = STATE(276), - [sym_val_record] = STATE(276), - [sym_val_table] = STATE(276), - [sym_val_closure] = STATE(276), - [sym__flag] = STATE(431), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1101), - [anon_sym_export] = ACTIONS(1099), - [anon_sym_alias] = ACTIONS(1099), - [anon_sym_let] = ACTIONS(1099), - [anon_sym_let_DASHenv] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1099), - [sym_cmd_identifier] = ACTIONS(1099), - [anon_sym_LF] = ACTIONS(1101), - [anon_sym_def] = ACTIONS(1099), - [anon_sym_def_DASHenv] = ACTIONS(1099), - [anon_sym_export_DASHenv] = ACTIONS(1099), - [anon_sym_extern] = ACTIONS(1099), - [anon_sym_module] = ACTIONS(1099), - [anon_sym_use] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_error] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_loop] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_try] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_source] = ACTIONS(1099), - [anon_sym_source_DASHenv] = ACTIONS(1099), - [anon_sym_register] = ACTIONS(1099), - [anon_sym_hide] = ACTIONS(1099), - [anon_sym_hide_DASHenv] = ACTIONS(1099), - [anon_sym_overlay] = ACTIONS(1099), - [anon_sym_where] = ACTIONS(1099), - [anon_sym_not] = ACTIONS(1099), - [anon_sym_DOT_DOT_LT] = ACTIONS(1099), - [anon_sym_DOT_DOT] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1099), - [sym_val_nothing] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [aux_sym_val_number_token1] = ACTIONS(1099), - [aux_sym_val_number_token2] = ACTIONS(1099), - [aux_sym_val_number_token3] = ACTIONS(1099), - [aux_sym_val_number_token4] = ACTIONS(1099), - [aux_sym_val_number_token5] = ACTIONS(1099), - [anon_sym_inf] = ACTIONS(1099), - [anon_sym_DASHinf] = ACTIONS(1099), - [anon_sym_NaN] = ACTIONS(1099), - [anon_sym_0b] = ACTIONS(1099), - [anon_sym_0o] = ACTIONS(1099), - [anon_sym_0x] = ACTIONS(1099), - [sym_val_date] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [sym__str_single_quotes] = ACTIONS(1099), - [sym__str_back_ticks] = ACTIONS(1099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1099), - [sym_short_flag] = ACTIONS(893), + [353] = { + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [450] = { - [sym_path] = STATE(499), - [sym_comment] = STATE(450), - [aux_sym_cell_path_repeat1] = STATE(455), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(749), - [anon_sym_out_GT] = ACTIONS(749), - [anon_sym_e_GT] = ACTIONS(749), - [anon_sym_o_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), - [aux_sym_unquoted_token1] = ACTIONS(749), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [451] = { - [sym_cell_path] = STATE(521), - [sym_path] = STATE(450), - [sym_comment] = STATE(451), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_err_GT] = ACTIONS(729), - [anon_sym_out_GT] = ACTIONS(729), - [anon_sym_e_GT] = ACTIONS(729), - [anon_sym_o_GT] = ACTIONS(729), - [anon_sym_err_PLUSout_GT] = ACTIONS(729), - [anon_sym_out_PLUSerr_GT] = ACTIONS(729), - [anon_sym_o_PLUSe_GT] = ACTIONS(729), - [anon_sym_e_PLUSo_GT] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), - [aux_sym_unquoted_token1] = ACTIONS(729), + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_def_DASHenv] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [452] = { - [sym_pipeline] = STATE(1047), - [sym_pipeline_last] = STATE(3336), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(452), - [aux_sym_pipeline_repeat1] = STATE(509), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [453] = { - [sym_cell_path] = STATE(533), - [sym_path] = STATE(450), - [sym_comment] = STATE(453), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(753), - [anon_sym_out_GT] = ACTIONS(753), - [anon_sym_e_GT] = ACTIONS(753), - [anon_sym_o_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT] = ACTIONS(753), - [sym_short_flag] = ACTIONS(753), - [aux_sym_unquoted_token1] = ACTIONS(753), + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [454] = { - [sym_pipeline] = STATE(1019), - [sym_pipeline_last] = STATE(3536), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(454), - [aux_sym_pipeline_repeat1] = STATE(509), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [455] = { - [sym_path] = STATE(499), - [sym_comment] = STATE(455), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_err_GT] = ACTIONS(745), - [anon_sym_out_GT] = ACTIONS(745), - [anon_sym_e_GT] = ACTIONS(745), - [anon_sym_o_GT] = ACTIONS(745), - [anon_sym_err_PLUSout_GT] = ACTIONS(745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(745), - [anon_sym_o_PLUSe_GT] = ACTIONS(745), - [anon_sym_e_PLUSo_GT] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), - [aux_sym_unquoted_token1] = ACTIONS(745), + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(918), + [anon_sym_alias] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_let_DASHenv] = ACTIONS(918), + [anon_sym_mut] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [sym_cmd_identifier] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_def] = ACTIONS(918), + [anon_sym_def_DASHenv] = ACTIONS(918), + [anon_sym_export_DASHenv] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_module] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_error] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_source] = ACTIONS(918), + [anon_sym_source_DASHenv] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_hide] = ACTIONS(918), + [anon_sym_hide_DASHenv] = ACTIONS(918), + [anon_sym_overlay] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_where] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_not] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), [anon_sym_POUND] = ACTIONS(3), }, - [456] = { - [sym_path] = STATE(499), - [sym_comment] = STATE(456), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_err_GT] = ACTIONS(757), - [anon_sym_out_GT] = ACTIONS(757), - [anon_sym_e_GT] = ACTIONS(757), - [anon_sym_o_GT] = ACTIONS(757), - [anon_sym_err_PLUSout_GT] = ACTIONS(757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(757), - [anon_sym_o_PLUSe_GT] = ACTIONS(757), - [anon_sym_e_PLUSo_GT] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), - [aux_sym_unquoted_token1] = ACTIONS(757), + [358] = { + [sym_comment] = STATE(358), + [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), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(3), }, - [457] = { - [sym_cell_path] = STATE(527), - [sym_path] = STATE(450), - [sym_comment] = STATE(457), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_err_GT] = ACTIONS(733), - [anon_sym_out_GT] = ACTIONS(733), - [anon_sym_e_GT] = ACTIONS(733), - [anon_sym_o_GT] = ACTIONS(733), - [anon_sym_err_PLUSout_GT] = ACTIONS(733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(733), - [anon_sym_o_PLUSe_GT] = ACTIONS(733), - [anon_sym_e_PLUSo_GT] = ACTIONS(733), - [sym_short_flag] = ACTIONS(733), - [aux_sym_unquoted_token1] = ACTIONS(733), + [359] = { + [sym_comment] = STATE(359), + [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), + [anon_sym_SEMI] = ACTIONS(946), + [sym_cmd_identifier] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_where] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_not] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_CARET] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), }, - [458] = { - [sym_cell_path] = STATE(538), - [sym_path] = STATE(450), - [sym_comment] = STATE(458), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_err_GT] = ACTIONS(737), - [anon_sym_out_GT] = ACTIONS(737), - [anon_sym_e_GT] = ACTIONS(737), - [anon_sym_o_GT] = ACTIONS(737), - [anon_sym_err_PLUSout_GT] = ACTIONS(737), - [anon_sym_out_PLUSerr_GT] = ACTIONS(737), - [anon_sym_o_PLUSe_GT] = ACTIONS(737), - [anon_sym_e_PLUSo_GT] = ACTIONS(737), - [sym_short_flag] = ACTIONS(737), - [aux_sym_unquoted_token1] = ACTIONS(737), + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [459] = { - [sym_cell_path] = STATE(524), - [sym_path] = STATE(450), - [sym_comment] = STATE(459), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, - [460] = { - [sym_pipeline] = STATE(1019), - [sym_pipeline_last] = STATE(3589), - [sym__ctrl_expression] = STATE(3277), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(460), - [aux_sym_pipeline_repeat1] = STATE(502), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), - }, - [461] = { - [sym_pipeline] = STATE(1035), - [sym_pipeline_last] = STATE(3585), - [sym__ctrl_expression] = STATE(3277), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(461), - [aux_sym_pipeline_repeat1] = STATE(502), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), + [362] = { + [sym_comment] = STATE(362), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), }, - [462] = { - [sym_pipeline] = STATE(1025), - [sym_pipeline_last] = STATE(3340), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(462), - [aux_sym_pipeline_repeat1] = STATE(509), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), + [363] = { + [sym_comment] = STATE(363), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [sym_cmd_identifier] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_def_DASHenv] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_STAR_STAR] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_bit_DASHshl] = ACTIONS(956), + [anon_sym_bit_DASHshr] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_not_DASHin] = ACTIONS(956), + [anon_sym_starts_DASHwith] = ACTIONS(956), + [anon_sym_ends_DASHwith] = ACTIONS(956), + [anon_sym_EQ_TILDE] = ACTIONS(956), + [anon_sym_BANG_TILDE] = ACTIONS(956), + [anon_sym_bit_DASHand] = ACTIONS(956), + [anon_sym_bit_DASHxor] = ACTIONS(956), + [anon_sym_bit_DASHor] = ACTIONS(956), + [anon_sym_and] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(956), + [anon_sym_or] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [sym_val_nothing] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(956), + [anon_sym_DASHinf] = ACTIONS(956), + [anon_sym_NaN] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [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_CARET] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(3), }, - [463] = { - [sym_pipeline_parenthesized] = STATE(1022), - [sym_pipeline_parenthesized_last] = STATE(3597), - [sym__ctrl_expression] = STATE(3181), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(463), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [sym_cmd_identifier] = ACTIONS(960), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_def_DASHenv] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_bit_DASHshl] = ACTIONS(960), + [anon_sym_bit_DASHshr] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_not_DASHin] = ACTIONS(960), + [anon_sym_starts_DASHwith] = ACTIONS(960), + [anon_sym_ends_DASHwith] = ACTIONS(960), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_BANG_TILDE] = ACTIONS(960), + [anon_sym_bit_DASHand] = ACTIONS(960), + [anon_sym_bit_DASHxor] = ACTIONS(960), + [anon_sym_bit_DASHor] = ACTIONS(960), + [anon_sym_and] = ACTIONS(960), + [anon_sym_xor] = ACTIONS(960), + [anon_sym_or] = ACTIONS(960), + [anon_sym_not] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [sym_val_nothing] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(960), + [anon_sym_DASHinf] = ACTIONS(960), + [anon_sym_NaN] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [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_CARET] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(3), }, - [464] = { - [sym_pipeline_parenthesized] = STATE(1023), - [sym_pipeline_parenthesized_last] = STATE(3581), - [sym__ctrl_expression] = STATE(3181), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(464), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [365] = { + [sym_comment] = STATE(365), + [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), + [anon_sym_SEMI] = ACTIONS(964), + [sym_cmd_identifier] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_STAR_STAR] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_bit_DASHshl] = ACTIONS(964), + [anon_sym_bit_DASHshr] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_not_DASHin] = ACTIONS(964), + [anon_sym_starts_DASHwith] = ACTIONS(964), + [anon_sym_ends_DASHwith] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_BANG_TILDE] = ACTIONS(964), + [anon_sym_bit_DASHand] = ACTIONS(964), + [anon_sym_bit_DASHxor] = ACTIONS(964), + [anon_sym_bit_DASHor] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_not] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [sym_val_nothing] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(964), + [anon_sym_DASHinf] = ACTIONS(964), + [anon_sym_NaN] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [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_CARET] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(3), }, - [465] = { - [sym_pipeline] = STATE(1047), - [sym_pipeline_last] = STATE(3628), - [sym__ctrl_expression] = STATE(3277), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(465), - [aux_sym_pipeline_repeat1] = STATE(502), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), }, - [466] = { - [sym_pipeline_parenthesized] = STATE(1040), - [sym_pipeline_parenthesized_last] = STATE(3560), - [sym__ctrl_expression] = STATE(3181), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(466), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [467] = { - [sym_cell_path] = STATE(528), - [sym_path] = STATE(450), - [sym_comment] = STATE(467), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [sym_cmd_identifier] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_def_DASHenv] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_not] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [sym_val_nothing] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(968), + [anon_sym_DASHinf] = ACTIONS(968), + [anon_sym_NaN] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [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_CARET] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), }, - [468] = { - [sym_pipeline_parenthesized] = STATE(1041), - [sym_pipeline_parenthesized_last] = STATE(3562), - [sym__ctrl_expression] = STATE(3181), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3636), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(468), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(501), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [469] = { - [sym_pipeline] = STATE(1035), - [sym_pipeline_last] = STATE(3535), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3098), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(469), - [aux_sym_pipeline_repeat1] = STATE(509), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [470] = { - [sym_pipeline] = STATE(1025), - [sym_pipeline_last] = STATE(3611), - [sym__ctrl_expression] = STATE(3277), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3362), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(470), - [aux_sym_pipeline_repeat1] = STATE(502), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), - }, - [471] = { - [sym_cell_path] = STATE(545), - [sym_path] = STATE(450), - [sym_comment] = STATE(471), - [anon_sym_SEMI] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_in] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_STAR_STAR] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_SLASH_SLASH] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_bit_DASHshl] = ACTIONS(723), - [anon_sym_bit_DASHshr] = ACTIONS(723), - [anon_sym_EQ_EQ] = ACTIONS(723), - [anon_sym_BANG_EQ] = ACTIONS(723), - [anon_sym_LT2] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_not_DASHin] = ACTIONS(723), - [anon_sym_starts_DASHwith] = ACTIONS(723), - [anon_sym_ends_DASHwith] = ACTIONS(723), - [anon_sym_EQ_TILDE] = ACTIONS(723), - [anon_sym_BANG_TILDE] = ACTIONS(723), - [anon_sym_bit_DASHand] = ACTIONS(723), - [anon_sym_bit_DASHxor] = ACTIONS(723), - [anon_sym_bit_DASHor] = ACTIONS(723), - [anon_sym_and] = ACTIONS(723), - [anon_sym_xor] = ACTIONS(723), - [anon_sym_or] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_err_GT] = ACTIONS(723), - [anon_sym_out_GT] = ACTIONS(723), - [anon_sym_e_GT] = ACTIONS(723), - [anon_sym_o_GT] = ACTIONS(723), - [anon_sym_err_PLUSout_GT] = ACTIONS(723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(723), - [anon_sym_o_PLUSe_GT] = ACTIONS(723), - [anon_sym_e_PLUSo_GT] = ACTIONS(723), - [sym_short_flag] = ACTIONS(723), - [aux_sym_unquoted_token1] = ACTIONS(723), + [368] = { + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [sym_cmd_identifier] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_def_DASHenv] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_where] = ACTIONS(972), + [anon_sym_STAR_STAR] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_bit_DASHshl] = ACTIONS(972), + [anon_sym_bit_DASHshr] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_not_DASHin] = ACTIONS(972), + [anon_sym_starts_DASHwith] = ACTIONS(972), + [anon_sym_ends_DASHwith] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_BANG_TILDE] = ACTIONS(972), + [anon_sym_bit_DASHand] = ACTIONS(972), + [anon_sym_bit_DASHxor] = ACTIONS(972), + [anon_sym_bit_DASHor] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [sym_val_nothing] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = 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(972), + [aux_sym_val_number_token5] = ACTIONS(972), + [anon_sym_inf] = ACTIONS(972), + [anon_sym_DASHinf] = ACTIONS(972), + [anon_sym_NaN] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(972), + [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_CARET] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), }, - [472] = { - [sym_cell_path] = STATE(555), - [sym_path] = STATE(450), - [sym_comment] = STATE(472), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH_DASH] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(741), - [anon_sym_out_GT] = ACTIONS(741), - [anon_sym_e_GT] = ACTIONS(741), - [anon_sym_o_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT] = ACTIONS(741), - [sym_short_flag] = ACTIONS(741), - [aux_sym_unquoted_token1] = ACTIONS(741), + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [sym_cmd_identifier] = ACTIONS(976), + [anon_sym_LF] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_def_DASHenv] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_where] = ACTIONS(976), + [anon_sym_STAR_STAR] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_mod] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_bit_DASHshl] = ACTIONS(976), + [anon_sym_bit_DASHshr] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_not_DASHin] = ACTIONS(976), + [anon_sym_starts_DASHwith] = ACTIONS(976), + [anon_sym_ends_DASHwith] = ACTIONS(976), + [anon_sym_EQ_TILDE] = ACTIONS(976), + [anon_sym_BANG_TILDE] = ACTIONS(976), + [anon_sym_bit_DASHand] = ACTIONS(976), + [anon_sym_bit_DASHxor] = ACTIONS(976), + [anon_sym_bit_DASHor] = ACTIONS(976), + [anon_sym_and] = ACTIONS(976), + [anon_sym_xor] = ACTIONS(976), + [anon_sym_or] = ACTIONS(976), + [anon_sym_not] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [sym_val_nothing] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = 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(976), + [aux_sym_val_number_token5] = ACTIONS(976), + [anon_sym_inf] = ACTIONS(976), + [anon_sym_DASHinf] = ACTIONS(976), + [anon_sym_NaN] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(976), + [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_CARET] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [473] = { - [sym_cell_path] = STATE(589), - [sym_path] = STATE(480), - [sym_comment] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_in] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_STAR_STAR] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_mod] = ACTIONS(723), - [anon_sym_SLASH_SLASH] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_bit_DASHshl] = ACTIONS(723), - [anon_sym_bit_DASHshr] = ACTIONS(723), - [anon_sym_EQ_EQ] = ACTIONS(723), - [anon_sym_BANG_EQ] = ACTIONS(723), - [anon_sym_LT2] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_not_DASHin] = ACTIONS(723), - [anon_sym_starts_DASHwith] = ACTIONS(723), - [anon_sym_ends_DASHwith] = ACTIONS(723), - [anon_sym_EQ_TILDE] = ACTIONS(723), - [anon_sym_BANG_TILDE] = ACTIONS(723), - [anon_sym_bit_DASHand] = ACTIONS(723), - [anon_sym_bit_DASHxor] = ACTIONS(723), - [anon_sym_bit_DASHor] = ACTIONS(723), - [anon_sym_and] = ACTIONS(723), - [anon_sym_xor] = ACTIONS(723), - [anon_sym_or] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_err_GT] = ACTIONS(723), - [anon_sym_out_GT] = ACTIONS(723), - [anon_sym_e_GT] = ACTIONS(723), - [anon_sym_o_GT] = ACTIONS(723), - [anon_sym_err_PLUSout_GT] = ACTIONS(723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(723), - [anon_sym_o_PLUSe_GT] = ACTIONS(723), - [anon_sym_e_PLUSo_GT] = ACTIONS(723), - [sym_short_flag] = ACTIONS(723), - [aux_sym_unquoted_token1] = ACTIONS(723), + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [474] = { - [sym_pipeline_parenthesized] = STATE(1041), - [sym__ctrl_expression] = STATE(3497), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3815), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(474), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(500), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_alias] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_let_DASHenv] = ACTIONS(1073), + [anon_sym_mut] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1073), + [sym_cmd_identifier] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_def] = ACTIONS(1073), + [anon_sym_def_DASHenv] = ACTIONS(1073), + [anon_sym_export_DASHenv] = ACTIONS(1073), + [anon_sym_extern] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_error] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_source] = ACTIONS(1073), + [anon_sym_source_DASHenv] = ACTIONS(1073), + [anon_sym_register] = ACTIONS(1073), + [anon_sym_hide] = ACTIONS(1073), + [anon_sym_hide_DASHenv] = ACTIONS(1073), + [anon_sym_overlay] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1069), + [anon_sym_or] = ACTIONS(1071), + [anon_sym_not] = ACTIONS(1073), + [anon_sym_DOT_DOT_LT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [sym_val_nothing] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [aux_sym_val_number_token1] = ACTIONS(1073), + [aux_sym_val_number_token2] = ACTIONS(1073), + [aux_sym_val_number_token3] = ACTIONS(1073), + [aux_sym_val_number_token4] = ACTIONS(1073), + [aux_sym_val_number_token5] = ACTIONS(1073), + [anon_sym_inf] = ACTIONS(1073), + [anon_sym_DASHinf] = ACTIONS(1073), + [anon_sym_NaN] = ACTIONS(1073), + [anon_sym_0b] = ACTIONS(1073), + [anon_sym_0o] = ACTIONS(1073), + [anon_sym_0x] = ACTIONS(1073), + [sym_val_date] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym__str_single_quotes] = ACTIONS(1073), + [sym__str_back_ticks] = ACTIONS(1073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(3), }, - [475] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(480), - [sym_comment] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH_DASH] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(733), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(733), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_BANG_TILDE] = ACTIONS(733), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(733), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(733), - [aux_sym_val_number_token4] = ACTIONS(733), - [aux_sym_val_number_token5] = ACTIONS(733), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(733), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym__str_single_quotes] = ACTIONS(733), - [sym__str_back_ticks] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(733), - [anon_sym_err_GT] = ACTIONS(733), - [anon_sym_out_GT] = ACTIONS(733), - [anon_sym_e_GT] = ACTIONS(733), - [anon_sym_o_GT] = ACTIONS(733), - [anon_sym_err_PLUSout_GT] = ACTIONS(733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(733), - [anon_sym_o_PLUSe_GT] = ACTIONS(733), - [anon_sym_e_PLUSo_GT] = ACTIONS(733), - [sym_short_flag] = ACTIONS(733), - [aux_sym_unquoted_token1] = ACTIONS(733), + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [476] = { - [sym_expr_parenthesized] = STATE(515), - [sym_val_number] = STATE(515), - [sym_comment] = STATE(476), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [aux_sym_val_number_token1] = ACTIONS(1192), - [aux_sym_val_number_token2] = ACTIONS(1192), - [aux_sym_val_number_token3] = ACTIONS(1192), - [aux_sym_val_number_token4] = ACTIONS(1192), - [aux_sym_val_number_token5] = ACTIONS(1192), - [anon_sym_inf] = ACTIONS(1192), - [anon_sym_DASHinf] = ACTIONS(1192), - [anon_sym_NaN] = ACTIONS(1192), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_err_GT] = ACTIONS(806), - [anon_sym_out_GT] = ACTIONS(806), - [anon_sym_e_GT] = ACTIONS(806), - [anon_sym_o_GT] = ACTIONS(806), - [anon_sym_err_PLUSout_GT] = ACTIONS(806), - [anon_sym_out_PLUSerr_GT] = ACTIONS(806), - [anon_sym_o_PLUSe_GT] = ACTIONS(806), - [anon_sym_e_PLUSo_GT] = ACTIONS(806), - [sym_short_flag] = ACTIONS(806), - [aux_sym_unquoted_token1] = ACTIONS(806), + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [477] = { - [sym_pipeline_parenthesized] = STATE(1023), - [sym__ctrl_expression] = STATE(3497), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3815), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(477), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(500), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), }, - [478] = { - [sym_pipeline_parenthesized] = STATE(1022), - [sym__ctrl_expression] = STATE(3497), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3815), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(478), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(500), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [479] = { - [sym_cell_path] = STATE(593), - [sym_path] = STATE(480), - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(755), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_LF] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(753), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(753), - [aux_sym_val_number_token4] = ACTIONS(753), - [aux_sym_val_number_token5] = ACTIONS(753), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(753), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [sym__str_single_quotes] = ACTIONS(753), - [sym__str_back_ticks] = ACTIONS(753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(753), - [anon_sym_out_GT] = ACTIONS(753), - [anon_sym_e_GT] = ACTIONS(753), - [anon_sym_o_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT] = ACTIONS(753), - [sym_short_flag] = ACTIONS(753), - [aux_sym_unquoted_token1] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3), - }, - [480] = { - [sym_path] = STATE(566), - [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(749), - [anon_sym_out_GT] = ACTIONS(749), - [anon_sym_e_GT] = ACTIONS(749), - [anon_sym_o_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), - [aux_sym_unquoted_token1] = ACTIONS(749), + [375] = { + [sym_comment] = STATE(375), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [481] = { - [sym_path] = STATE(566), - [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(745), - [anon_sym_BANG_TILDE] = ACTIONS(745), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_err_GT] = ACTIONS(745), - [anon_sym_out_GT] = ACTIONS(745), - [anon_sym_e_GT] = ACTIONS(745), - [anon_sym_o_GT] = ACTIONS(745), - [anon_sym_err_PLUSout_GT] = ACTIONS(745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(745), - [anon_sym_o_PLUSe_GT] = ACTIONS(745), - [anon_sym_e_PLUSo_GT] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), - [aux_sym_unquoted_token1] = ACTIONS(745), + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [sym_cmd_identifier] = ACTIONS(988), + [anon_sym_LF] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_def_DASHenv] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_where] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_bit_DASHshl] = ACTIONS(988), + [anon_sym_bit_DASHshr] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_not_DASHin] = ACTIONS(988), + [anon_sym_starts_DASHwith] = ACTIONS(988), + [anon_sym_ends_DASHwith] = ACTIONS(988), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_BANG_TILDE] = ACTIONS(988), + [anon_sym_bit_DASHand] = ACTIONS(988), + [anon_sym_bit_DASHxor] = ACTIONS(988), + [anon_sym_bit_DASHor] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_not] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [sym_val_nothing] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym_val_number_token1] = ACTIONS(988), + [aux_sym_val_number_token2] = ACTIONS(988), + [aux_sym_val_number_token3] = ACTIONS(988), + [aux_sym_val_number_token4] = ACTIONS(988), + [aux_sym_val_number_token5] = ACTIONS(988), + [anon_sym_inf] = ACTIONS(988), + [anon_sym_DASHinf] = ACTIONS(988), + [anon_sym_NaN] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(3), }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_err_GT] = ACTIONS(836), - [anon_sym_out_GT] = ACTIONS(836), - [anon_sym_e_GT] = ACTIONS(836), - [anon_sym_o_GT] = ACTIONS(836), - [anon_sym_err_PLUSout_GT] = ACTIONS(836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(836), - [anon_sym_o_PLUSe_GT] = ACTIONS(836), - [anon_sym_e_PLUSo_GT] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [aux_sym_unquoted_token1] = ACTIONS(836), + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [483] = { - [sym_cell_path] = STATE(585), - [sym_path] = STATE(480), - [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [484] = { - [sym_cell_path] = STATE(619), - [sym_path] = STATE(480), - [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_STAR_STAR] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_mod] = ACTIONS(729), - [anon_sym_SLASH_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_bit_DASHshl] = ACTIONS(729), - [anon_sym_bit_DASHshr] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT2] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_not_DASHin] = ACTIONS(729), - [anon_sym_starts_DASHwith] = ACTIONS(729), - [anon_sym_ends_DASHwith] = ACTIONS(729), - [anon_sym_EQ_TILDE] = ACTIONS(729), - [anon_sym_BANG_TILDE] = ACTIONS(729), - [anon_sym_bit_DASHand] = ACTIONS(729), - [anon_sym_bit_DASHxor] = ACTIONS(729), - [anon_sym_bit_DASHor] = ACTIONS(729), - [anon_sym_and] = ACTIONS(729), - [anon_sym_xor] = ACTIONS(729), - [anon_sym_or] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_err_GT] = ACTIONS(729), - [anon_sym_out_GT] = ACTIONS(729), - [anon_sym_e_GT] = ACTIONS(729), - [anon_sym_o_GT] = ACTIONS(729), - [anon_sym_err_PLUSout_GT] = ACTIONS(729), - [anon_sym_out_PLUSerr_GT] = ACTIONS(729), - [anon_sym_o_PLUSe_GT] = ACTIONS(729), - [anon_sym_e_PLUSo_GT] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), - [aux_sym_unquoted_token1] = ACTIONS(729), + [379] = { + [sym_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [485] = { - [sym_path] = STATE(566), - [sym_comment] = STATE(485), - [aux_sym_cell_path_repeat1] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(757), - [anon_sym_BANG_TILDE] = ACTIONS(757), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_err_GT] = ACTIONS(757), - [anon_sym_out_GT] = ACTIONS(757), - [anon_sym_e_GT] = ACTIONS(757), - [anon_sym_o_GT] = ACTIONS(757), - [anon_sym_err_PLUSout_GT] = ACTIONS(757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(757), - [anon_sym_o_PLUSe_GT] = ACTIONS(757), - [anon_sym_e_PLUSo_GT] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), - [aux_sym_unquoted_token1] = ACTIONS(757), + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [486] = { - [sym_cell_path] = STATE(583), - [sym_path] = STATE(480), - [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_SEMI] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_err_GT] = ACTIONS(842), - [anon_sym_out_GT] = ACTIONS(842), - [anon_sym_e_GT] = ACTIONS(842), - [anon_sym_o_GT] = ACTIONS(842), - [anon_sym_err_PLUSout_GT] = ACTIONS(842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(842), - [anon_sym_o_PLUSe_GT] = ACTIONS(842), - [anon_sym_e_PLUSo_GT] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [aux_sym_unquoted_token1] = ACTIONS(842), + [382] = { + [sym_comment] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), [anon_sym_POUND] = ACTIONS(3), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_err_GT] = ACTIONS(846), - [anon_sym_out_GT] = ACTIONS(846), - [anon_sym_e_GT] = ACTIONS(846), - [anon_sym_o_GT] = ACTIONS(846), - [anon_sym_err_PLUSout_GT] = ACTIONS(846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(846), - [anon_sym_o_PLUSe_GT] = ACTIONS(846), - [anon_sym_e_PLUSo_GT] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [aux_sym_unquoted_token1] = ACTIONS(846), + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [489] = { - [sym_cell_path] = STATE(592), - [sym_path] = STATE(480), - [sym_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_in] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_STAR_STAR] = ACTIONS(737), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_SLASH] = ACTIONS(737), - [anon_sym_mod] = ACTIONS(737), - [anon_sym_SLASH_SLASH] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_bit_DASHshl] = ACTIONS(737), - [anon_sym_bit_DASHshr] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT2] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_not_DASHin] = ACTIONS(737), - [anon_sym_starts_DASHwith] = ACTIONS(737), - [anon_sym_ends_DASHwith] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_BANG_TILDE] = ACTIONS(737), - [anon_sym_bit_DASHand] = ACTIONS(737), - [anon_sym_bit_DASHxor] = ACTIONS(737), - [anon_sym_bit_DASHor] = ACTIONS(737), - [anon_sym_and] = ACTIONS(737), - [anon_sym_xor] = ACTIONS(737), - [anon_sym_or] = ACTIONS(737), - [anon_sym_DOT_DOT_LT] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [sym_val_nothing] = ACTIONS(737), - [anon_sym_true] = ACTIONS(737), - [anon_sym_false] = ACTIONS(737), - [aux_sym_val_number_token1] = ACTIONS(737), - [aux_sym_val_number_token2] = ACTIONS(737), - [aux_sym_val_number_token3] = ACTIONS(737), - [aux_sym_val_number_token4] = ACTIONS(737), - [aux_sym_val_number_token5] = ACTIONS(737), - [anon_sym_inf] = ACTIONS(737), - [anon_sym_DASHinf] = ACTIONS(737), - [anon_sym_NaN] = ACTIONS(737), - [anon_sym_0b] = ACTIONS(737), - [anon_sym_0o] = ACTIONS(737), - [anon_sym_0x] = ACTIONS(737), - [sym_val_date] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym__str_single_quotes] = ACTIONS(737), - [sym__str_back_ticks] = ACTIONS(737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(737), - [anon_sym_err_GT] = ACTIONS(737), - [anon_sym_out_GT] = ACTIONS(737), - [anon_sym_e_GT] = ACTIONS(737), - [anon_sym_o_GT] = ACTIONS(737), - [anon_sym_err_PLUSout_GT] = ACTIONS(737), - [anon_sym_out_PLUSerr_GT] = ACTIONS(737), - [anon_sym_o_PLUSe_GT] = ACTIONS(737), - [anon_sym_e_PLUSo_GT] = ACTIONS(737), - [sym_short_flag] = ACTIONS(737), - [aux_sym_unquoted_token1] = ACTIONS(737), + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [490] = { - [sym_pipeline_parenthesized] = STATE(1040), - [sym__ctrl_expression] = STATE(3497), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3815), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(490), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(500), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_err_GT] = ACTIONS(836), - [anon_sym_out_GT] = ACTIONS(836), - [anon_sym_e_GT] = ACTIONS(836), - [anon_sym_o_GT] = ACTIONS(836), - [anon_sym_err_PLUSout_GT] = ACTIONS(836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(836), - [anon_sym_o_PLUSe_GT] = ACTIONS(836), - [anon_sym_e_PLUSo_GT] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [aux_sym_unquoted_token1] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [492] = { - [sym_cell_path] = STATE(600), - [sym_path] = STATE(480), - [sym_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_DASH_DASH] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(741), - [anon_sym_out_GT] = ACTIONS(741), - [anon_sym_e_GT] = ACTIONS(741), - [anon_sym_o_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT] = ACTIONS(741), - [sym_short_flag] = ACTIONS(741), - [aux_sym_unquoted_token1] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(3), - }, - [493] = { - [sym_pipeline] = STATE(1035), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3615), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(493), - [aux_sym_pipeline_repeat1] = STATE(510), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [494] = { - [sym_pipeline] = STATE(1025), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3615), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(494), - [aux_sym_pipeline_repeat1] = STATE(510), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [495] = { - [sym_pipeline] = STATE(1047), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3615), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(495), - [aux_sym_pipeline_repeat1] = STATE(510), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [496] = { - [sym_pipeline] = STATE(1019), - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3615), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(496), - [aux_sym_pipeline_repeat1] = STATE(510), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [497] = { - [sym__command_name] = STATE(921), - [sym_scope_pattern] = STATE(922), - [sym_wild_card] = STATE(924), - [sym_command_list] = STATE(925), - [sym_val_string] = STATE(766), - [sym__str_double_quotes] = STATE(817), - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1199), - [anon_sym_alias] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_let_DASHenv] = ACTIONS(1199), - [anon_sym_mut] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [sym_cmd_identifier] = ACTIONS(1201), - [anon_sym_LF] = ACTIONS(1203), - [anon_sym_def] = ACTIONS(1199), - [anon_sym_def_DASHenv] = ACTIONS(1199), - [anon_sym_export_DASHenv] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1199), - [anon_sym_error] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_try] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_source] = ACTIONS(1199), - [anon_sym_source_DASHenv] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_hide] = ACTIONS(1199), - [anon_sym_hide_DASHenv] = ACTIONS(1199), - [anon_sym_overlay] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_not] = ACTIONS(1199), - [anon_sym_DOT_DOT_LT] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1199), - [sym_val_nothing] = ACTIONS(1199), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), - [aux_sym_val_number_token1] = ACTIONS(1199), - [aux_sym_val_number_token2] = ACTIONS(1199), - [aux_sym_val_number_token3] = ACTIONS(1199), - [aux_sym_val_number_token4] = ACTIONS(1199), - [aux_sym_val_number_token5] = ACTIONS(1199), - [anon_sym_inf] = ACTIONS(1199), - [anon_sym_DASHinf] = ACTIONS(1199), - [anon_sym_NaN] = ACTIONS(1199), - [anon_sym_0b] = ACTIONS(1199), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym__str_single_quotes] = ACTIONS(1211), - [sym__str_back_ticks] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1199), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(3), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_err_GT] = ACTIONS(901), - [anon_sym_out_GT] = ACTIONS(901), - [anon_sym_e_GT] = ACTIONS(901), - [anon_sym_o_GT] = ACTIONS(901), - [anon_sym_err_PLUSout_GT] = ACTIONS(901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(901), - [anon_sym_o_PLUSe_GT] = ACTIONS(901), - [anon_sym_e_PLUSo_GT] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [aux_sym_unquoted_token1] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(908), - [anon_sym_out_GT] = ACTIONS(908), - [anon_sym_e_GT] = ACTIONS(908), - [anon_sym_o_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [500] = { - [sym__ctrl_expression] = STATE(3497), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3840), - [sym_where_command] = STATE(3311), - [sym__expression] = STATE(2580), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3313), - [sym_comment] = STATE(500), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(572), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [501] = { - [sym__ctrl_expression] = STATE(3181), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_pipe_element_parenthesized_last] = STATE(3558), - [sym_where_command] = STATE(3118), - [sym__expression] = STATE(2394), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3114), - [sym_comment] = STATE(501), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(572), - [sym_cmd_identifier] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(147), - }, - [502] = { - [sym__ctrl_expression] = STATE(3277), - [sym_ctrl_do] = STATE(895), - [sym_ctrl_if] = STATE(895), - [sym_ctrl_match] = STATE(895), - [sym_ctrl_try] = STATE(895), - [sym_ctrl_return] = STATE(895), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3367), - [sym_where_command] = STATE(3116), - [sym__expression] = STATE(2400), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_command] = STATE(3116), - [sym_comment] = STATE(502), - [aux_sym_pipeline_repeat1] = STATE(535), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(147), - }, - [503] = { - [sym_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1213), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_err_GT] = ACTIONS(836), - [anon_sym_out_GT] = ACTIONS(836), - [anon_sym_e_GT] = ACTIONS(836), - [anon_sym_o_GT] = ACTIONS(836), - [anon_sym_err_PLUSout_GT] = ACTIONS(836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(836), - [anon_sym_o_PLUSe_GT] = ACTIONS(836), - [anon_sym_e_PLUSo_GT] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [aux_sym_unquoted_token1] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [504] = { - [sym_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1213), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_mod] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_bit_DASHshl] = ACTIONS(836), - [anon_sym_bit_DASHshr] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_LT2] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_not_DASHin] = ACTIONS(836), - [anon_sym_starts_DASHwith] = ACTIONS(836), - [anon_sym_ends_DASHwith] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_BANG_TILDE] = ACTIONS(836), - [anon_sym_bit_DASHand] = ACTIONS(836), - [anon_sym_bit_DASHxor] = ACTIONS(836), - [anon_sym_bit_DASHor] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_xor] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_err_GT] = ACTIONS(836), - [anon_sym_out_GT] = ACTIONS(836), - [anon_sym_e_GT] = ACTIONS(836), - [anon_sym_o_GT] = ACTIONS(836), - [anon_sym_err_PLUSout_GT] = ACTIONS(836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(836), - [anon_sym_o_PLUSe_GT] = ACTIONS(836), - [anon_sym_e_PLUSo_GT] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [aux_sym_unquoted_token1] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [505] = { - [sym__command_name] = STATE(921), - [sym_scope_pattern] = STATE(916), - [sym_wild_card] = STATE(924), - [sym_command_list] = STATE(925), - [sym_val_string] = STATE(766), - [sym__str_double_quotes] = STATE(817), - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1215), - [anon_sym_alias] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_let_DASHenv] = ACTIONS(1215), - [anon_sym_mut] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [sym_cmd_identifier] = ACTIONS(1201), - [anon_sym_LF] = ACTIONS(1217), - [anon_sym_def] = ACTIONS(1215), - [anon_sym_def_DASHenv] = ACTIONS(1215), - [anon_sym_export_DASHenv] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_use] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1215), - [anon_sym_error] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_loop] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_source] = ACTIONS(1215), - [anon_sym_source_DASHenv] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_hide] = ACTIONS(1215), - [anon_sym_hide_DASHenv] = ACTIONS(1215), - [anon_sym_overlay] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_where] = ACTIONS(1215), - [anon_sym_not] = ACTIONS(1215), - [anon_sym_DOT_DOT_LT] = ACTIONS(1215), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), - [sym_val_nothing] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), - [aux_sym_val_number_token1] = ACTIONS(1215), - [aux_sym_val_number_token2] = ACTIONS(1215), - [aux_sym_val_number_token3] = ACTIONS(1215), - [aux_sym_val_number_token4] = ACTIONS(1215), - [aux_sym_val_number_token5] = ACTIONS(1215), - [anon_sym_inf] = ACTIONS(1215), - [anon_sym_DASHinf] = ACTIONS(1215), - [anon_sym_NaN] = ACTIONS(1215), - [anon_sym_0b] = ACTIONS(1215), - [anon_sym_0o] = ACTIONS(1215), - [anon_sym_0x] = ACTIONS(1215), - [sym_val_date] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym__str_single_quotes] = ACTIONS(1211), - [sym__str_back_ticks] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(3), - }, - [506] = { - [sym_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_err_GT] = ACTIONS(842), - [anon_sym_out_GT] = ACTIONS(842), - [anon_sym_e_GT] = ACTIONS(842), - [anon_sym_o_GT] = ACTIONS(842), - [anon_sym_err_PLUSout_GT] = ACTIONS(842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(842), - [anon_sym_o_PLUSe_GT] = ACTIONS(842), - [anon_sym_e_PLUSo_GT] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [aux_sym_unquoted_token1] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [507] = { - [sym__command_name] = STATE(921), - [sym_scope_pattern] = STATE(935), - [sym_wild_card] = STATE(924), - [sym_command_list] = STATE(925), - [sym_val_string] = STATE(766), - [sym__str_double_quotes] = STATE(817), - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(1219), - [anon_sym_alias] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_let_DASHenv] = ACTIONS(1219), - [anon_sym_mut] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [sym_cmd_identifier] = ACTIONS(1201), - [anon_sym_LF] = ACTIONS(1221), - [anon_sym_def] = ACTIONS(1219), - [anon_sym_def_DASHenv] = ACTIONS(1219), - [anon_sym_export_DASHenv] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym_module] = ACTIONS(1219), - [anon_sym_use] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1219), - [anon_sym_error] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_loop] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_source] = ACTIONS(1219), - [anon_sym_source_DASHenv] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_hide] = ACTIONS(1219), - [anon_sym_hide_DASHenv] = ACTIONS(1219), - [anon_sym_overlay] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_where] = ACTIONS(1219), - [anon_sym_not] = ACTIONS(1219), - [anon_sym_DOT_DOT_LT] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), - [sym_val_nothing] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [aux_sym_val_number_token1] = ACTIONS(1219), - [aux_sym_val_number_token2] = ACTIONS(1219), - [aux_sym_val_number_token3] = ACTIONS(1219), - [aux_sym_val_number_token4] = ACTIONS(1219), - [aux_sym_val_number_token5] = ACTIONS(1219), - [anon_sym_inf] = ACTIONS(1219), - [anon_sym_DASHinf] = ACTIONS(1219), - [anon_sym_NaN] = ACTIONS(1219), - [anon_sym_0b] = ACTIONS(1219), - [anon_sym_0o] = ACTIONS(1219), - [anon_sym_0x] = ACTIONS(1219), - [sym_val_date] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym__str_single_quotes] = ACTIONS(1211), - [sym__str_back_ticks] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(3), - }, - [508] = { - [sym_expr_parenthesized] = STATE(581), - [sym_val_number] = STATE(581), - [sym_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_DASH_DASH] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_in] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_STAR_STAR] = ACTIONS(806), - [anon_sym_PLUS_PLUS] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_mod] = ACTIONS(806), - [anon_sym_SLASH_SLASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_bit_DASHshl] = ACTIONS(806), - [anon_sym_bit_DASHshr] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT2] = ACTIONS(806), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_not_DASHin] = ACTIONS(806), - [anon_sym_starts_DASHwith] = ACTIONS(806), - [anon_sym_ends_DASHwith] = ACTIONS(806), - [anon_sym_EQ_TILDE] = ACTIONS(806), - [anon_sym_BANG_TILDE] = ACTIONS(806), - [anon_sym_bit_DASHand] = ACTIONS(806), - [anon_sym_bit_DASHxor] = ACTIONS(806), - [anon_sym_bit_DASHor] = ACTIONS(806), - [anon_sym_and] = ACTIONS(806), - [anon_sym_xor] = ACTIONS(806), - [anon_sym_or] = ACTIONS(806), - [anon_sym_DOT_DOT_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(806), - [sym_val_nothing] = ACTIONS(806), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [aux_sym_val_number_token1] = ACTIONS(1225), - [aux_sym_val_number_token2] = ACTIONS(1225), - [aux_sym_val_number_token3] = ACTIONS(1225), - [aux_sym_val_number_token4] = ACTIONS(1225), - [aux_sym_val_number_token5] = ACTIONS(1225), - [anon_sym_inf] = ACTIONS(1225), - [anon_sym_DASHinf] = ACTIONS(1225), - [anon_sym_NaN] = ACTIONS(1225), - [anon_sym_0b] = ACTIONS(806), - [anon_sym_0o] = ACTIONS(806), - [anon_sym_0x] = ACTIONS(806), - [sym_val_date] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [sym__str_single_quotes] = ACTIONS(806), - [sym__str_back_ticks] = ACTIONS(806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(806), - [anon_sym_err_GT] = ACTIONS(806), - [anon_sym_out_GT] = ACTIONS(806), - [anon_sym_e_GT] = ACTIONS(806), - [anon_sym_o_GT] = ACTIONS(806), - [anon_sym_err_PLUSout_GT] = ACTIONS(806), - [anon_sym_out_PLUSerr_GT] = ACTIONS(806), - [anon_sym_o_PLUSe_GT] = ACTIONS(806), - [anon_sym_e_PLUSo_GT] = ACTIONS(806), - [sym_short_flag] = ACTIONS(806), - [aux_sym_unquoted_token1] = ACTIONS(806), + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [509] = { - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3122), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(509), - [aux_sym_pipeline_repeat1] = STATE(535), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [510] = { - [sym__ctrl_expression] = STATE(3015), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_pipe_element_last] = STATE(3610), - [sym_where_command] = STATE(3022), - [sym__expression] = STATE(2298), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3022), - [sym_comment] = STATE(510), - [aux_sym_pipeline_repeat1] = STATE(535), - [sym_cmd_identifier] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_break] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(237), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(241), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(241), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(251), - [aux_sym_val_number_token4] = ACTIONS(251), - [aux_sym_val_number_token5] = ACTIONS(251), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(251), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [sym__str_single_quotes] = ACTIONS(259), - [sym__str_back_ticks] = ACTIONS(259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(147), - }, - [511] = { - [sym_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_err_GT] = ACTIONS(846), - [anon_sym_out_GT] = ACTIONS(846), - [anon_sym_e_GT] = ACTIONS(846), - [anon_sym_o_GT] = ACTIONS(846), - [anon_sym_err_PLUSout_GT] = ACTIONS(846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(846), - [anon_sym_o_PLUSe_GT] = ACTIONS(846), - [anon_sym_e_PLUSo_GT] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [aux_sym_unquoted_token1] = ACTIONS(846), + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [512] = { - [sym_comment] = STATE(512), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(914), - [anon_sym_out_GT] = ACTIONS(914), - [anon_sym_e_GT] = ACTIONS(914), - [anon_sym_o_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(914), + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [513] = { - [sym_comment] = STATE(513), + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_SLASH] = ACTIONS(1010), @@ -100832,6 +90612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1010), [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), [anon_sym_DOT_DOT_LT] = ACTIONS(1010), [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), @@ -100855,1159 +90636,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1010), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [sym_short_flag] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [514] = { - [sym__flag] = STATE(709), - [sym_long_flag] = STATE(697), - [sym_comment] = STATE(514), - [aux_sym_overlay_use_repeat1] = STATE(514), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_alias] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_let_DASHenv] = ACTIONS(1227), - [anon_sym_mut] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_cmd_identifier] = ACTIONS(1227), - [anon_sym_LF] = ACTIONS(1229), - [anon_sym_def] = ACTIONS(1227), - [anon_sym_def_DASHenv] = ACTIONS(1227), - [anon_sym_export_DASHenv] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_error] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_source] = ACTIONS(1227), - [anon_sym_source_DASHenv] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_hide_DASHenv] = ACTIONS(1227), - [anon_sym_overlay] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1227), - [anon_sym_where] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_DOT_DOT_LT] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), - [sym_val_nothing] = ACTIONS(1227), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [aux_sym_val_number_token1] = ACTIONS(1227), - [aux_sym_val_number_token2] = ACTIONS(1227), - [aux_sym_val_number_token3] = ACTIONS(1227), - [aux_sym_val_number_token4] = ACTIONS(1227), - [aux_sym_val_number_token5] = ACTIONS(1227), - [anon_sym_inf] = ACTIONS(1227), - [anon_sym_DASHinf] = ACTIONS(1227), - [anon_sym_NaN] = ACTIONS(1227), - [anon_sym_0b] = ACTIONS(1227), - [anon_sym_0o] = ACTIONS(1227), - [anon_sym_0x] = ACTIONS(1227), - [sym_val_date] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym__str_single_quotes] = ACTIONS(1227), - [sym__str_back_ticks] = ACTIONS(1227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [sym_short_flag] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LF] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_STAR_STAR] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_bit_DASHshl] = ACTIONS(980), - [anon_sym_bit_DASHshr] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_not_DASHin] = ACTIONS(980), - [anon_sym_starts_DASHwith] = ACTIONS(980), - [anon_sym_ends_DASHwith] = ACTIONS(980), - [anon_sym_EQ_TILDE] = ACTIONS(980), - [anon_sym_BANG_TILDE] = ACTIONS(980), - [anon_sym_bit_DASHand] = ACTIONS(980), - [anon_sym_bit_DASHxor] = ACTIONS(980), - [anon_sym_bit_DASHor] = ACTIONS(980), - [anon_sym_and] = ACTIONS(980), - [anon_sym_xor] = ACTIONS(980), - [anon_sym_or] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [sym_val_nothing] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(980), - [anon_sym_DASHinf] = ACTIONS(980), - [anon_sym_NaN] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [sym_short_flag] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(980), + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_in] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_STAR_STAR] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_bit_DASHshl] = ACTIONS(972), - [anon_sym_bit_DASHshr] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_not_DASHin] = ACTIONS(972), - [anon_sym_starts_DASHwith] = ACTIONS(972), - [anon_sym_ends_DASHwith] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_BANG_TILDE] = ACTIONS(972), - [anon_sym_bit_DASHand] = ACTIONS(972), - [anon_sym_bit_DASHxor] = ACTIONS(972), - [anon_sym_bit_DASHor] = ACTIONS(972), - [anon_sym_and] = ACTIONS(972), - [anon_sym_xor] = ACTIONS(972), - [anon_sym_or] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [sym_val_nothing] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = 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(972), - [aux_sym_val_number_token5] = ACTIONS(972), - [anon_sym_inf] = ACTIONS(972), - [anon_sym_DASHinf] = ACTIONS(972), - [anon_sym_NaN] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(972), - [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_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [sym_short_flag] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_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), - [sym_short_flag] = ACTIONS(948), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), - }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [sym_val_nothing] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(968), - [anon_sym_DASHinf] = ACTIONS(968), - [anon_sym_NaN] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [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_err_GT] = ACTIONS(968), - [anon_sym_out_GT] = ACTIONS(968), - [anon_sym_e_GT] = ACTIONS(968), - [anon_sym_o_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT] = ACTIONS(968), - [sym_short_flag] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_in] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_STAR_STAR] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_mod] = ACTIONS(964), - [anon_sym_SLASH_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_bit_DASHshl] = ACTIONS(964), - [anon_sym_bit_DASHshr] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_not_DASHin] = ACTIONS(964), - [anon_sym_starts_DASHwith] = ACTIONS(964), - [anon_sym_ends_DASHwith] = ACTIONS(964), - [anon_sym_EQ_TILDE] = ACTIONS(964), - [anon_sym_BANG_TILDE] = ACTIONS(964), - [anon_sym_bit_DASHand] = ACTIONS(964), - [anon_sym_bit_DASHxor] = ACTIONS(964), - [anon_sym_bit_DASHor] = ACTIONS(964), - [anon_sym_and] = ACTIONS(964), - [anon_sym_xor] = ACTIONS(964), - [anon_sym_or] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [sym_val_nothing] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(964), - [anon_sym_DASHinf] = ACTIONS(964), - [anon_sym_NaN] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(964), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [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_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), - [sym_short_flag] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(3), - }, - [520] = { - [sym__flag] = STATE(709), - [sym_long_flag] = STATE(697), - [sym_comment] = STATE(520), - [aux_sym_overlay_use_repeat1] = STATE(514), - [anon_sym_export] = ACTIONS(1237), - [anon_sym_alias] = ACTIONS(1237), - [anon_sym_let] = ACTIONS(1237), - [anon_sym_let_DASHenv] = ACTIONS(1237), - [anon_sym_mut] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [sym_cmd_identifier] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1239), - [anon_sym_def] = ACTIONS(1237), - [anon_sym_def_DASHenv] = ACTIONS(1237), - [anon_sym_export_DASHenv] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym_module] = ACTIONS(1237), - [anon_sym_use] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [anon_sym_error] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_match] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_source] = ACTIONS(1237), - [anon_sym_source_DASHenv] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_hide] = ACTIONS(1237), - [anon_sym_hide_DASHenv] = ACTIONS(1237), - [anon_sym_overlay] = ACTIONS(1237), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), - [sym_val_nothing] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1237), - [anon_sym_false] = ACTIONS(1237), - [aux_sym_val_number_token1] = ACTIONS(1237), - [aux_sym_val_number_token2] = ACTIONS(1237), - [aux_sym_val_number_token3] = ACTIONS(1237), - [aux_sym_val_number_token4] = ACTIONS(1237), - [aux_sym_val_number_token5] = ACTIONS(1237), - [anon_sym_inf] = ACTIONS(1237), - [anon_sym_DASHinf] = ACTIONS(1237), - [anon_sym_NaN] = ACTIONS(1237), - [anon_sym_0b] = ACTIONS(1237), - [anon_sym_0o] = ACTIONS(1237), - [anon_sym_0x] = ACTIONS(1237), - [sym_val_date] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym__str_single_quotes] = ACTIONS(1237), - [sym__str_back_ticks] = ACTIONS(1237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1237), - [sym_short_flag] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(3), - }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_STAR_STAR] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1018), - [anon_sym_SLASH_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_bit_DASHshl] = ACTIONS(1018), - [anon_sym_bit_DASHshr] = ACTIONS(1018), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_not_DASHin] = ACTIONS(1018), - [anon_sym_starts_DASHwith] = ACTIONS(1018), - [anon_sym_ends_DASHwith] = ACTIONS(1018), - [anon_sym_EQ_TILDE] = ACTIONS(1018), - [anon_sym_BANG_TILDE] = ACTIONS(1018), - [anon_sym_bit_DASHand] = ACTIONS(1018), - [anon_sym_bit_DASHxor] = ACTIONS(1018), - [anon_sym_bit_DASHor] = ACTIONS(1018), - [anon_sym_and] = ACTIONS(1018), - [anon_sym_xor] = ACTIONS(1018), - [anon_sym_or] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [sym_short_flag] = ACTIONS(1018), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [522] = { - [sym__command_name] = STATE(1000), - [sym_scope_pattern] = STATE(980), - [sym_wild_card] = STATE(1012), - [sym_command_list] = STATE(1008), - [sym_val_string] = STATE(829), - [sym__str_double_quotes] = STATE(880), - [sym_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1219), - [anon_sym_alias] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_let_DASHenv] = ACTIONS(1219), - [anon_sym_mut] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1221), - [anon_sym_def] = ACTIONS(1219), - [anon_sym_def_DASHenv] = ACTIONS(1219), - [anon_sym_export_DASHenv] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym_module] = ACTIONS(1219), - [anon_sym_use] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1219), - [anon_sym_error] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_loop] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_try] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_source] = ACTIONS(1219), - [anon_sym_source_DASHenv] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_hide] = ACTIONS(1219), - [anon_sym_hide_DASHenv] = ACTIONS(1219), - [anon_sym_overlay] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(1219), - [anon_sym_not] = ACTIONS(1219), - [anon_sym_DOT_DOT_LT] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), - [sym_val_nothing] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [aux_sym_val_number_token1] = ACTIONS(1219), - [aux_sym_val_number_token2] = ACTIONS(1219), - [aux_sym_val_number_token3] = ACTIONS(1219), - [aux_sym_val_number_token4] = ACTIONS(1219), - [aux_sym_val_number_token5] = ACTIONS(1219), - [anon_sym_inf] = ACTIONS(1219), - [anon_sym_DASHinf] = ACTIONS(1219), - [anon_sym_NaN] = ACTIONS(1219), - [anon_sym_0b] = ACTIONS(1219), - [anon_sym_0o] = ACTIONS(1219), - [anon_sym_0x] = ACTIONS(1219), - [sym_val_date] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(3), - }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(135), - [anon_sym_DOT_DOT] = ACTIONS(135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(135), - [sym_val_nothing] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym_val_number_token1] = ACTIONS(1010), - [aux_sym_val_number_token2] = ACTIONS(1010), - [aux_sym_val_number_token3] = ACTIONS(1010), - [aux_sym_val_number_token4] = ACTIONS(1010), - [aux_sym_val_number_token5] = ACTIONS(1010), - [anon_sym_inf] = ACTIONS(1010), - [anon_sym_DASHinf] = ACTIONS(1010), - [anon_sym_NaN] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [sym_short_flag] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [sym_short_flag] = ACTIONS(920), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [525] = { - [sym__flag] = STATE(709), - [sym_long_flag] = STATE(697), - [sym_comment] = STATE(525), - [aux_sym_overlay_use_repeat1] = STATE(520), - [anon_sym_export] = ACTIONS(1257), - [anon_sym_alias] = ACTIONS(1257), - [anon_sym_let] = ACTIONS(1257), - [anon_sym_let_DASHenv] = ACTIONS(1257), - [anon_sym_mut] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [sym_cmd_identifier] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1257), - [anon_sym_def_DASHenv] = ACTIONS(1257), - [anon_sym_export_DASHenv] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_module] = ACTIONS(1257), - [anon_sym_use] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_DOLLAR] = ACTIONS(1257), - [anon_sym_error] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_loop] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_match] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_try] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_source] = ACTIONS(1257), - [anon_sym_source_DASHenv] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_hide] = ACTIONS(1257), - [anon_sym_hide_DASHenv] = ACTIONS(1257), - [anon_sym_overlay] = ACTIONS(1257), - [anon_sym_as] = ACTIONS(1261), - [anon_sym_where] = ACTIONS(1257), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_DOT_DOT_LT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), - [sym_val_nothing] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1257), - [anon_sym_false] = ACTIONS(1257), - [aux_sym_val_number_token1] = ACTIONS(1257), - [aux_sym_val_number_token2] = ACTIONS(1257), - [aux_sym_val_number_token3] = ACTIONS(1257), - [aux_sym_val_number_token4] = ACTIONS(1257), - [aux_sym_val_number_token5] = ACTIONS(1257), - [anon_sym_inf] = ACTIONS(1257), - [anon_sym_DASHinf] = ACTIONS(1257), - [anon_sym_NaN] = ACTIONS(1257), - [anon_sym_0b] = ACTIONS(1257), - [anon_sym_0o] = ACTIONS(1257), - [anon_sym_0x] = ACTIONS(1257), - [sym_val_date] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym__str_single_quotes] = ACTIONS(1257), - [sym__str_back_ticks] = ACTIONS(1257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1257), - [sym_short_flag] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(3), - }, - [526] = { - [sym__flag] = STATE(709), - [sym_long_flag] = STATE(697), - [sym_comment] = STATE(526), - [aux_sym_overlay_use_repeat1] = STATE(514), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_def_DASHenv] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_DOT_DOT_LT] = ACTIONS(1263), - [anon_sym_DOT_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1263), - [sym_val_nothing] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym_val_number_token1] = ACTIONS(1263), - [aux_sym_val_number_token2] = ACTIONS(1263), - [aux_sym_val_number_token3] = ACTIONS(1263), - [aux_sym_val_number_token4] = ACTIONS(1263), - [aux_sym_val_number_token5] = ACTIONS(1263), - [anon_sym_inf] = ACTIONS(1263), - [anon_sym_DASHinf] = ACTIONS(1263), - [anon_sym_NaN] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [sym_short_flag] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(3), - }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_in] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_STAR_STAR] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(956), - [anon_sym_SLASH_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_bit_DASHshl] = ACTIONS(956), - [anon_sym_bit_DASHshr] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_not_DASHin] = ACTIONS(956), - [anon_sym_starts_DASHwith] = ACTIONS(956), - [anon_sym_ends_DASHwith] = ACTIONS(956), - [anon_sym_EQ_TILDE] = ACTIONS(956), - [anon_sym_BANG_TILDE] = ACTIONS(956), - [anon_sym_bit_DASHand] = ACTIONS(956), - [anon_sym_bit_DASHxor] = ACTIONS(956), - [anon_sym_bit_DASHor] = ACTIONS(956), - [anon_sym_and] = ACTIONS(956), - [anon_sym_xor] = ACTIONS(956), - [anon_sym_or] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [sym_val_nothing] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(956), - [anon_sym_DASHinf] = ACTIONS(956), - [anon_sym_NaN] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(956), - [anon_sym_0o] = ACTIONS(956), - [anon_sym_0x] = ACTIONS(956), - [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_err_GT] = ACTIONS(956), - [anon_sym_out_GT] = ACTIONS(956), - [anon_sym_e_GT] = ACTIONS(956), - [anon_sym_o_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT] = ACTIONS(956), - [sym_short_flag] = ACTIONS(956), - [aux_sym_unquoted_token1] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(3), - }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_err_GT] = ACTIONS(1025), - [anon_sym_out_GT] = ACTIONS(1025), - [anon_sym_e_GT] = ACTIONS(1025), - [anon_sym_o_GT] = ACTIONS(1025), - [anon_sym_err_PLUSout_GT] = ACTIONS(1025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1025), - [anon_sym_o_PLUSe_GT] = ACTIONS(1025), - [anon_sym_e_PLUSo_GT] = ACTIONS(1025), - [sym_short_flag] = ACTIONS(1025), - [aux_sym_unquoted_token1] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(3), - }, - [529] = { - [sym_comment] = STATE(529), + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), [anon_sym_SEMI] = ACTIONS(952), + [sym_cmd_identifier] = ACTIONS(952), [anon_sym_LF] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_def_DASHenv] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), [anon_sym_LBRACK] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(952), [anon_sym_RPAREN] = ACTIONS(952), [anon_sym_PIPE] = ACTIONS(952), [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), [anon_sym_GT] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(952), [anon_sym_DASH] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), [anon_sym_in] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(952), [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), [anon_sym_STAR] = ACTIONS(952), + [anon_sym_where] = ACTIONS(952), [anon_sym_STAR_STAR] = ACTIONS(952), [anon_sym_PLUS_PLUS] = ACTIONS(952), [anon_sym_SLASH] = ACTIONS(952), @@ -102032,6 +90806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(952), [anon_sym_xor] = ACTIONS(952), [anon_sym_or] = ACTIONS(952), + [anon_sym_not] = ACTIONS(952), [anon_sym_DOT_DOT_LT] = ACTIONS(952), [anon_sym_DOT_DOT] = ACTIONS(952), [anon_sym_DOT_DOT_EQ] = ACTIONS(952), @@ -102055,709 +90830,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(952), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [sym_short_flag] = ACTIONS(952), - [aux_sym_unquoted_token1] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(3), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_err_GT] = ACTIONS(940), - [anon_sym_out_GT] = ACTIONS(940), - [anon_sym_e_GT] = ACTIONS(940), - [anon_sym_o_GT] = ACTIONS(940), - [anon_sym_err_PLUSout_GT] = ACTIONS(940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(940), - [anon_sym_o_PLUSe_GT] = ACTIONS(940), - [anon_sym_e_PLUSo_GT] = ACTIONS(940), - [sym_short_flag] = ACTIONS(940), - [aux_sym_unquoted_token1] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(3), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_err_GT] = ACTIONS(944), - [anon_sym_out_GT] = ACTIONS(944), - [anon_sym_e_GT] = ACTIONS(944), - [anon_sym_o_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), - [aux_sym_unquoted_token1] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_SEMI] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_err_GT] = ACTIONS(842), - [anon_sym_out_GT] = ACTIONS(842), - [anon_sym_e_GT] = ACTIONS(842), - [anon_sym_o_GT] = ACTIONS(842), - [anon_sym_err_PLUSout_GT] = ACTIONS(842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(842), - [anon_sym_o_PLUSe_GT] = ACTIONS(842), - [anon_sym_e_PLUSo_GT] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [aux_sym_unquoted_token1] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LF] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_in] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_STAR_STAR] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_bit_DASHshl] = ACTIONS(988), - [anon_sym_bit_DASHshr] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_not_DASHin] = ACTIONS(988), - [anon_sym_starts_DASHwith] = ACTIONS(988), - [anon_sym_ends_DASHwith] = ACTIONS(988), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_BANG_TILDE] = ACTIONS(988), - [anon_sym_bit_DASHand] = ACTIONS(988), - [anon_sym_bit_DASHxor] = ACTIONS(988), - [anon_sym_bit_DASHor] = ACTIONS(988), - [anon_sym_and] = ACTIONS(988), - [anon_sym_xor] = ACTIONS(988), - [anon_sym_or] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [sym_val_nothing] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym_val_number_token1] = ACTIONS(988), - [aux_sym_val_number_token2] = ACTIONS(988), - [aux_sym_val_number_token3] = ACTIONS(988), - [aux_sym_val_number_token4] = ACTIONS(988), - [aux_sym_val_number_token5] = ACTIONS(988), - [anon_sym_inf] = ACTIONS(988), - [anon_sym_DASHinf] = ACTIONS(988), - [anon_sym_NaN] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [sym_short_flag] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_err_GT] = ACTIONS(846), - [anon_sym_out_GT] = ACTIONS(846), - [anon_sym_e_GT] = ACTIONS(846), - [anon_sym_o_GT] = ACTIONS(846), - [anon_sym_err_PLUSout_GT] = ACTIONS(846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(846), - [anon_sym_o_PLUSe_GT] = ACTIONS(846), - [anon_sym_e_PLUSo_GT] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [aux_sym_unquoted_token1] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [535] = { - [sym__ctrl_expression] = STATE(3567), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element] = STATE(1921), - [sym_where_command] = STATE(3557), - [sym__expression] = STATE(2673), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_command] = STATE(3557), - [sym_comment] = STATE(535), - [aux_sym_pipeline_repeat1] = STATE(535), - [sym_cmd_identifier] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1311), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [sym_val_nothing] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1326), - [aux_sym_val_number_token2] = ACTIONS(1326), - [aux_sym_val_number_token3] = ACTIONS(1329), - [aux_sym_val_number_token4] = ACTIONS(1329), - [aux_sym_val_number_token5] = ACTIONS(1329), - [anon_sym_inf] = ACTIONS(1326), - [anon_sym_DASHinf] = ACTIONS(1329), - [anon_sym_NaN] = ACTIONS(1326), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1341), - [sym__str_back_ticks] = ACTIONS(1341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(147), - }, - [536] = { - [sym_path] = STATE(694), - [sym_comment] = STATE(536), - [aux_sym_cell_path_repeat1] = STATE(536), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1353), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(3), - }, - [537] = { - [sym__command_name] = STATE(1000), - [sym_scope_pattern] = STATE(977), - [sym_wild_card] = STATE(1012), - [sym_command_list] = STATE(1008), - [sym_val_string] = STATE(829), - [sym__str_double_quotes] = STATE(880), - [sym_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1217), - [anon_sym_export] = ACTIONS(1215), - [anon_sym_alias] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_let_DASHenv] = ACTIONS(1215), - [anon_sym_mut] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1217), - [anon_sym_def] = ACTIONS(1215), - [anon_sym_def_DASHenv] = ACTIONS(1215), - [anon_sym_export_DASHenv] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_use] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1215), - [anon_sym_error] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_loop] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_source] = ACTIONS(1215), - [anon_sym_source_DASHenv] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_hide] = ACTIONS(1215), - [anon_sym_hide_DASHenv] = ACTIONS(1215), - [anon_sym_overlay] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(1215), - [anon_sym_not] = ACTIONS(1215), - [anon_sym_DOT_DOT_LT] = ACTIONS(1215), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), - [sym_val_nothing] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), - [aux_sym_val_number_token1] = ACTIONS(1215), - [aux_sym_val_number_token2] = ACTIONS(1215), - [aux_sym_val_number_token3] = ACTIONS(1215), - [aux_sym_val_number_token4] = ACTIONS(1215), - [aux_sym_val_number_token5] = ACTIONS(1215), - [anon_sym_inf] = ACTIONS(1215), - [anon_sym_DASHinf] = ACTIONS(1215), - [anon_sym_NaN] = ACTIONS(1215), - [anon_sym_0b] = ACTIONS(1215), - [anon_sym_0o] = ACTIONS(1215), - [anon_sym_0x] = ACTIONS(1215), - [sym_val_date] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(3), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [sym_val_nothing] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym_val_number_token1] = ACTIONS(1006), - [aux_sym_val_number_token2] = ACTIONS(1006), - [aux_sym_val_number_token3] = ACTIONS(1006), - [aux_sym_val_number_token4] = ACTIONS(1006), - [aux_sym_val_number_token5] = ACTIONS(1006), - [anon_sym_inf] = ACTIONS(1006), - [anon_sym_DASHinf] = ACTIONS(1006), - [anon_sym_NaN] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [sym_short_flag] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1006), + [391] = { + [sym_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(901), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), [anon_sym_POUND] = ACTIONS(3), }, - [539] = { - [sym_comment] = STATE(539), + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), [anon_sym_LBRACK] = ACTIONS(1014), [anon_sym_LPAREN] = ACTIONS(1014), [anon_sym_RPAREN] = ACTIONS(1014), [anon_sym_PIPE] = ACTIONS(1014), [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), [anon_sym_GT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1014), [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), [anon_sym_in] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), [anon_sym_LBRACE] = ACTIONS(1014), [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), [anon_sym_STAR_STAR] = ACTIONS(1014), [anon_sym_PLUS_PLUS] = ACTIONS(1014), [anon_sym_SLASH] = ACTIONS(1014), @@ -102782,6 +91000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1014), [anon_sym_xor] = ACTIONS(1014), [anon_sym_or] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), [anon_sym_DOT_DOT_LT] = ACTIONS(1014), [anon_sym_DOT_DOT] = ACTIONS(1014), [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), @@ -102805,1161 +91024,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1014), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [sym_short_flag] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(3), - }, - [540] = { - [sym_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(914), - [anon_sym_out_GT] = ACTIONS(914), - [anon_sym_e_GT] = ACTIONS(914), - [anon_sym_o_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [sym_short_flag] = ACTIONS(936), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [542] = { - [sym_path] = STATE(694), - [sym_comment] = STATE(542), - [aux_sym_cell_path_repeat1] = STATE(536), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - }, - [543] = { - [sym_path] = STATE(694), - [sym_comment] = STATE(543), - [aux_sym_cell_path_repeat1] = STATE(542), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(3), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_STAR_STAR] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_SLASH_SLASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_bit_DASHshl] = ACTIONS(960), - [anon_sym_bit_DASHshr] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_not_DASHin] = ACTIONS(960), - [anon_sym_starts_DASHwith] = ACTIONS(960), - [anon_sym_ends_DASHwith] = ACTIONS(960), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_BANG_TILDE] = ACTIONS(960), - [anon_sym_bit_DASHand] = ACTIONS(960), - [anon_sym_bit_DASHxor] = ACTIONS(960), - [anon_sym_bit_DASHor] = ACTIONS(960), - [anon_sym_and] = ACTIONS(960), - [anon_sym_xor] = ACTIONS(960), - [anon_sym_or] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [sym_val_nothing] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(960), - [anon_sym_DASHinf] = ACTIONS(960), - [anon_sym_NaN] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [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_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [sym_short_flag] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [sym_short_flag] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(992), + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(123), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [sym_short_flag] = ACTIONS(924), - [aux_sym_unquoted_token1] = ACTIONS(924), + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [395] = { + [sym_comment] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(920), + [anon_sym_export] = ACTIONS(918), + [anon_sym_alias] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_let_DASHenv] = ACTIONS(918), + [anon_sym_mut] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [sym_cmd_identifier] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_def] = ACTIONS(918), + [anon_sym_def_DASHenv] = ACTIONS(918), + [anon_sym_export_DASHenv] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_module] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_error] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_source] = ACTIONS(918), + [anon_sym_source_DASHenv] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_hide] = ACTIONS(918), + [anon_sym_hide_DASHenv] = ACTIONS(918), + [anon_sym_overlay] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_where] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_not] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), [anon_sym_POUND] = ACTIONS(3), }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [396] = { + [sym_comment] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_def_DASHenv] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(3), }, - [549] = { - [sym__flag] = STATE(709), - [sym_long_flag] = STATE(697), - [sym_comment] = STATE(549), - [aux_sym_overlay_use_repeat1] = STATE(526), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_def_DASHenv] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [sym_val_nothing] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym_val_number_token1] = ACTIONS(1368), - [aux_sym_val_number_token2] = ACTIONS(1368), - [aux_sym_val_number_token3] = ACTIONS(1368), - [aux_sym_val_number_token4] = ACTIONS(1368), - [aux_sym_val_number_token5] = ACTIONS(1368), - [anon_sym_inf] = ACTIONS(1368), - [anon_sym_DASHinf] = ACTIONS(1368), - [anon_sym_NaN] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [sym_short_flag] = ACTIONS(1245), + [397] = { + [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_in] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_STAR_STAR] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_bit_DASHshl] = ACTIONS(984), - [anon_sym_bit_DASHshr] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_not_DASHin] = ACTIONS(984), - [anon_sym_starts_DASHwith] = ACTIONS(984), - [anon_sym_ends_DASHwith] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(984), - [anon_sym_BANG_TILDE] = ACTIONS(984), - [anon_sym_bit_DASHand] = ACTIONS(984), - [anon_sym_bit_DASHxor] = ACTIONS(984), - [anon_sym_bit_DASHor] = ACTIONS(984), - [anon_sym_and] = ACTIONS(984), - [anon_sym_xor] = ACTIONS(984), - [anon_sym_or] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [sym_val_nothing] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(984), - [anon_sym_DASHinf] = ACTIONS(984), - [anon_sym_NaN] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [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(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [sym_short_flag] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(984), + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [399] = { + [sym_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), + [400] = { + [sym_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [555] = { - [sym_comment] = STATE(555), + [401] = { + [sym_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), [anon_sym_GT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), [anon_sym_SLASH] = ACTIONS(1002), [anon_sym_mod] = ACTIONS(1002), [anon_sym_SLASH_SLASH] = ACTIONS(1002), @@ -103982,6 +91866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1002), [anon_sym_xor] = ACTIONS(1002), [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), [anon_sym_DOT_DOT_LT] = ACTIONS(1002), [anon_sym_DOT_DOT] = ACTIONS(1002), [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), @@ -104005,2716 +91890,1014 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [sym_short_flag] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - }, - [556] = { - [sym__command_name] = STATE(1000), - [sym_scope_pattern] = STATE(1013), - [sym_wild_card] = STATE(1012), - [sym_command_list] = STATE(1008), - [sym_val_string] = STATE(829), - [sym__str_double_quotes] = STATE(880), - [sym_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1203), - [anon_sym_export] = ACTIONS(1199), - [anon_sym_alias] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_let_DASHenv] = ACTIONS(1199), - [anon_sym_mut] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1203), - [anon_sym_def] = ACTIONS(1199), - [anon_sym_def_DASHenv] = ACTIONS(1199), - [anon_sym_export_DASHenv] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym_module] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1199), - [anon_sym_error] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_try] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_source] = ACTIONS(1199), - [anon_sym_source_DASHenv] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_hide] = ACTIONS(1199), - [anon_sym_hide_DASHenv] = ACTIONS(1199), - [anon_sym_overlay] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_not] = ACTIONS(1199), - [anon_sym_DOT_DOT_LT] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1199), - [sym_val_nothing] = ACTIONS(1199), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), - [aux_sym_val_number_token1] = ACTIONS(1199), - [aux_sym_val_number_token2] = ACTIONS(1199), - [aux_sym_val_number_token3] = ACTIONS(1199), - [aux_sym_val_number_token4] = ACTIONS(1199), - [aux_sym_val_number_token5] = ACTIONS(1199), - [anon_sym_inf] = ACTIONS(1199), - [anon_sym_DASHinf] = ACTIONS(1199), - [anon_sym_NaN] = ACTIONS(1199), - [anon_sym_0b] = ACTIONS(1199), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1199), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(3), - }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [559] = { - [sym_comment] = STATE(559), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [560] = { - [sym_comment] = STATE(560), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [563] = { - [sym_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_in] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_bit_DASHshl] = ACTIONS(901), - [anon_sym_bit_DASHshr] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(901), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_not_DASHin] = ACTIONS(901), - [anon_sym_starts_DASHwith] = ACTIONS(901), - [anon_sym_ends_DASHwith] = ACTIONS(901), - [anon_sym_EQ_TILDE] = ACTIONS(901), - [anon_sym_BANG_TILDE] = ACTIONS(901), - [anon_sym_bit_DASHand] = ACTIONS(901), - [anon_sym_bit_DASHxor] = ACTIONS(901), - [anon_sym_bit_DASHor] = ACTIONS(901), - [anon_sym_and] = ACTIONS(901), - [anon_sym_xor] = ACTIONS(901), - [anon_sym_or] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_err_GT] = ACTIONS(901), - [anon_sym_out_GT] = ACTIONS(901), - [anon_sym_e_GT] = ACTIONS(901), - [anon_sym_o_GT] = ACTIONS(901), - [anon_sym_err_PLUSout_GT] = ACTIONS(901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(901), - [anon_sym_o_PLUSe_GT] = ACTIONS(901), - [anon_sym_e_PLUSo_GT] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [aux_sym_unquoted_token1] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [566] = { - [sym_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(908), - [anon_sym_out_GT] = ACTIONS(908), - [anon_sym_e_GT] = ACTIONS(908), - [anon_sym_o_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(1384), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LF] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(1384), - [anon_sym_xor] = ACTIONS(1390), - [anon_sym_or] = ACTIONS(1392), - [anon_sym_DOT_DOT_LT] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [sym_val_nothing] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [aux_sym_val_number_token1] = ACTIONS(1386), - [aux_sym_val_number_token2] = ACTIONS(1386), - [aux_sym_val_number_token3] = ACTIONS(1386), - [aux_sym_val_number_token4] = ACTIONS(1386), - [aux_sym_val_number_token5] = ACTIONS(1386), - [anon_sym_inf] = ACTIONS(1386), - [anon_sym_DASHinf] = ACTIONS(1386), - [anon_sym_NaN] = ACTIONS(1386), - [anon_sym_0b] = ACTIONS(1386), - [anon_sym_0o] = ACTIONS(1386), - [anon_sym_0x] = ACTIONS(1386), - [sym_val_date] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym__str_single_quotes] = ACTIONS(1386), - [sym__str_back_ticks] = ACTIONS(1386), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1386), - [anon_sym_err_GT] = ACTIONS(1386), - [anon_sym_out_GT] = ACTIONS(1386), - [anon_sym_e_GT] = ACTIONS(1386), - [anon_sym_o_GT] = ACTIONS(1386), - [anon_sym_err_PLUSout_GT] = ACTIONS(1386), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1386), - [anon_sym_o_PLUSe_GT] = ACTIONS(1386), - [anon_sym_e_PLUSo_GT] = ACTIONS(1386), - [sym_short_flag] = ACTIONS(1386), - [aux_sym_unquoted_token1] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(1384), - [anon_sym_xor] = ACTIONS(1390), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [sym_short_flag] = ACTIONS(932), - [aux_sym_unquoted_token1] = ACTIONS(932), + [403] = { + [sym_comment] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1380), - [anon_sym_bit_DASHor] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(1384), - [anon_sym_xor] = ACTIONS(1390), - [anon_sym_or] = ACTIONS(1392), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [404] = { + [sym_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [572] = { - [sym__ctrl_expression] = STATE(3556), - [sym_ctrl_do] = STATE(814), - [sym_ctrl_if] = STATE(814), - [sym_ctrl_match] = STATE(814), - [sym_ctrl_try] = STATE(814), - [sym_ctrl_return] = STATE(814), - [sym_pipe_element_parenthesized] = STATE(1897), - [sym_where_command] = STATE(3559), - [sym__expression] = STATE(2666), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym__command_parenthesized_body] = STATE(3622), - [sym_comment] = STATE(572), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(572), - [sym_cmd_identifier] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_where] = ACTIONS(1433), - [anon_sym_not] = ACTIONS(1436), - [anon_sym_DOT_DOT_LT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1439), - [sym_val_nothing] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [aux_sym_val_number_token1] = ACTIONS(1451), - [aux_sym_val_number_token2] = ACTIONS(1451), - [aux_sym_val_number_token3] = ACTIONS(1454), - [aux_sym_val_number_token4] = ACTIONS(1454), - [aux_sym_val_number_token5] = ACTIONS(1454), - [anon_sym_inf] = ACTIONS(1451), - [anon_sym_DASHinf] = ACTIONS(1454), - [anon_sym_NaN] = ACTIONS(1451), - [anon_sym_0b] = ACTIONS(1457), - [anon_sym_0o] = ACTIONS(1457), - [anon_sym_0x] = ACTIONS(1457), - [sym_val_date] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym__str_single_quotes] = ACTIONS(1466), - [sym__str_back_ticks] = ACTIONS(1466), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1469), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(147), - }, - [573] = { - [sym_cell_path] = STATE(713), - [sym_path] = STATE(543), - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_STAR_STAR] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_bit_DASHshl] = ACTIONS(1029), - [anon_sym_bit_DASHshr] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_LT2] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_not_DASHin] = ACTIONS(1029), - [anon_sym_starts_DASHwith] = ACTIONS(1029), - [anon_sym_ends_DASHwith] = ACTIONS(1029), - [anon_sym_EQ_TILDE] = ACTIONS(1029), - [anon_sym_BANG_TILDE] = ACTIONS(1029), - [anon_sym_bit_DASHand] = ACTIONS(1029), - [anon_sym_bit_DASHxor] = ACTIONS(1029), - [anon_sym_bit_DASHor] = ACTIONS(1029), - [anon_sym_and] = ACTIONS(1029), - [anon_sym_xor] = ACTIONS(1029), - [anon_sym_or] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [sym_val_nothing] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [aux_sym_val_number_token1] = ACTIONS(1029), - [aux_sym_val_number_token2] = ACTIONS(1029), - [aux_sym_val_number_token3] = ACTIONS(1029), - [aux_sym_val_number_token4] = ACTIONS(1029), - [aux_sym_val_number_token5] = ACTIONS(1029), - [anon_sym_inf] = ACTIONS(1029), - [anon_sym_DASHinf] = ACTIONS(1029), - [anon_sym_NaN] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1029), - [anon_sym_0o] = ACTIONS(1029), - [anon_sym_0x] = ACTIONS(1029), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1029), - [anon_sym_out_GT] = ACTIONS(1029), - [anon_sym_e_GT] = ACTIONS(1029), - [anon_sym_o_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT] = ACTIONS(1029), - [sym_short_flag] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(3), - }, - [575] = { - [sym__flag] = STATE(580), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [576] = { - [sym__flag] = STATE(735), - [sym_long_flag] = STATE(759), - [sym_comment] = STATE(576), - [aux_sym_overlay_use_repeat1] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(1239), - [anon_sym_export] = ACTIONS(1237), - [anon_sym_alias] = ACTIONS(1237), - [anon_sym_let] = ACTIONS(1237), - [anon_sym_let_DASHenv] = ACTIONS(1237), - [anon_sym_mut] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [sym_cmd_identifier] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1239), - [anon_sym_def] = ACTIONS(1237), - [anon_sym_def_DASHenv] = ACTIONS(1237), - [anon_sym_export_DASHenv] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym_module] = ACTIONS(1237), - [anon_sym_use] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [anon_sym_error] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_match] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_source] = ACTIONS(1237), - [anon_sym_source_DASHenv] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_hide] = ACTIONS(1237), - [anon_sym_hide_DASHenv] = ACTIONS(1237), - [anon_sym_overlay] = ACTIONS(1237), - [anon_sym_as] = ACTIONS(1480), - [anon_sym_where] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), - [sym_val_nothing] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1237), - [anon_sym_false] = ACTIONS(1237), - [aux_sym_val_number_token1] = ACTIONS(1237), - [aux_sym_val_number_token2] = ACTIONS(1237), - [aux_sym_val_number_token3] = ACTIONS(1237), - [aux_sym_val_number_token4] = ACTIONS(1237), - [aux_sym_val_number_token5] = ACTIONS(1237), - [anon_sym_inf] = ACTIONS(1237), - [anon_sym_DASHinf] = ACTIONS(1237), - [anon_sym_NaN] = ACTIONS(1237), - [anon_sym_0b] = ACTIONS(1237), - [anon_sym_0o] = ACTIONS(1237), - [anon_sym_0x] = ACTIONS(1237), - [sym_val_date] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym__str_single_quotes] = ACTIONS(1237), - [sym__str_back_ticks] = ACTIONS(1237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1237), - [sym_short_flag] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), - }, - [577] = { - [sym_path] = STATE(698), - [sym_comment] = STATE(577), - [aux_sym_cell_path_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [sym_short_flag] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - }, - [578] = { - [sym__flag] = STATE(785), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [579] = { - [sym__flag] = STATE(582), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [580] = { - [sym__flag] = STATE(780), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [581] = { - [sym_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LF] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_STAR_STAR] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_bit_DASHshl] = ACTIONS(980), - [anon_sym_bit_DASHshr] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_not_DASHin] = ACTIONS(980), - [anon_sym_starts_DASHwith] = ACTIONS(980), - [anon_sym_ends_DASHwith] = ACTIONS(980), - [anon_sym_EQ_TILDE] = ACTIONS(980), - [anon_sym_BANG_TILDE] = ACTIONS(980), - [anon_sym_bit_DASHand] = ACTIONS(980), - [anon_sym_bit_DASHxor] = ACTIONS(980), - [anon_sym_bit_DASHor] = ACTIONS(980), - [anon_sym_and] = ACTIONS(980), - [anon_sym_xor] = ACTIONS(980), - [anon_sym_or] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [sym_val_nothing] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(980), - [anon_sym_DASHinf] = ACTIONS(980), - [anon_sym_NaN] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [sym_short_flag] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - }, - [582] = { - [sym__flag] = STATE(587), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [583] = { - [sym_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_in] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_STAR_STAR] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_bit_DASHshl] = ACTIONS(1025), - [anon_sym_bit_DASHshr] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_LT2] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_not_DASHin] = ACTIONS(1025), - [anon_sym_starts_DASHwith] = ACTIONS(1025), - [anon_sym_ends_DASHwith] = ACTIONS(1025), - [anon_sym_EQ_TILDE] = ACTIONS(1025), - [anon_sym_BANG_TILDE] = ACTIONS(1025), - [anon_sym_bit_DASHand] = ACTIONS(1025), - [anon_sym_bit_DASHxor] = ACTIONS(1025), - [anon_sym_bit_DASHor] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_xor] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_DOT_DOT_LT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [sym_val_nothing] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [aux_sym_val_number_token1] = ACTIONS(1025), - [aux_sym_val_number_token2] = ACTIONS(1025), - [aux_sym_val_number_token3] = ACTIONS(1025), - [aux_sym_val_number_token4] = ACTIONS(1025), - [aux_sym_val_number_token5] = ACTIONS(1025), - [anon_sym_inf] = ACTIONS(1025), - [anon_sym_DASHinf] = ACTIONS(1025), - [anon_sym_NaN] = ACTIONS(1025), - [anon_sym_0b] = ACTIONS(1025), - [anon_sym_0o] = ACTIONS(1025), - [anon_sym_0x] = ACTIONS(1025), - [sym_val_date] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1025), - [sym__str_single_quotes] = ACTIONS(1025), - [sym__str_back_ticks] = ACTIONS(1025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), - [anon_sym_err_GT] = ACTIONS(1025), - [anon_sym_out_GT] = ACTIONS(1025), - [anon_sym_e_GT] = ACTIONS(1025), - [anon_sym_o_GT] = ACTIONS(1025), - [anon_sym_err_PLUSout_GT] = ACTIONS(1025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1025), - [anon_sym_o_PLUSe_GT] = ACTIONS(1025), - [anon_sym_e_PLUSo_GT] = ACTIONS(1025), - [sym_short_flag] = ACTIONS(1025), - [aux_sym_unquoted_token1] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(3), - }, - [584] = { - [sym__flag] = STATE(590), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [585] = { - [sym_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_STAR_STAR] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(920), - [anon_sym_bit_DASHshr] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_not_DASHin] = ACTIONS(920), - [anon_sym_starts_DASHwith] = ACTIONS(920), - [anon_sym_ends_DASHwith] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_BANG_TILDE] = ACTIONS(920), - [anon_sym_bit_DASHand] = ACTIONS(920), - [anon_sym_bit_DASHxor] = ACTIONS(920), - [anon_sym_bit_DASHor] = ACTIONS(920), - [anon_sym_and] = ACTIONS(920), - [anon_sym_xor] = ACTIONS(920), - [anon_sym_or] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [sym_val_nothing] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_val_number_token1] = ACTIONS(920), - [aux_sym_val_number_token2] = ACTIONS(920), - [aux_sym_val_number_token3] = ACTIONS(920), - [aux_sym_val_number_token4] = ACTIONS(920), - [aux_sym_val_number_token5] = ACTIONS(920), - [anon_sym_inf] = ACTIONS(920), - [anon_sym_DASHinf] = ACTIONS(920), - [anon_sym_NaN] = ACTIONS(920), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [sym_short_flag] = ACTIONS(920), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [586] = { - [sym_path] = STATE(698), - [sym_comment] = STATE(586), - [aux_sym_cell_path_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(759), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [sym_short_flag] = ACTIONS(757), + [406] = { + [sym_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [587] = { - [sym__flag] = STATE(776), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(1488), + [407] = { + [sym_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [588] = { - [sym_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_in] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [sym_val_nothing] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym_val_number_token1] = ACTIONS(1014), - [aux_sym_val_number_token2] = ACTIONS(1014), - [aux_sym_val_number_token3] = ACTIONS(1014), - [aux_sym_val_number_token4] = ACTIONS(1014), - [aux_sym_val_number_token5] = ACTIONS(1014), - [anon_sym_inf] = ACTIONS(1014), - [anon_sym_DASHinf] = ACTIONS(1014), - [anon_sym_NaN] = ACTIONS(1014), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [sym_short_flag] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1014), + [408] = { + [sym_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [589] = { - [sym_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_in] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(992), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_bit_DASHshl] = ACTIONS(992), - [anon_sym_bit_DASHshr] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(992), - [anon_sym_starts_DASHwith] = ACTIONS(992), - [anon_sym_ends_DASHwith] = ACTIONS(992), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(992), - [anon_sym_bit_DASHxor] = ACTIONS(992), - [anon_sym_bit_DASHor] = ACTIONS(992), - [anon_sym_and] = ACTIONS(992), - [anon_sym_xor] = ACTIONS(992), - [anon_sym_or] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [sym_short_flag] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(992), + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [590] = { - [sym__flag] = STATE(594), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(804), + [410] = { + [sym_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [591] = { - [sym__flag] = STATE(607), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(804), + [411] = { + [sym_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [592] = { - [sym_comment] = STATE(592), + [412] = { + [sym_comment] = STATE(412), [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_def_DASHenv] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), [anon_sym_LBRACK] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), [anon_sym_PIPE] = ACTIONS(1006), [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), [anon_sym_STAR_STAR] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_SLASH] = ACTIONS(1006), @@ -106739,6 +92922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1006), [anon_sym_xor] = ACTIONS(1006), [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), [anon_sym_DOT_DOT_LT] = ACTIONS(1006), [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), @@ -106762,575 +92946,559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1006), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [sym_short_flag] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [593] = { - [sym_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LF] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_in] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_STAR_STAR] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_bit_DASHshl] = ACTIONS(988), - [anon_sym_bit_DASHshr] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_not_DASHin] = ACTIONS(988), - [anon_sym_starts_DASHwith] = ACTIONS(988), - [anon_sym_ends_DASHwith] = ACTIONS(988), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_BANG_TILDE] = ACTIONS(988), - [anon_sym_bit_DASHand] = ACTIONS(988), - [anon_sym_bit_DASHxor] = ACTIONS(988), - [anon_sym_bit_DASHor] = ACTIONS(988), - [anon_sym_and] = ACTIONS(988), - [anon_sym_xor] = ACTIONS(988), - [anon_sym_or] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [sym_val_nothing] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym_val_number_token1] = ACTIONS(988), - [aux_sym_val_number_token2] = ACTIONS(988), - [aux_sym_val_number_token3] = ACTIONS(988), - [aux_sym_val_number_token4] = ACTIONS(988), - [aux_sym_val_number_token5] = ACTIONS(988), - [anon_sym_inf] = ACTIONS(988), - [anon_sym_DASHinf] = ACTIONS(988), - [anon_sym_NaN] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [sym_short_flag] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(988), + [413] = { + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [594] = { - [sym__flag] = STATE(773), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [sym_short_flag] = ACTIONS(1488), + [414] = { + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [595] = { - [sym_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_in] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_STAR_STAR] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_bit_DASHshl] = ACTIONS(972), - [anon_sym_bit_DASHshr] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_not_DASHin] = ACTIONS(972), - [anon_sym_starts_DASHwith] = ACTIONS(972), - [anon_sym_ends_DASHwith] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_BANG_TILDE] = ACTIONS(972), - [anon_sym_bit_DASHand] = ACTIONS(972), - [anon_sym_bit_DASHxor] = ACTIONS(972), - [anon_sym_bit_DASHor] = ACTIONS(972), - [anon_sym_and] = ACTIONS(972), - [anon_sym_xor] = ACTIONS(972), - [anon_sym_or] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [sym_val_nothing] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = 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(972), - [aux_sym_val_number_token5] = ACTIONS(972), - [anon_sym_inf] = ACTIONS(972), - [anon_sym_DASHinf] = ACTIONS(972), - [anon_sym_NaN] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(972), - [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_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [sym_short_flag] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), - }, - [596] = { - [sym_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [sym_val_nothing] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(968), - [anon_sym_DASHinf] = ACTIONS(968), - [anon_sym_NaN] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [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_err_GT] = ACTIONS(968), - [anon_sym_out_GT] = ACTIONS(968), - [anon_sym_e_GT] = ACTIONS(968), - [anon_sym_o_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT] = ACTIONS(968), - [sym_short_flag] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [597] = { - [sym_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(842), - [anon_sym_BANG_TILDE] = ACTIONS(842), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_err_GT] = ACTIONS(842), - [anon_sym_out_GT] = ACTIONS(842), - [anon_sym_e_GT] = ACTIONS(842), - [anon_sym_o_GT] = ACTIONS(842), - [anon_sym_err_PLUSout_GT] = ACTIONS(842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(842), - [anon_sym_o_PLUSe_GT] = ACTIONS(842), - [anon_sym_e_PLUSo_GT] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [aux_sym_unquoted_token1] = ACTIONS(842), + [415] = { + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [598] = { - [sym_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LF] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_in] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_STAR_STAR] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_mod] = ACTIONS(964), - [anon_sym_SLASH_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_bit_DASHshl] = ACTIONS(964), - [anon_sym_bit_DASHshr] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_not_DASHin] = ACTIONS(964), - [anon_sym_starts_DASHwith] = ACTIONS(964), - [anon_sym_ends_DASHwith] = ACTIONS(964), - [anon_sym_EQ_TILDE] = ACTIONS(964), - [anon_sym_BANG_TILDE] = ACTIONS(964), - [anon_sym_bit_DASHand] = ACTIONS(964), - [anon_sym_bit_DASHxor] = ACTIONS(964), - [anon_sym_bit_DASHor] = ACTIONS(964), - [anon_sym_and] = ACTIONS(964), - [anon_sym_xor] = ACTIONS(964), - [anon_sym_or] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [sym_val_nothing] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(964), - [anon_sym_DASHinf] = ACTIONS(964), - [anon_sym_NaN] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(964), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [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_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), - [sym_short_flag] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(964), + [416] = { + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [599] = { - [sym__flag] = STATE(807), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(1488), + [417] = { + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [600] = { - [sym_comment] = STATE(600), + [418] = { + [sym_comment] = STATE(418), [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_in] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_STAR_STAR] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_SLASH_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_bit_DASHshl] = ACTIONS(1002), - [anon_sym_bit_DASHshr] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1002), - [anon_sym_not_DASHin] = ACTIONS(1002), - [anon_sym_starts_DASHwith] = ACTIONS(1002), - [anon_sym_ends_DASHwith] = ACTIONS(1002), - [anon_sym_EQ_TILDE] = ACTIONS(1002), - [anon_sym_BANG_TILDE] = ACTIONS(1002), - [anon_sym_bit_DASHand] = ACTIONS(1002), - [anon_sym_bit_DASHxor] = ACTIONS(1002), - [anon_sym_bit_DASHor] = ACTIONS(1002), - [anon_sym_and] = ACTIONS(1002), - [anon_sym_xor] = ACTIONS(1002), - [anon_sym_or] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1002), [anon_sym_DOT_DOT_LT] = ACTIONS(1002), [anon_sym_DOT_DOT] = ACTIONS(1002), [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), @@ -107354,1291 +93522,918 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [sym_short_flag] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [601] = { - [sym__flag] = STATE(735), - [sym_long_flag] = STATE(759), - [sym_comment] = STATE(601), - [aux_sym_overlay_use_repeat1] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(1259), - [anon_sym_export] = ACTIONS(1257), - [anon_sym_alias] = ACTIONS(1257), - [anon_sym_let] = ACTIONS(1257), - [anon_sym_let_DASHenv] = ACTIONS(1257), - [anon_sym_mut] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [sym_cmd_identifier] = ACTIONS(1257), - [anon_sym_LF] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1257), - [anon_sym_def_DASHenv] = ACTIONS(1257), - [anon_sym_export_DASHenv] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym_module] = ACTIONS(1257), - [anon_sym_use] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_DOLLAR] = ACTIONS(1257), - [anon_sym_error] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_loop] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_match] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_try] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_source] = ACTIONS(1257), - [anon_sym_source_DASHenv] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_hide] = ACTIONS(1257), - [anon_sym_hide_DASHenv] = ACTIONS(1257), - [anon_sym_overlay] = ACTIONS(1257), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(1257), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_DOT_DOT_LT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), - [sym_val_nothing] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1257), - [anon_sym_false] = ACTIONS(1257), - [aux_sym_val_number_token1] = ACTIONS(1257), - [aux_sym_val_number_token2] = ACTIONS(1257), - [aux_sym_val_number_token3] = ACTIONS(1257), - [aux_sym_val_number_token4] = ACTIONS(1257), - [aux_sym_val_number_token5] = ACTIONS(1257), - [anon_sym_inf] = ACTIONS(1257), - [anon_sym_DASHinf] = ACTIONS(1257), - [anon_sym_NaN] = ACTIONS(1257), - [anon_sym_0b] = ACTIONS(1257), - [anon_sym_0o] = ACTIONS(1257), - [anon_sym_0x] = ACTIONS(1257), - [sym_val_date] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym__str_single_quotes] = ACTIONS(1257), - [sym__str_back_ticks] = ACTIONS(1257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1257), - [sym_short_flag] = ACTIONS(1482), + [419] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [602] = { - [sym_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LF] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_in] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_STAR_STAR] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(956), - [anon_sym_SLASH_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_bit_DASHshl] = ACTIONS(956), - [anon_sym_bit_DASHshr] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_not_DASHin] = ACTIONS(956), - [anon_sym_starts_DASHwith] = ACTIONS(956), - [anon_sym_ends_DASHwith] = ACTIONS(956), - [anon_sym_EQ_TILDE] = ACTIONS(956), - [anon_sym_BANG_TILDE] = ACTIONS(956), - [anon_sym_bit_DASHand] = ACTIONS(956), - [anon_sym_bit_DASHxor] = ACTIONS(956), - [anon_sym_bit_DASHor] = ACTIONS(956), - [anon_sym_and] = ACTIONS(956), - [anon_sym_xor] = ACTIONS(956), - [anon_sym_or] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [sym_val_nothing] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(956), - [anon_sym_DASHinf] = ACTIONS(956), - [anon_sym_NaN] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(956), - [anon_sym_0o] = ACTIONS(956), - [anon_sym_0x] = ACTIONS(956), - [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_err_GT] = ACTIONS(956), - [anon_sym_out_GT] = ACTIONS(956), - [anon_sym_e_GT] = ACTIONS(956), - [anon_sym_o_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT] = ACTIONS(956), - [sym_short_flag] = ACTIONS(956), - [aux_sym_unquoted_token1] = ACTIONS(956), + [420] = { + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_def_DASHenv] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [603] = { - [sym__flag] = STATE(635), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), + [421] = { + [sym_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [604] = { - [sym_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_in] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [sym_val_nothing] = ACTIONS(952), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(952), - [anon_sym_DASHinf] = ACTIONS(952), - [anon_sym_NaN] = ACTIONS(952), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [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_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [sym_short_flag] = ACTIONS(952), - [aux_sym_unquoted_token1] = ACTIONS(952), + [422] = { + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(990), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [sym_cmd_identifier] = ACTIONS(988), + [anon_sym_LF] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_def_DASHenv] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_where] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_bit_DASHshl] = ACTIONS(988), + [anon_sym_bit_DASHshr] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_not_DASHin] = ACTIONS(988), + [anon_sym_starts_DASHwith] = ACTIONS(988), + [anon_sym_ends_DASHwith] = ACTIONS(988), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_BANG_TILDE] = ACTIONS(988), + [anon_sym_bit_DASHand] = ACTIONS(988), + [anon_sym_bit_DASHxor] = ACTIONS(988), + [anon_sym_bit_DASHor] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_not] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [sym_val_nothing] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym_val_number_token1] = ACTIONS(988), + [aux_sym_val_number_token2] = ACTIONS(988), + [aux_sym_val_number_token3] = ACTIONS(988), + [aux_sym_val_number_token4] = ACTIONS(988), + [aux_sym_val_number_token5] = ACTIONS(988), + [anon_sym_inf] = ACTIONS(988), + [anon_sym_DASHinf] = ACTIONS(988), + [anon_sym_NaN] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(3), }, - [605] = { - [sym_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_LF] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_STAR_STAR] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_SLASH_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_bit_DASHshl] = ACTIONS(940), - [anon_sym_bit_DASHshr] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT2] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_not_DASHin] = ACTIONS(940), - [anon_sym_starts_DASHwith] = ACTIONS(940), - [anon_sym_ends_DASHwith] = ACTIONS(940), - [anon_sym_EQ_TILDE] = ACTIONS(940), - [anon_sym_BANG_TILDE] = ACTIONS(940), - [anon_sym_bit_DASHand] = ACTIONS(940), - [anon_sym_bit_DASHxor] = ACTIONS(940), - [anon_sym_bit_DASHor] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_xor] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_DOT_DOT_LT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [sym_val_nothing] = ACTIONS(940), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(940), - [anon_sym_DASHinf] = ACTIONS(940), - [anon_sym_NaN] = ACTIONS(940), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(940), - [anon_sym_0x] = ACTIONS(940), - [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_err_GT] = ACTIONS(940), - [anon_sym_out_GT] = ACTIONS(940), - [anon_sym_e_GT] = ACTIONS(940), - [anon_sym_o_GT] = ACTIONS(940), - [anon_sym_err_PLUSout_GT] = ACTIONS(940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(940), - [anon_sym_o_PLUSe_GT] = ACTIONS(940), - [anon_sym_e_PLUSo_GT] = ACTIONS(940), - [sym_short_flag] = ACTIONS(940), - [aux_sym_unquoted_token1] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(3), - }, - [606] = { - [sym_path] = STATE(698), - [sym_comment] = STATE(606), - [aux_sym_cell_path_repeat1] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [sym_short_flag] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(3), - }, - [607] = { - [sym__flag] = STATE(613), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [608] = { - [sym__flag] = STATE(735), - [sym_long_flag] = STATE(759), - [sym_comment] = STATE(608), - [aux_sym_overlay_use_repeat1] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_def_DASHenv] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1503), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_DOT_DOT_LT] = ACTIONS(1263), - [anon_sym_DOT_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1263), - [sym_val_nothing] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym_val_number_token1] = ACTIONS(1263), - [aux_sym_val_number_token2] = ACTIONS(1263), - [aux_sym_val_number_token3] = ACTIONS(1263), - [aux_sym_val_number_token4] = ACTIONS(1263), - [aux_sym_val_number_token5] = ACTIONS(1263), - [anon_sym_inf] = ACTIONS(1263), - [anon_sym_DASHinf] = ACTIONS(1263), - [anon_sym_NaN] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [sym_short_flag] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), - }, - [609] = { - [sym_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [sym_val_nothing] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym_val_number_token1] = ACTIONS(936), - [aux_sym_val_number_token2] = ACTIONS(936), - [aux_sym_val_number_token3] = ACTIONS(936), - [aux_sym_val_number_token4] = ACTIONS(936), - [aux_sym_val_number_token5] = ACTIONS(936), - [anon_sym_inf] = ACTIONS(936), - [anon_sym_DASHinf] = ACTIONS(936), - [anon_sym_NaN] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [sym_short_flag] = ACTIONS(936), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [610] = { - [sym_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_LF] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_STAR_STAR] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(932), - [anon_sym_bit_DASHshr] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_not_DASHin] = ACTIONS(932), - [anon_sym_starts_DASHwith] = ACTIONS(932), - [anon_sym_ends_DASHwith] = ACTIONS(932), - [anon_sym_EQ_TILDE] = ACTIONS(932), - [anon_sym_BANG_TILDE] = ACTIONS(932), - [anon_sym_bit_DASHand] = ACTIONS(932), - [anon_sym_bit_DASHxor] = ACTIONS(932), - [anon_sym_bit_DASHor] = ACTIONS(932), - [anon_sym_and] = ACTIONS(932), - [anon_sym_xor] = ACTIONS(932), - [anon_sym_or] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [sym_val_nothing] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_val_number_token1] = ACTIONS(932), - [aux_sym_val_number_token2] = ACTIONS(932), - [aux_sym_val_number_token3] = ACTIONS(932), - [aux_sym_val_number_token4] = ACTIONS(932), - [aux_sym_val_number_token5] = ACTIONS(932), - [anon_sym_inf] = ACTIONS(932), - [anon_sym_DASHinf] = ACTIONS(932), - [anon_sym_NaN] = ACTIONS(932), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(932), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [sym_short_flag] = ACTIONS(932), - [aux_sym_unquoted_token1] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [611] = { - [sym_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_err_GT] = ACTIONS(846), - [anon_sym_out_GT] = ACTIONS(846), - [anon_sym_e_GT] = ACTIONS(846), - [anon_sym_o_GT] = ACTIONS(846), - [anon_sym_err_PLUSout_GT] = ACTIONS(846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(846), - [anon_sym_o_PLUSe_GT] = ACTIONS(846), - [anon_sym_e_PLUSo_GT] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [aux_sym_unquoted_token1] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [612] = { - [sym_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(924), - [anon_sym_bit_DASHshr] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_not_DASHin] = ACTIONS(924), - [anon_sym_starts_DASHwith] = ACTIONS(924), - [anon_sym_ends_DASHwith] = ACTIONS(924), - [anon_sym_EQ_TILDE] = ACTIONS(924), - [anon_sym_BANG_TILDE] = ACTIONS(924), - [anon_sym_bit_DASHand] = ACTIONS(924), - [anon_sym_bit_DASHxor] = ACTIONS(924), - [anon_sym_bit_DASHor] = ACTIONS(924), - [anon_sym_and] = ACTIONS(924), - [anon_sym_xor] = ACTIONS(924), - [anon_sym_or] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [sym_val_nothing] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_val_number_token1] = ACTIONS(924), - [aux_sym_val_number_token2] = ACTIONS(924), - [aux_sym_val_number_token3] = ACTIONS(924), - [aux_sym_val_number_token4] = ACTIONS(924), - [aux_sym_val_number_token5] = ACTIONS(924), - [anon_sym_inf] = ACTIONS(924), - [anon_sym_DASHinf] = ACTIONS(924), - [anon_sym_NaN] = ACTIONS(924), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(924), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [sym_short_flag] = ACTIONS(924), - [aux_sym_unquoted_token1] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), - }, - [613] = { - [sym__flag] = STATE(771), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [sym_cmd_identifier] = ACTIONS(1505), - [anon_sym_LF] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_def_DASHenv] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(1505), - [anon_sym_DOT_DOT_LT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [sym_val_nothing] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym_val_number_token1] = ACTIONS(1505), - [aux_sym_val_number_token2] = ACTIONS(1505), - [aux_sym_val_number_token3] = ACTIONS(1505), - [aux_sym_val_number_token4] = ACTIONS(1505), - [aux_sym_val_number_token5] = ACTIONS(1505), - [anon_sym_inf] = ACTIONS(1505), - [anon_sym_DASHinf] = ACTIONS(1505), - [anon_sym_NaN] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [sym_short_flag] = ACTIONS(1488), + [423] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(3), }, - [614] = { - [sym_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_in] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_SLASH_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_bit_DASHshl] = ACTIONS(944), - [anon_sym_bit_DASHshr] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_not_DASHin] = ACTIONS(944), - [anon_sym_starts_DASHwith] = ACTIONS(944), - [anon_sym_ends_DASHwith] = ACTIONS(944), - [anon_sym_EQ_TILDE] = ACTIONS(944), - [anon_sym_BANG_TILDE] = ACTIONS(944), - [anon_sym_bit_DASHand] = ACTIONS(944), - [anon_sym_bit_DASHxor] = ACTIONS(944), - [anon_sym_bit_DASHor] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_xor] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_err_GT] = ACTIONS(944), - [anon_sym_out_GT] = ACTIONS(944), - [anon_sym_e_GT] = ACTIONS(944), - [anon_sym_o_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), - [aux_sym_unquoted_token1] = ACTIONS(944), + [424] = { + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [615] = { - [sym__flag] = STATE(603), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), + [425] = { + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [sym_cmd_identifier] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_def_DASHenv] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_not] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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_CARET] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [616] = { - [sym__flag] = STATE(599), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(804), + [426] = { + [sym_ctrl_do] = STATE(850), + [sym_ctrl_if] = STATE(850), + [sym_ctrl_match] = STATE(850), + [sym_ctrl_try] = STATE(850), + [sym__expression] = STATE(371), + [sym_expr_unary] = STATE(394), + [sym_expr_binary] = STATE(394), + [sym_expr_parenthesized] = STATE(393), + [sym_val_range] = STATE(394), + [sym__value] = STATE(394), + [sym_val_bool] = STATE(377), + [sym_val_variable] = STATE(377), + [sym__var] = STATE(183), + [sym_val_number] = STATE(6), + [sym_val_duration] = STATE(377), + [sym_val_filesize] = STATE(377), + [sym_val_binary] = STATE(377), + [sym_val_string] = STATE(377), + [sym__str_double_quotes] = STATE(337), + [sym_val_interpolated] = STATE(377), + [sym__inter_single_quotes] = STATE(373), + [sym__inter_double_quotes] = STATE(372), + [sym_val_list] = STATE(377), + [sym_val_record] = STATE(377), + [sym_val_table] = STATE(377), + [sym_val_closure] = STATE(377), + [sym_comment] = STATE(426), + [anon_sym_export] = ACTIONS(1103), + [anon_sym_alias] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1103), + [anon_sym_let_DASHenv] = ACTIONS(1103), + [anon_sym_mut] = ACTIONS(1103), + [anon_sym_const] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1103), + [sym_cmd_identifier] = ACTIONS(1103), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_def] = ACTIONS(1103), + [anon_sym_def_DASHenv] = ACTIONS(1103), + [anon_sym_export_DASHenv] = ACTIONS(1103), + [anon_sym_extern] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(1103), + [anon_sym_use] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1109), + [anon_sym_error] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_for] = ACTIONS(1103), + [anon_sym_loop] = ACTIONS(1103), + [anon_sym_while] = ACTIONS(1103), + [anon_sym_do] = ACTIONS(213), + [anon_sym_if] = ACTIONS(215), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(223), + [anon_sym_return] = ACTIONS(1103), + [anon_sym_source] = ACTIONS(1103), + [anon_sym_source_DASHenv] = ACTIONS(1103), + [anon_sym_register] = ACTIONS(1103), + [anon_sym_hide] = ACTIONS(1103), + [anon_sym_hide_DASHenv] = ACTIONS(1103), + [anon_sym_overlay] = ACTIONS(1103), + [anon_sym_where] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1115), + [anon_sym_DOT_DOT_LT] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), + [sym_val_nothing] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1121), + [anon_sym_false] = ACTIONS(1121), + [aux_sym_val_number_token1] = ACTIONS(1123), + [aux_sym_val_number_token2] = ACTIONS(1123), + [aux_sym_val_number_token3] = ACTIONS(1123), + [aux_sym_val_number_token4] = ACTIONS(1123), + [aux_sym_val_number_token5] = ACTIONS(1123), + [anon_sym_inf] = ACTIONS(1123), + [anon_sym_DASHinf] = ACTIONS(1123), + [anon_sym_NaN] = ACTIONS(1123), + [anon_sym_0b] = ACTIONS(1125), + [anon_sym_0o] = ACTIONS(1125), + [anon_sym_0x] = ACTIONS(1125), + [sym_val_date] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1103), [anon_sym_POUND] = ACTIONS(3), }, - [617] = { - [sym_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LF] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_bit_DASHshl] = ACTIONS(976), - [anon_sym_bit_DASHshr] = ACTIONS(976), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_not_DASHin] = ACTIONS(976), - [anon_sym_starts_DASHwith] = ACTIONS(976), - [anon_sym_ends_DASHwith] = ACTIONS(976), - [anon_sym_EQ_TILDE] = ACTIONS(976), - [anon_sym_BANG_TILDE] = ACTIONS(976), - [anon_sym_bit_DASHand] = ACTIONS(976), - [anon_sym_bit_DASHxor] = ACTIONS(976), - [anon_sym_bit_DASHor] = ACTIONS(976), - [anon_sym_and] = ACTIONS(976), - [anon_sym_xor] = ACTIONS(976), - [anon_sym_or] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [sym_val_nothing] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = 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(976), - [aux_sym_val_number_token5] = ACTIONS(976), - [anon_sym_inf] = ACTIONS(976), - [anon_sym_DASHinf] = ACTIONS(976), - [anon_sym_NaN] = ACTIONS(976), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(976), - [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_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [aux_sym_unquoted_token1] = ACTIONS(976), + [427] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1075), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_alias] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_let_DASHenv] = ACTIONS(1073), + [anon_sym_mut] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1073), + [sym_cmd_identifier] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_def] = ACTIONS(1073), + [anon_sym_def_DASHenv] = ACTIONS(1073), + [anon_sym_export_DASHenv] = ACTIONS(1073), + [anon_sym_extern] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_error] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_source] = ACTIONS(1073), + [anon_sym_source_DASHenv] = ACTIONS(1073), + [anon_sym_register] = ACTIONS(1073), + [anon_sym_hide] = ACTIONS(1073), + [anon_sym_hide_DASHenv] = ACTIONS(1073), + [anon_sym_overlay] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1073), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1073), + [anon_sym_DOT_DOT_LT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [sym_val_nothing] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [aux_sym_val_number_token1] = ACTIONS(1073), + [aux_sym_val_number_token2] = ACTIONS(1073), + [aux_sym_val_number_token3] = ACTIONS(1073), + [aux_sym_val_number_token4] = ACTIONS(1073), + [aux_sym_val_number_token5] = ACTIONS(1073), + [anon_sym_inf] = ACTIONS(1073), + [anon_sym_DASHinf] = ACTIONS(1073), + [anon_sym_NaN] = ACTIONS(1073), + [anon_sym_0b] = ACTIONS(1073), + [anon_sym_0o] = ACTIONS(1073), + [anon_sym_0x] = ACTIONS(1073), + [sym_val_date] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym__str_single_quotes] = ACTIONS(1073), + [sym__str_back_ticks] = ACTIONS(1073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1073), [anon_sym_POUND] = ACTIONS(3), }, - [618] = { - [sym_comment] = STATE(618), + [428] = { + [sym_comment] = STATE(428), [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), [anon_sym_SEMI] = ACTIONS(976), + [sym_cmd_identifier] = ACTIONS(976), [anon_sym_LF] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_def_DASHenv] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), [anon_sym_LBRACK] = ACTIONS(976), [anon_sym_LPAREN] = ACTIONS(976), [anon_sym_PIPE] = ACTIONS(976), [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), [anon_sym_GT] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), [anon_sym_STAR] = ACTIONS(976), + [anon_sym_where] = ACTIONS(976), [anon_sym_STAR_STAR] = ACTIONS(976), [anon_sym_PLUS_PLUS] = ACTIONS(976), [anon_sym_SLASH] = ACTIONS(976), @@ -108663,6 +94458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(976), [anon_sym_xor] = ACTIONS(976), [anon_sym_or] = ACTIONS(976), + [anon_sym_not] = ACTIONS(976), [anon_sym_DOT_DOT_LT] = ACTIONS(976), [anon_sym_DOT_DOT] = ACTIONS(976), [anon_sym_DOT_DOT_EQ] = ACTIONS(976), @@ -108686,329 +94482,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(976), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [sym_short_flag] = ACTIONS(976), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - }, - [619] = { - [sym_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_STAR_STAR] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1018), - [anon_sym_SLASH_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_bit_DASHshl] = ACTIONS(1018), - [anon_sym_bit_DASHshr] = ACTIONS(1018), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_not_DASHin] = ACTIONS(1018), - [anon_sym_starts_DASHwith] = ACTIONS(1018), - [anon_sym_ends_DASHwith] = ACTIONS(1018), - [anon_sym_EQ_TILDE] = ACTIONS(1018), - [anon_sym_BANG_TILDE] = ACTIONS(1018), - [anon_sym_bit_DASHand] = ACTIONS(1018), - [anon_sym_bit_DASHxor] = ACTIONS(1018), - [anon_sym_bit_DASHor] = ACTIONS(1018), - [anon_sym_and] = ACTIONS(1018), - [anon_sym_xor] = ACTIONS(1018), - [anon_sym_or] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [sym_short_flag] = ACTIONS(1018), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [620] = { - [sym__flag] = STATE(816), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [621] = { - [sym_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), + [429] = { + [sym_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [sym_cmd_identifier] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_def_DASHenv] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_where] = ACTIONS(972), + [anon_sym_STAR_STAR] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_bit_DASHshl] = ACTIONS(972), + [anon_sym_bit_DASHshr] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_not_DASHin] = ACTIONS(972), + [anon_sym_starts_DASHwith] = ACTIONS(972), + [anon_sym_ends_DASHwith] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_BANG_TILDE] = ACTIONS(972), + [anon_sym_bit_DASHand] = ACTIONS(972), + [anon_sym_bit_DASHxor] = ACTIONS(972), + [anon_sym_bit_DASHor] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [sym_val_nothing] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = 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(972), + [aux_sym_val_number_token5] = ACTIONS(972), + [anon_sym_inf] = ACTIONS(972), + [anon_sym_DASHinf] = ACTIONS(972), + [anon_sym_NaN] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(972), + [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_CARET] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), }, - [622] = { - [sym__flag] = STATE(616), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), + [430] = { + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(970), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [sym_cmd_identifier] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_def_DASHenv] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_not] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [sym_val_nothing] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(968), + [anon_sym_DASHinf] = ACTIONS(968), + [anon_sym_NaN] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [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_CARET] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), }, - [623] = { - [sym_comment] = STATE(623), + [431] = { + [sym_comment] = STATE(431), [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(1029), [anon_sym_LPAREN] = ACTIONS(1029), [anon_sym_PIPE] = ACTIONS(1029), [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), [anon_sym_GT] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), [anon_sym_in] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), [anon_sym_STAR_STAR] = ACTIONS(1029), [anon_sym_PLUS_PLUS] = ACTIONS(1029), [anon_sym_SLASH] = ACTIONS(1029), @@ -109033,6 +94746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1029), [anon_sym_xor] = ACTIONS(1029), [anon_sym_or] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), [anon_sym_DOT_DOT_LT] = ACTIONS(1029), [anon_sym_DOT_DOT] = ACTIONS(1029), [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), @@ -109056,773 +94770,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1029), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1029), - [anon_sym_out_GT] = ACTIONS(1029), - [anon_sym_e_GT] = ACTIONS(1029), - [anon_sym_o_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT] = ACTIONS(1029), - [sym_short_flag] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(3), - }, - [624] = { - [sym_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_in] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_STAR_STAR] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_bit_DASHshl] = ACTIONS(984), - [anon_sym_bit_DASHshr] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_not_DASHin] = ACTIONS(984), - [anon_sym_starts_DASHwith] = ACTIONS(984), - [anon_sym_ends_DASHwith] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(984), - [anon_sym_BANG_TILDE] = ACTIONS(984), - [anon_sym_bit_DASHand] = ACTIONS(984), - [anon_sym_bit_DASHxor] = ACTIONS(984), - [anon_sym_bit_DASHor] = ACTIONS(984), - [anon_sym_and] = ACTIONS(984), - [anon_sym_xor] = ACTIONS(984), - [anon_sym_or] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [sym_val_nothing] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(984), - [anon_sym_DASHinf] = ACTIONS(984), - [anon_sym_NaN] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [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(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [sym_short_flag] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - }, - [625] = { - [sym_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_LF] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_GT] = ACTIONS(107), - [anon_sym_DASH_DASH] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(107), - [anon_sym_in] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_STAR_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_SLASH_SLASH] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(107), - [anon_sym_bit_DASHshl] = ACTIONS(107), - [anon_sym_bit_DASHshr] = ACTIONS(107), - [anon_sym_EQ_EQ] = ACTIONS(107), - [anon_sym_BANG_EQ] = ACTIONS(107), - [anon_sym_LT2] = ACTIONS(107), - [anon_sym_LT_EQ] = ACTIONS(107), - [anon_sym_GT_EQ] = ACTIONS(107), - [anon_sym_not_DASHin] = ACTIONS(107), - [anon_sym_starts_DASHwith] = ACTIONS(107), - [anon_sym_ends_DASHwith] = ACTIONS(107), - [anon_sym_EQ_TILDE] = ACTIONS(107), - [anon_sym_BANG_TILDE] = ACTIONS(107), - [anon_sym_bit_DASHand] = ACTIONS(107), - [anon_sym_bit_DASHxor] = ACTIONS(107), - [anon_sym_bit_DASHor] = ACTIONS(107), - [anon_sym_and] = ACTIONS(107), - [anon_sym_xor] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(107), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [aux_sym_val_number_token1] = ACTIONS(107), - [aux_sym_val_number_token2] = ACTIONS(107), - [aux_sym_val_number_token3] = ACTIONS(107), - [aux_sym_val_number_token4] = ACTIONS(107), - [aux_sym_val_number_token5] = ACTIONS(107), - [anon_sym_inf] = ACTIONS(107), - [anon_sym_DASHinf] = ACTIONS(107), - [anon_sym_NaN] = ACTIONS(107), - [anon_sym_0b] = ACTIONS(107), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym__str_single_quotes] = ACTIONS(107), - [sym__str_back_ticks] = ACTIONS(107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(107), - [anon_sym_err_GT] = ACTIONS(107), - [anon_sym_out_GT] = ACTIONS(107), - [anon_sym_e_GT] = ACTIONS(107), - [anon_sym_o_GT] = ACTIONS(107), - [anon_sym_err_PLUSout_GT] = ACTIONS(107), - [anon_sym_out_PLUSerr_GT] = ACTIONS(107), - [anon_sym_o_PLUSe_GT] = ACTIONS(107), - [anon_sym_e_PLUSo_GT] = ACTIONS(107), - [sym_short_flag] = ACTIONS(107), - [aux_sym_unquoted_token1] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [626] = { - [sym__flag] = STATE(620), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [627] = { - [sym__flag] = STATE(735), - [sym_long_flag] = STATE(759), - [sym_comment] = STATE(627), - [aux_sym_overlay_use_repeat1] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(1229), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_alias] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_let_DASHenv] = ACTIONS(1227), - [anon_sym_mut] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_cmd_identifier] = ACTIONS(1227), - [anon_sym_LF] = ACTIONS(1229), - [anon_sym_def] = ACTIONS(1227), - [anon_sym_def_DASHenv] = ACTIONS(1227), - [anon_sym_export_DASHenv] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_error] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_source] = ACTIONS(1227), - [anon_sym_source_DASHenv] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_hide_DASHenv] = ACTIONS(1227), - [anon_sym_overlay] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1227), - [anon_sym_where] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_DOT_DOT_LT] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), - [sym_val_nothing] = ACTIONS(1227), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [aux_sym_val_number_token1] = ACTIONS(1227), - [aux_sym_val_number_token2] = ACTIONS(1227), - [aux_sym_val_number_token3] = ACTIONS(1227), - [aux_sym_val_number_token4] = ACTIONS(1227), - [aux_sym_val_number_token5] = ACTIONS(1227), - [anon_sym_inf] = ACTIONS(1227), - [anon_sym_DASHinf] = ACTIONS(1227), - [anon_sym_NaN] = ACTIONS(1227), - [anon_sym_0b] = ACTIONS(1227), - [anon_sym_0o] = ACTIONS(1227), - [anon_sym_0x] = ACTIONS(1227), - [sym_val_date] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym__str_single_quotes] = ACTIONS(1227), - [sym__str_back_ticks] = ACTIONS(1227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [sym_short_flag] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(3), - }, - [628] = { - [sym__flag] = STATE(637), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [629] = { - [sym__flag] = STATE(626), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [630] = { - [sym__flag] = STATE(735), - [sym_long_flag] = STATE(759), - [sym_comment] = STATE(630), - [aux_sym_overlay_use_repeat1] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_def_DASHenv] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [sym_val_nothing] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym_val_number_token1] = ACTIONS(1368), - [aux_sym_val_number_token2] = ACTIONS(1368), - [aux_sym_val_number_token3] = ACTIONS(1368), - [aux_sym_val_number_token4] = ACTIONS(1368), - [aux_sym_val_number_token5] = ACTIONS(1368), - [anon_sym_inf] = ACTIONS(1368), - [anon_sym_DASHinf] = ACTIONS(1368), - [anon_sym_NaN] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [sym_short_flag] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), - }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(842), - [anon_sym_alias] = ACTIONS(842), - [anon_sym_let] = ACTIONS(842), - [anon_sym_let_DASHenv] = ACTIONS(842), - [anon_sym_mut] = ACTIONS(842), - [anon_sym_const] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(842), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_def] = ACTIONS(842), - [anon_sym_def_DASHenv] = ACTIONS(842), - [anon_sym_export_DASHenv] = ACTIONS(842), - [anon_sym_extern] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_use] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_error] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_match] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_source] = ACTIONS(842), - [anon_sym_source_DASHenv] = ACTIONS(842), - [anon_sym_register] = ACTIONS(842), - [anon_sym_hide] = ACTIONS(842), - [anon_sym_hide_DASHenv] = ACTIONS(842), - [anon_sym_overlay] = ACTIONS(842), - [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), - [anon_sym_POUND] = ACTIONS(3), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), + [432] = { + [sym_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(966), + [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), + [anon_sym_SEMI] = ACTIONS(964), + [sym_cmd_identifier] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_STAR_STAR] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_bit_DASHshl] = ACTIONS(964), + [anon_sym_bit_DASHshr] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_not_DASHin] = ACTIONS(964), + [anon_sym_starts_DASHwith] = ACTIONS(964), + [anon_sym_ends_DASHwith] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_BANG_TILDE] = ACTIONS(964), + [anon_sym_bit_DASHand] = ACTIONS(964), + [anon_sym_bit_DASHxor] = ACTIONS(964), + [anon_sym_bit_DASHor] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_not] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [sym_val_nothing] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(964), + [anon_sym_DASHinf] = ACTIONS(964), + [anon_sym_NaN] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [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_CARET] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), }, - [633] = { - [sym_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [sym_val_nothing] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym_val_number_token1] = ACTIONS(1010), - [aux_sym_val_number_token2] = ACTIONS(1010), - [aux_sym_val_number_token3] = ACTIONS(1010), - [aux_sym_val_number_token4] = ACTIONS(1010), - [aux_sym_val_number_token5] = ACTIONS(1010), - [anon_sym_inf] = ACTIONS(1010), - [anon_sym_DASHinf] = ACTIONS(1010), - [anon_sym_NaN] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [sym_short_flag] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1010), + [433] = { + [sym__expression] = STATE(157), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(457), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(433), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_def_DASHenv] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [sym_val_nothing] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym_val_number_token1] = ACTIONS(1135), + [aux_sym_val_number_token2] = ACTIONS(1135), + [aux_sym_val_number_token3] = ACTIONS(1135), + [aux_sym_val_number_token4] = ACTIONS(1135), + [aux_sym_val_number_token5] = ACTIONS(1135), + [anon_sym_inf] = ACTIONS(1135), + [anon_sym_DASHinf] = ACTIONS(1135), + [anon_sym_NaN] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [634] = { - [sym_comment] = STATE(634), + [434] = { + [sym_comment] = STATE(434), [ts_builtin_sym_end] = ACTIONS(962), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(960), + [sym_cmd_identifier] = ACTIONS(960), [anon_sym_LF] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_def_DASHenv] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), [anon_sym_LBRACK] = ACTIONS(960), [anon_sym_LPAREN] = ACTIONS(960), [anon_sym_PIPE] = ACTIONS(960), [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), [anon_sym_GT] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), [anon_sym_DASH] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), [anon_sym_in] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), [anon_sym_STAR] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), [anon_sym_STAR_STAR] = ACTIONS(960), [anon_sym_PLUS_PLUS] = ACTIONS(960), [anon_sym_SLASH] = ACTIONS(960), @@ -109847,6 +95034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(960), [anon_sym_xor] = ACTIONS(960), [anon_sym_or] = ACTIONS(960), + [anon_sym_not] = ACTIONS(960), [anon_sym_DOT_DOT_LT] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(960), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), @@ -109870,107 +95058,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(960), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [sym_short_flag] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), }, - [635] = { - [sym__flag] = STATE(800), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(1488), + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(958), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [sym_cmd_identifier] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_def_DASHenv] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_STAR_STAR] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_bit_DASHshl] = ACTIONS(956), + [anon_sym_bit_DASHshr] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_not_DASHin] = ACTIONS(956), + [anon_sym_starts_DASHwith] = ACTIONS(956), + [anon_sym_ends_DASHwith] = ACTIONS(956), + [anon_sym_EQ_TILDE] = ACTIONS(956), + [anon_sym_BANG_TILDE] = ACTIONS(956), + [anon_sym_bit_DASHand] = ACTIONS(956), + [anon_sym_bit_DASHxor] = ACTIONS(956), + [anon_sym_bit_DASHor] = ACTIONS(956), + [anon_sym_and] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(956), + [anon_sym_or] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [sym_val_nothing] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(956), + [anon_sym_DASHinf] = ACTIONS(956), + [anon_sym_NaN] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [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_CARET] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(3), }, - [636] = { - [sym_comment] = STATE(636), + [436] = { + [sym_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(3), + }, + [437] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(948), + [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), + [anon_sym_SEMI] = ACTIONS(946), + [sym_cmd_identifier] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_where] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_not] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_CARET] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(3), + }, + [438] = { + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(944), + [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), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_CARET] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(3), + }, + [439] = { + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(940), + [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), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_CARET] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [440] = { + [sym_comment] = STATE(440), [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_SLASH] = ACTIONS(1010), @@ -109995,9 +95610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1010), [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(141), - [anon_sym_DOT_DOT] = ACTIONS(141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(141), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [sym_val_nothing] = ACTIONS(1010), [anon_sym_true] = ACTIONS(1010), [anon_sym_false] = ACTIONS(1010), @@ -110018,2380 +95634,1763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1010), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [sym_short_flag] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [637] = { - [sym__flag] = STATE(643), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [638] = { - [sym_cell_path] = STATE(725), - [sym_path] = STATE(606), - [sym_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [sym_short_flag] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(3), - }, - [639] = { - [sym__flag] = STATE(575), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(3), - }, - [640] = { - [sym__flag] = STATE(642), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [641] = { - [sym_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LF] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [sym_val_nothing] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(948), - [anon_sym_DASHinf] = ACTIONS(948), - [anon_sym_NaN] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [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_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), - [sym_short_flag] = ACTIONS(948), - [aux_sym_unquoted_token1] = ACTIONS(948), + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(932), + [anon_sym_export] = ACTIONS(930), + [anon_sym_alias] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_let_DASHenv] = ACTIONS(930), + [anon_sym_mut] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [sym_cmd_identifier] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_def] = ACTIONS(930), + [anon_sym_def_DASHenv] = ACTIONS(930), + [anon_sym_export_DASHenv] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_use] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_error] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_source] = ACTIONS(930), + [anon_sym_source_DASHenv] = ACTIONS(930), + [anon_sym_register] = ACTIONS(930), + [anon_sym_hide] = ACTIONS(930), + [anon_sym_hide_DASHenv] = ACTIONS(930), + [anon_sym_overlay] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_where] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_not] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(3), }, - [642] = { - [sym__flag] = STATE(578), - [sym_long_flag] = STATE(707), - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(804), + [442] = { + [sym_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [643] = { - [sym__flag] = STATE(791), - [sym_long_flag] = STATE(792), - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(3), - }, - [645] = { - [sym_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(1537), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_xor] = ACTIONS(1541), - [anon_sym_or] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [646] = { - [sym_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(1537), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_xor] = ACTIONS(1541), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [647] = { - [sym_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(1537), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [648] = { - [sym_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(1537), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [649] = { - [sym_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [650] = { - [sym_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [651] = { - [sym_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [652] = { - [sym_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LF] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(1531), - [anon_sym_BANG_TILDE] = ACTIONS(1531), - [anon_sym_bit_DASHand] = ACTIONS(1533), - [anon_sym_bit_DASHxor] = ACTIONS(1535), - [anon_sym_bit_DASHor] = ACTIONS(1537), - [anon_sym_and] = ACTIONS(1539), - [anon_sym_xor] = ACTIONS(1541), - [anon_sym_or] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [sym_val_nothing] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [aux_sym_val_number_token1] = ACTIONS(1386), - [aux_sym_val_number_token2] = ACTIONS(1386), - [aux_sym_val_number_token3] = ACTIONS(1386), - [aux_sym_val_number_token4] = ACTIONS(1386), - [aux_sym_val_number_token5] = ACTIONS(1386), - [anon_sym_inf] = ACTIONS(1386), - [anon_sym_DASHinf] = ACTIONS(1386), - [anon_sym_NaN] = ACTIONS(1386), - [anon_sym_0b] = ACTIONS(1386), - [anon_sym_0o] = ACTIONS(1386), - [anon_sym_0x] = ACTIONS(1386), - [sym_val_date] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym__str_single_quotes] = ACTIONS(1386), - [sym__str_back_ticks] = ACTIONS(1386), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1386), - [anon_sym_err_GT] = ACTIONS(1386), - [anon_sym_out_GT] = ACTIONS(1386), - [anon_sym_e_GT] = ACTIONS(1386), - [anon_sym_o_GT] = ACTIONS(1386), - [anon_sym_err_PLUSout_GT] = ACTIONS(1386), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1386), - [anon_sym_o_PLUSe_GT] = ACTIONS(1386), - [anon_sym_e_PLUSo_GT] = ACTIONS(1386), - [sym_short_flag] = ACTIONS(1386), - [aux_sym_unquoted_token1] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(3), - }, - [653] = { - [sym_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [443] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [sym_cmd_identifier] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_def_DASHenv] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_bit_DASHshl] = ACTIONS(980), + [anon_sym_bit_DASHshr] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_not_DASHin] = ACTIONS(980), + [anon_sym_starts_DASHwith] = ACTIONS(980), + [anon_sym_ends_DASHwith] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_BANG_TILDE] = ACTIONS(980), + [anon_sym_bit_DASHand] = ACTIONS(980), + [anon_sym_bit_DASHxor] = ACTIONS(980), + [anon_sym_bit_DASHor] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_not] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [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_CARET] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, - [654] = { - [sym_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1000), + [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), + [anon_sym_SEMI] = ACTIONS(998), + [sym_cmd_identifier] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_where] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_not] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(3), }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(924), + [anon_sym_export] = ACTIONS(922), + [anon_sym_alias] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_let_DASHenv] = ACTIONS(922), + [anon_sym_mut] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [sym_cmd_identifier] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_def] = ACTIONS(922), + [anon_sym_def_DASHenv] = ACTIONS(922), + [anon_sym_export_DASHenv] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_module] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_source] = ACTIONS(922), + [anon_sym_source_DASHenv] = ACTIONS(922), + [anon_sym_register] = ACTIONS(922), + [anon_sym_hide] = ACTIONS(922), + [anon_sym_hide_DASHenv] = ACTIONS(922), + [anon_sym_overlay] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), [anon_sym_POUND] = ACTIONS(3), }, - [656] = { - [sym_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [446] = { + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_def_DASHenv] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [657] = { - [sym_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [447] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [sym_cmd_identifier] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_def_DASHenv] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_where] = ACTIONS(1018), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_not] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [sym_val_nothing] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1018), + [anon_sym_false] = ACTIONS(1018), + [aux_sym_val_number_token1] = ACTIONS(1018), + [aux_sym_val_number_token2] = ACTIONS(1018), + [aux_sym_val_number_token3] = ACTIONS(1018), + [aux_sym_val_number_token4] = ACTIONS(1018), + [aux_sym_val_number_token5] = ACTIONS(1018), + [anon_sym_inf] = ACTIONS(1018), + [anon_sym_DASHinf] = ACTIONS(1018), + [anon_sym_NaN] = ACTIONS(1018), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), + [anon_sym_CARET] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(3), }, - [658] = { - [sym_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(1529), - [anon_sym_bit_DASHshr] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1519), - [anon_sym_BANG_EQ] = ACTIONS(1519), - [anon_sym_LT2] = ACTIONS(1519), - [anon_sym_LT_EQ] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1519), - [anon_sym_not_DASHin] = ACTIONS(1523), - [anon_sym_starts_DASHwith] = ACTIONS(1523), - [anon_sym_ends_DASHwith] = ACTIONS(1523), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [448] = { + [sym_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [659] = { - [sym_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_SLASH_SLASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_bit_DASHshl] = ACTIONS(928), - [anon_sym_bit_DASHshr] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_not_DASHin] = ACTIONS(928), - [anon_sym_starts_DASHwith] = ACTIONS(928), - [anon_sym_ends_DASHwith] = ACTIONS(928), - [anon_sym_EQ_TILDE] = ACTIONS(928), - [anon_sym_BANG_TILDE] = ACTIONS(928), - [anon_sym_bit_DASHand] = ACTIONS(928), - [anon_sym_bit_DASHxor] = ACTIONS(928), - [anon_sym_bit_DASHor] = ACTIONS(928), - [anon_sym_and] = ACTIONS(928), - [anon_sym_xor] = ACTIONS(928), - [anon_sym_or] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [sym_val_nothing] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_val_number_token1] = ACTIONS(928), - [aux_sym_val_number_token2] = ACTIONS(928), - [aux_sym_val_number_token3] = ACTIONS(928), - [aux_sym_val_number_token4] = ACTIONS(928), - [aux_sym_val_number_token5] = ACTIONS(928), - [anon_sym_inf] = ACTIONS(928), - [anon_sym_DASHinf] = ACTIONS(928), - [anon_sym_NaN] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [sym_short_flag] = ACTIONS(928), - [aux_sym_unquoted_token1] = ACTIONS(928), + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_def_DASHenv] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [sym_short_flag] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(1549), + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [sym_cmd_identifier] = ACTIONS(952), + [anon_sym_LF] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_def_DASHenv] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_where] = ACTIONS(952), + [anon_sym_STAR_STAR] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_mod] = ACTIONS(952), + [anon_sym_SLASH_SLASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_bit_DASHshl] = ACTIONS(952), + [anon_sym_bit_DASHshr] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_not_DASHin] = ACTIONS(952), + [anon_sym_starts_DASHwith] = ACTIONS(952), + [anon_sym_ends_DASHwith] = ACTIONS(952), + [anon_sym_EQ_TILDE] = ACTIONS(952), + [anon_sym_BANG_TILDE] = ACTIONS(952), + [anon_sym_bit_DASHand] = ACTIONS(952), + [anon_sym_bit_DASHxor] = ACTIONS(952), + [anon_sym_bit_DASHor] = ACTIONS(952), + [anon_sym_and] = ACTIONS(952), + [anon_sym_xor] = ACTIONS(952), + [anon_sym_or] = ACTIONS(952), + [anon_sym_not] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [sym_val_nothing] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(952), + [anon_sym_DASHinf] = ACTIONS(952), + [anon_sym_NaN] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [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_CARET] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(3), }, - [661] = { - [sym__flag] = STATE(882), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(1553), + [451] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(129), + [anon_sym_DOT_DOT] = ACTIONS(129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(129), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [662] = { - [sym__flag] = STATE(667), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(893), + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_export] = ACTIONS(926), + [anon_sym_alias] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_let_DASHenv] = ACTIONS(926), + [anon_sym_mut] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [sym_cmd_identifier] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_def] = ACTIONS(926), + [anon_sym_def_DASHenv] = ACTIONS(926), + [anon_sym_export_DASHenv] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_module] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_error] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_source] = ACTIONS(926), + [anon_sym_source_DASHenv] = ACTIONS(926), + [anon_sym_register] = ACTIONS(926), + [anon_sym_hide] = ACTIONS(926), + [anon_sym_hide_DASHenv] = ACTIONS(926), + [anon_sym_overlay] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_not] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [663] = { - [sym__flag] = STATE(662), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(822), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(893), + [453] = { + [sym__expression] = STATE(152), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(683), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [664] = { - [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1555), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), + [454] = { + [sym__expression] = STATE(148), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(453), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(454), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [665] = { - [sym__flag] = STATE(685), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [sym_short_flag] = ACTIONS(893), + [455] = { + [sym__expression] = STATE(148), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(678), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [666] = { - [sym_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1555), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [sym_short_flag] = ACTIONS(836), + [456] = { + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [667] = { - [sym__flag] = STATE(881), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [sym_short_flag] = ACTIONS(1553), + [457] = { + [sym__expression] = STATE(161), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(465), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_def_DASHenv] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [anon_sym_DOT_DOT_LT] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [sym_val_nothing] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym_val_number_token1] = ACTIONS(846), + [aux_sym_val_number_token2] = ACTIONS(846), + [aux_sym_val_number_token3] = ACTIONS(846), + [aux_sym_val_number_token4] = ACTIONS(846), + [aux_sym_val_number_token5] = ACTIONS(846), + [anon_sym_inf] = ACTIONS(846), + [anon_sym_DASHinf] = ACTIONS(846), + [anon_sym_NaN] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [668] = { - [sym__flag] = STATE(932), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(1553), + [458] = { + [sym__expression] = STATE(165), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(454), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(458), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [669] = { - [sym_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(848), + [459] = { + [sym__expression] = STATE(161), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(469), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(459), [anon_sym_export] = ACTIONS(846), [anon_sym_alias] = ACTIONS(846), [anon_sym_let] = ACTIONS(846), @@ -112409,10 +97408,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(846), [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), [anon_sym_PIPE] = ACTIONS(846), [anon_sym_DOLLAR] = ACTIONS(846), [anon_sym_error] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(846), [anon_sym_break] = ACTIONS(846), [anon_sym_continue] = ACTIONS(846), @@ -112423,7 +97423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(846), [anon_sym_match] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), [anon_sym_try] = ACTIONS(846), [anon_sym_return] = ACTIONS(846), [anon_sym_source] = ACTIONS(846), @@ -112433,7 +97433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(846), [anon_sym_overlay] = ACTIONS(846), [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), [anon_sym_not] = ACTIONS(846), [anon_sym_DOT_DOT_LT] = ACTIONS(846), [anon_sym_DOT_DOT] = ACTIONS(846), @@ -112459,963 +97458,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), [anon_sym_CARET] = ACTIONS(846), - [sym_short_flag] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [670] = { - [sym__flag] = STATE(661), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(822), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(893), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [671] = { - [sym_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(844), - [anon_sym_export] = ACTIONS(842), - [anon_sym_alias] = ACTIONS(842), - [anon_sym_let] = ACTIONS(842), - [anon_sym_let_DASHenv] = ACTIONS(842), - [anon_sym_mut] = ACTIONS(842), - [anon_sym_const] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(842), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_LF] = ACTIONS(844), - [anon_sym_def] = ACTIONS(842), - [anon_sym_def_DASHenv] = ACTIONS(842), - [anon_sym_export_DASHenv] = ACTIONS(842), - [anon_sym_extern] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_use] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_error] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_break] = ACTIONS(842), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_for] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(842), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(842), - [anon_sym_if] = ACTIONS(842), - [anon_sym_match] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_try] = ACTIONS(842), - [anon_sym_return] = ACTIONS(842), - [anon_sym_source] = ACTIONS(842), - [anon_sym_source_DASHenv] = ACTIONS(842), - [anon_sym_register] = ACTIONS(842), - [anon_sym_hide] = ACTIONS(842), - [anon_sym_hide_DASHenv] = ACTIONS(842), - [anon_sym_overlay] = ACTIONS(842), - [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(842), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(842), - [aux_sym_val_number_token4] = ACTIONS(842), - [aux_sym_val_number_token5] = ACTIONS(842), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(842), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(842), - [sym__str_single_quotes] = ACTIONS(842), - [sym__str_back_ticks] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [sym_short_flag] = ACTIONS(842), + [460] = { + [sym__expression] = STATE(165), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(455), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(460), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [672] = { - [sym__flag] = STATE(884), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(822), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [sym_short_flag] = ACTIONS(1553), + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1141), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_def_DASHenv] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1065), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1069), + [anon_sym_or] = ACTIONS(1071), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [sym_val_nothing] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym_val_number_token1] = ACTIONS(1139), + [aux_sym_val_number_token2] = ACTIONS(1139), + [aux_sym_val_number_token3] = ACTIONS(1139), + [aux_sym_val_number_token4] = ACTIONS(1139), + [aux_sym_val_number_token5] = ACTIONS(1139), + [anon_sym_inf] = ACTIONS(1139), + [anon_sym_DASHinf] = ACTIONS(1139), + [anon_sym_NaN] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(3), }, - [673] = { - [sym__flag] = STATE(670), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(893), + [462] = { + [sym__expression] = STATE(165), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(671), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(462), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [674] = { - [sym__flag] = STATE(672), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(893), + [463] = { + [sym__expression] = STATE(149), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(458), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(463), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [675] = { - [sym__flag] = STATE(890), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [sym_short_flag] = ACTIONS(1553), + [464] = { + [sym__expression] = STATE(149), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(460), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [676] = { - [sym__flag] = STATE(682), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(774), - [anon_sym_export] = ACTIONS(772), - [anon_sym_alias] = ACTIONS(772), - [anon_sym_let] = ACTIONS(772), - [anon_sym_let_DASHenv] = ACTIONS(772), - [anon_sym_mut] = ACTIONS(772), - [anon_sym_const] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [sym_cmd_identifier] = ACTIONS(772), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_def] = ACTIONS(772), - [anon_sym_def_DASHenv] = ACTIONS(772), - [anon_sym_export_DASHenv] = ACTIONS(772), - [anon_sym_extern] = ACTIONS(772), - [anon_sym_module] = ACTIONS(772), - [anon_sym_use] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_error] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_break] = ACTIONS(772), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_loop] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_match] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_try] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_source] = ACTIONS(772), - [anon_sym_source_DASHenv] = ACTIONS(772), - [anon_sym_register] = ACTIONS(772), - [anon_sym_hide] = ACTIONS(772), - [anon_sym_hide_DASHenv] = ACTIONS(772), - [anon_sym_overlay] = ACTIONS(772), - [anon_sym_where] = ACTIONS(772), - [anon_sym_not] = ACTIONS(772), - [anon_sym_DOT_DOT_LT] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(772), - [sym_val_nothing] = ACTIONS(772), - [anon_sym_true] = ACTIONS(772), - [anon_sym_false] = ACTIONS(772), - [aux_sym_val_number_token1] = ACTIONS(772), - [aux_sym_val_number_token2] = ACTIONS(772), - [aux_sym_val_number_token3] = ACTIONS(772), - [aux_sym_val_number_token4] = ACTIONS(772), - [aux_sym_val_number_token5] = ACTIONS(772), - [anon_sym_inf] = ACTIONS(772), - [anon_sym_DASHinf] = ACTIONS(772), - [anon_sym_NaN] = ACTIONS(772), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(772), - [anon_sym_0x] = ACTIONS(772), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym__str_single_quotes] = ACTIONS(772), - [sym__str_back_ticks] = ACTIONS(772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [679] = { - [sym__flag] = STATE(920), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [680] = { - [sym__flag] = STATE(674), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [681] = { - [sym__flag] = STATE(675), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [682] = { - [sym__flag] = STATE(668), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(856), - [anon_sym_export] = ACTIONS(854), - [anon_sym_alias] = ACTIONS(854), - [anon_sym_let] = ACTIONS(854), - [anon_sym_let_DASHenv] = ACTIONS(854), - [anon_sym_mut] = ACTIONS(854), - [anon_sym_const] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(854), - [sym_cmd_identifier] = ACTIONS(854), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_def] = ACTIONS(854), - [anon_sym_def_DASHenv] = ACTIONS(854), - [anon_sym_export_DASHenv] = ACTIONS(854), - [anon_sym_extern] = ACTIONS(854), - [anon_sym_module] = ACTIONS(854), - [anon_sym_use] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_break] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_for] = ACTIONS(854), - [anon_sym_loop] = ACTIONS(854), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(854), - [anon_sym_if] = ACTIONS(854), - [anon_sym_match] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_try] = ACTIONS(854), - [anon_sym_return] = ACTIONS(854), - [anon_sym_source] = ACTIONS(854), - [anon_sym_source_DASHenv] = ACTIONS(854), - [anon_sym_register] = ACTIONS(854), - [anon_sym_hide] = ACTIONS(854), - [anon_sym_hide_DASHenv] = ACTIONS(854), - [anon_sym_overlay] = ACTIONS(854), - [anon_sym_where] = ACTIONS(854), - [anon_sym_not] = ACTIONS(854), - [anon_sym_DOT_DOT_LT] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(854), - [sym_val_nothing] = ACTIONS(854), - [anon_sym_true] = ACTIONS(854), - [anon_sym_false] = ACTIONS(854), - [aux_sym_val_number_token1] = ACTIONS(854), - [aux_sym_val_number_token2] = ACTIONS(854), - [aux_sym_val_number_token3] = ACTIONS(854), - [aux_sym_val_number_token4] = ACTIONS(854), - [aux_sym_val_number_token5] = ACTIONS(854), - [anon_sym_inf] = ACTIONS(854), - [anon_sym_DASHinf] = ACTIONS(854), - [anon_sym_NaN] = ACTIONS(854), - [anon_sym_0b] = ACTIONS(854), - [anon_sym_0o] = ACTIONS(854), - [anon_sym_0x] = ACTIONS(854), - [sym_val_date] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(854), - [sym__str_single_quotes] = ACTIONS(854), - [sym__str_back_ticks] = ACTIONS(854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [683] = { - [sym__flag] = STATE(688), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(856), + [465] = { + [sym__expression] = STATE(151), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(474), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(465), [anon_sym_export] = ACTIONS(854), [anon_sym_alias] = ACTIONS(854), [anon_sym_let] = ACTIONS(854), @@ -113433,10 +97984,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(854), [anon_sym_LBRACK] = ACTIONS(854), [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), [anon_sym_PIPE] = ACTIONS(854), [anon_sym_DOLLAR] = ACTIONS(854), [anon_sym_error] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(854), [anon_sym_break] = ACTIONS(854), [anon_sym_continue] = ACTIONS(854), @@ -113447,6 +97999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(854), [anon_sym_match] = ACTIONS(854), [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), [anon_sym_try] = ACTIONS(854), [anon_sym_return] = ACTIONS(854), [anon_sym_source] = ACTIONS(854), @@ -113481,598 +98034,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), [anon_sym_CARET] = ACTIONS(854), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [sym_short_flag] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(3), - }, - [685] = { - [sym__flag] = STATE(689), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [686] = { - [sym__flag] = STATE(896), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), - [sym_short_flag] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [687] = { - [sym__flag] = STATE(695), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [688] = { - [sym__flag] = STATE(679), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(860), - [anon_sym_export] = ACTIONS(858), - [anon_sym_alias] = ACTIONS(858), - [anon_sym_let] = ACTIONS(858), - [anon_sym_let_DASHenv] = ACTIONS(858), - [anon_sym_mut] = ACTIONS(858), - [anon_sym_const] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [sym_cmd_identifier] = ACTIONS(858), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_def] = ACTIONS(858), - [anon_sym_def_DASHenv] = ACTIONS(858), - [anon_sym_export_DASHenv] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_module] = ACTIONS(858), - [anon_sym_use] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_DOLLAR] = ACTIONS(858), - [anon_sym_error] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(858), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(858), - [anon_sym_match] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_try] = ACTIONS(858), - [anon_sym_return] = ACTIONS(858), - [anon_sym_source] = ACTIONS(858), - [anon_sym_source_DASHenv] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_hide] = ACTIONS(858), - [anon_sym_hide_DASHenv] = ACTIONS(858), - [anon_sym_overlay] = ACTIONS(858), - [anon_sym_where] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [sym_val_nothing] = ACTIONS(858), - [anon_sym_true] = ACTIONS(858), - [anon_sym_false] = ACTIONS(858), - [aux_sym_val_number_token1] = ACTIONS(858), - [aux_sym_val_number_token2] = ACTIONS(858), - [aux_sym_val_number_token3] = ACTIONS(858), - [aux_sym_val_number_token4] = ACTIONS(858), - [aux_sym_val_number_token5] = ACTIONS(858), - [anon_sym_inf] = ACTIONS(858), - [anon_sym_DASHinf] = ACTIONS(858), - [anon_sym_NaN] = ACTIONS(858), - [anon_sym_0b] = ACTIONS(858), - [anon_sym_0o] = ACTIONS(858), - [anon_sym_0x] = ACTIONS(858), - [sym_val_date] = ACTIONS(858), - [anon_sym_DQUOTE] = ACTIONS(858), - [sym__str_single_quotes] = ACTIONS(858), - [sym__str_back_ticks] = ACTIONS(858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [689] = { - [sym__flag] = STATE(878), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(1507), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [sym_cmd_identifier] = ACTIONS(1505), - [anon_sym_LF] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_def_DASHenv] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(1505), - [anon_sym_DOT_DOT_LT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [sym_val_nothing] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym_val_number_token1] = ACTIONS(1505), - [aux_sym_val_number_token2] = ACTIONS(1505), - [aux_sym_val_number_token3] = ACTIONS(1505), - [aux_sym_val_number_token4] = ACTIONS(1505), - [aux_sym_val_number_token5] = ACTIONS(1505), - [anon_sym_inf] = ACTIONS(1505), - [anon_sym_DASHinf] = ACTIONS(1505), - [anon_sym_NaN] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [sym_short_flag] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [690] = { - [sym__flag] = STATE(692), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [691] = { - [sym__flag] = STATE(681), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(852), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [692] = { - [sym__flag] = STATE(686), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(852), + [466] = { + [sym__expression] = STATE(149), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(462), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(466), [anon_sym_export] = ACTIONS(850), [anon_sym_alias] = ACTIONS(850), [anon_sym_let] = ACTIONS(850), @@ -114090,10 +98080,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_PIPE] = ACTIONS(850), [anon_sym_DOLLAR] = ACTIONS(850), [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(850), [anon_sym_break] = ACTIONS(850), [anon_sym_continue] = ACTIONS(850), @@ -114104,6 +98095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(850), [anon_sym_match] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_try] = ACTIONS(850), [anon_sym_return] = ACTIONS(850), [anon_sym_source] = ACTIONS(850), @@ -114138,14 +98130,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(893), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [693] = { - [sym__flag] = STATE(901), - [sym_long_flag] = STATE(827), - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(852), + [467] = { + [sym__expression] = STATE(149), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(650), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(467), [anon_sym_export] = ACTIONS(850), [anon_sym_alias] = ACTIONS(850), [anon_sym_let] = ACTIONS(850), @@ -114163,10 +98176,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_PIPE] = ACTIONS(850), [anon_sym_DOLLAR] = ACTIONS(850), [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(850), [anon_sym_break] = ACTIONS(850), [anon_sym_continue] = ACTIONS(850), @@ -114177,6 +98191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(850), [anon_sym_match] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_try] = ACTIONS(850), [anon_sym_return] = ACTIONS(850), [anon_sym_source] = ACTIONS(850), @@ -114211,1813 +98226,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), [anon_sym_CARET] = ACTIONS(850), - [sym_short_flag] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [695] = { - [sym__flag] = STATE(693), - [sym_long_flag] = STATE(731), - [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [sym_short_flag] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), - }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_as] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [sym_short_flag] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - }, - [698] = { - [sym_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(910), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [sym_short_flag] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [699] = { - [sym_path] = STATE(793), - [sym_comment] = STATE(699), - [aux_sym_cell_path_repeat1] = STATE(706), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(3), - }, - [700] = { - [sym_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(1547), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [sym_short_flag] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(3), - }, - [701] = { - [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [sym_short_flag] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), - }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_alias] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_let_DASHenv] = ACTIONS(1567), - [anon_sym_mut] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [sym_cmd_identifier] = ACTIONS(1567), - [anon_sym_LF] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1567), - [anon_sym_def_DASHenv] = ACTIONS(1567), - [anon_sym_export_DASHenv] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_source] = ACTIONS(1567), - [anon_sym_source_DASHenv] = ACTIONS(1567), - [anon_sym_register] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_hide_DASHenv] = ACTIONS(1567), - [anon_sym_overlay] = ACTIONS(1567), - [anon_sym_where] = ACTIONS(1567), - [anon_sym_not] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), - [sym_val_nothing] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [aux_sym_val_number_token1] = ACTIONS(1567), - [aux_sym_val_number_token2] = ACTIONS(1567), - [aux_sym_val_number_token3] = ACTIONS(1567), - [aux_sym_val_number_token4] = ACTIONS(1567), - [aux_sym_val_number_token5] = ACTIONS(1567), - [anon_sym_inf] = ACTIONS(1567), - [anon_sym_DASHinf] = ACTIONS(1567), - [anon_sym_NaN] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1567), - [anon_sym_0x] = ACTIONS(1567), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [sym_short_flag] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), - }, - [703] = { - [sym_cell_path] = STATE(840), - [sym_path] = STATE(699), - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(3), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_as] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [sym_short_flag] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(3), - }, - [705] = { - [sym_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(916), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [sym_short_flag] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [706] = { - [sym_path] = STATE(793), - [sym_comment] = STATE(706), - [aux_sym_cell_path_repeat1] = STATE(712), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [sym_short_flag] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - }, - [708] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1740), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(708), - [aux_sym_command_repeat1] = STATE(714), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_LF] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [709] = { - [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(1613), - [anon_sym_alias] = ACTIONS(1613), - [anon_sym_let] = ACTIONS(1613), - [anon_sym_let_DASHenv] = ACTIONS(1613), - [anon_sym_mut] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1613), - [sym_cmd_identifier] = ACTIONS(1613), - [anon_sym_LF] = ACTIONS(1615), - [anon_sym_def] = ACTIONS(1613), - [anon_sym_def_DASHenv] = ACTIONS(1613), - [anon_sym_export_DASHenv] = ACTIONS(1613), - [anon_sym_extern] = ACTIONS(1613), - [anon_sym_module] = ACTIONS(1613), - [anon_sym_use] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1613), - [anon_sym_error] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_loop] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_try] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_source] = ACTIONS(1613), - [anon_sym_source_DASHenv] = ACTIONS(1613), - [anon_sym_register] = ACTIONS(1613), - [anon_sym_hide] = ACTIONS(1613), - [anon_sym_hide_DASHenv] = ACTIONS(1613), - [anon_sym_overlay] = ACTIONS(1613), - [anon_sym_as] = ACTIONS(1613), - [anon_sym_where] = ACTIONS(1613), - [anon_sym_not] = ACTIONS(1613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1613), - [sym_val_nothing] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [aux_sym_val_number_token1] = ACTIONS(1613), - [aux_sym_val_number_token2] = ACTIONS(1613), - [aux_sym_val_number_token3] = ACTIONS(1613), - [aux_sym_val_number_token4] = ACTIONS(1613), - [aux_sym_val_number_token5] = ACTIONS(1613), - [anon_sym_inf] = ACTIONS(1613), - [anon_sym_DASHinf] = ACTIONS(1613), - [anon_sym_NaN] = ACTIONS(1613), - [anon_sym_0b] = ACTIONS(1613), - [anon_sym_0o] = ACTIONS(1613), - [anon_sym_0x] = ACTIONS(1613), - [sym_val_date] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [sym__str_single_quotes] = ACTIONS(1613), - [sym__str_back_ticks] = ACTIONS(1613), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [sym_short_flag] = ACTIONS(1613), - [anon_sym_POUND] = ACTIONS(3), - }, - [710] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1740), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(710), - [aux_sym_command_repeat1] = STATE(708), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [711] = { - [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(846), - [aux_sym_val_number_token4] = ACTIONS(846), - [aux_sym_val_number_token5] = ACTIONS(846), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(846), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(3), - }, - [712] = { - [sym_path] = STATE(793), - [sym_comment] = STATE(712), - [aux_sym_cell_path_repeat1] = STATE(712), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(3), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [sym_short_flag] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [714] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1740), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(714), - [aux_sym_command_repeat1] = STATE(714), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [sym_val_nothing] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [aux_sym_val_number_token1] = ACTIONS(1652), - [aux_sym_val_number_token2] = ACTIONS(1652), - [aux_sym_val_number_token3] = ACTIONS(1652), - [aux_sym_val_number_token4] = ACTIONS(1652), - [aux_sym_val_number_token5] = ACTIONS(1652), - [anon_sym_inf] = ACTIONS(1652), - [anon_sym_DASHinf] = ACTIONS(1652), - [anon_sym_NaN] = ACTIONS(1652), - [anon_sym_0b] = ACTIONS(1655), - [anon_sym_0o] = ACTIONS(1655), - [anon_sym_0x] = ACTIONS(1655), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1664), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1667), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [sym_short_flag] = ACTIONS(1673), - [aux_sym_unquoted_token1] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(3), - }, - [715] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1740), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(715), - [aux_sym_command_repeat1] = STATE(720), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [716] = { - [sym__expression] = STATE(568), - [sym_expr_unary] = STATE(513), - [sym_expr_binary] = STATE(513), - [sym_expr_parenthesized] = STATE(523), - [sym_val_range] = STATE(513), - [sym__value] = STATE(513), - [sym_val_bool] = STATE(554), - [sym_val_variable] = STATE(554), - [sym__var] = STATE(451), - [sym_val_number] = STATE(11), - [sym_val_duration] = STATE(554), - [sym_val_filesize] = STATE(554), - [sym_val_binary] = STATE(554), - [sym_val_string] = STATE(554), - [sym__str_double_quotes] = STATE(574), - [sym_val_interpolated] = STATE(554), - [sym__inter_single_quotes] = STATE(551), - [sym__inter_double_quotes] = STATE(550), - [sym_val_list] = STATE(554), - [sym_val_record] = STATE(554), - [sym_val_table] = STATE(554), - [sym_val_closure] = STATE(554), - [sym_unquoted] = STATE(1738), - [sym_comment] = STATE(716), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_LF] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_not] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1697), - [sym_val_nothing] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [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), - [anon_sym_inf] = ACTIONS(1703), - [anon_sym_DASHinf] = ACTIONS(1703), - [anon_sym_NaN] = ACTIONS(1703), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [sym_short_flag] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [717] = { - [sym_comment] = STATE(717), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), - [sym_short_flag] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - }, - [718] = { - [sym_cell_path] = STATE(833), - [sym_path] = STATE(699), - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(723), - [anon_sym_alias] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_let_DASHenv] = ACTIONS(723), - [anon_sym_mut] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(723), - [sym_cmd_identifier] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_def] = ACTIONS(723), - [anon_sym_def_DASHenv] = ACTIONS(723), - [anon_sym_export_DASHenv] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_module] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_error] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_source] = ACTIONS(723), - [anon_sym_source_DASHenv] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_hide] = ACTIONS(723), - [anon_sym_hide_DASHenv] = ACTIONS(723), - [anon_sym_overlay] = ACTIONS(723), - [anon_sym_where] = ACTIONS(723), - [anon_sym_not] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [719] = { - [sym_comment] = STATE(719), + [468] = { + [sym__expression] = STATE(160), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(463), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(468), [anon_sym_export] = ACTIONS(842), [anon_sym_alias] = ACTIONS(842), [anon_sym_let] = ACTIONS(842), @@ -116036,8 +98273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(842), [anon_sym_LPAREN] = ACTIONS(842), [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), [anon_sym_DOLLAR] = ACTIONS(842), [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(842), [anon_sym_break] = ACTIONS(842), [anon_sym_continue] = ACTIONS(842), @@ -116049,7 +98288,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(842), [anon_sym_LBRACE] = ACTIONS(842), [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), [anon_sym_try] = ACTIONS(842), [anon_sym_return] = ACTIONS(842), [anon_sym_source] = ACTIONS(842), @@ -116058,9 +98296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(842), [anon_sym_hide_DASHenv] = ACTIONS(842), [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), [anon_sym_not] = ACTIONS(842), [anon_sym_DOT_DOT_LT] = ACTIONS(842), [anon_sym_DOT_DOT] = ACTIONS(842), @@ -116086,1223 +98322,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [720] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1740), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(720), - [aux_sym_command_repeat1] = STATE(714), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [721] = { - [sym_cell_path] = STATE(843), - [sym_path] = STATE(699), - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(3), - }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [sym_short_flag] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(3), - }, - [723] = { - [sym_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(1547), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [sym_short_flag] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), - }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), - [sym_short_flag] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - }, - [725] = { - [sym_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [sym_short_flag] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(3), - }, - [726] = { - [sym_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(946), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), - [sym_short_flag] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(3), - }, - [727] = { - [sym_comment] = STATE(727), - [aux_sym_pipe_element_repeat1] = STATE(1818), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(3), - }, - [728] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1817), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(728), - [aux_sym__command_parenthesized_body_repeat1] = STATE(732), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [729] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1817), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(729), - [aux_sym__command_parenthesized_body_repeat1] = STATE(741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_LF] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [730] = { - [sym_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(1573), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [sym_short_flag] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(3), - }, - [731] = { - [sym_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [sym_short_flag] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - }, - [732] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1817), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(732), - [aux_sym__command_parenthesized_body_repeat1] = STATE(741), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_LF] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [733] = { - [sym_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(1569), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_alias] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_let_DASHenv] = ACTIONS(1567), - [anon_sym_mut] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [sym_cmd_identifier] = ACTIONS(1567), - [anon_sym_LF] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1567), - [anon_sym_def_DASHenv] = ACTIONS(1567), - [anon_sym_export_DASHenv] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_source] = ACTIONS(1567), - [anon_sym_source_DASHenv] = ACTIONS(1567), - [anon_sym_register] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_hide_DASHenv] = ACTIONS(1567), - [anon_sym_overlay] = ACTIONS(1567), - [anon_sym_where] = ACTIONS(1567), - [anon_sym_not] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), - [sym_val_nothing] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [aux_sym_val_number_token1] = ACTIONS(1567), - [aux_sym_val_number_token2] = ACTIONS(1567), - [aux_sym_val_number_token3] = ACTIONS(1567), - [aux_sym_val_number_token4] = ACTIONS(1567), - [aux_sym_val_number_token5] = ACTIONS(1567), - [anon_sym_inf] = ACTIONS(1567), - [anon_sym_DASHinf] = ACTIONS(1567), - [anon_sym_NaN] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1567), - [anon_sym_0x] = ACTIONS(1567), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [sym_short_flag] = ACTIONS(1567), + [469] = { + [sym__expression] = STATE(151), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(478), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(469), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [734] = { - [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [470] = { + [sym__expression] = STATE(151), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(477), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(470), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [735] = { - [sym_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(1615), - [anon_sym_export] = ACTIONS(1613), - [anon_sym_alias] = ACTIONS(1613), - [anon_sym_let] = ACTIONS(1613), - [anon_sym_let_DASHenv] = ACTIONS(1613), - [anon_sym_mut] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1613), - [sym_cmd_identifier] = ACTIONS(1613), - [anon_sym_LF] = ACTIONS(1615), - [anon_sym_def] = ACTIONS(1613), - [anon_sym_def_DASHenv] = ACTIONS(1613), - [anon_sym_export_DASHenv] = ACTIONS(1613), - [anon_sym_extern] = ACTIONS(1613), - [anon_sym_module] = ACTIONS(1613), - [anon_sym_use] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1613), - [anon_sym_error] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_loop] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_try] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_source] = ACTIONS(1613), - [anon_sym_source_DASHenv] = ACTIONS(1613), - [anon_sym_register] = ACTIONS(1613), - [anon_sym_hide] = ACTIONS(1613), - [anon_sym_hide_DASHenv] = ACTIONS(1613), - [anon_sym_overlay] = ACTIONS(1613), - [anon_sym_as] = ACTIONS(1613), - [anon_sym_where] = ACTIONS(1613), - [anon_sym_not] = ACTIONS(1613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1613), - [sym_val_nothing] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [aux_sym_val_number_token1] = ACTIONS(1613), - [aux_sym_val_number_token2] = ACTIONS(1613), - [aux_sym_val_number_token3] = ACTIONS(1613), - [aux_sym_val_number_token4] = ACTIONS(1613), - [aux_sym_val_number_token5] = ACTIONS(1613), - [anon_sym_inf] = ACTIONS(1613), - [anon_sym_DASHinf] = ACTIONS(1613), - [anon_sym_NaN] = ACTIONS(1613), - [anon_sym_0b] = ACTIONS(1613), - [anon_sym_0o] = ACTIONS(1613), - [anon_sym_0x] = ACTIONS(1613), - [sym_val_date] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [sym__str_single_quotes] = ACTIONS(1613), - [sym__str_back_ticks] = ACTIONS(1613), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [sym_short_flag] = ACTIONS(1613), + [471] = { + [sym__expression] = STATE(160), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(464), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [736] = { - [sym_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), - [sym_short_flag] = ACTIONS(1725), + [472] = { + [sym__expression] = STATE(160), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(466), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [737] = { - [sym_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(844), + [473] = { + [sym__expression] = STATE(160), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(467), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(473), [anon_sym_export] = ACTIONS(842), [anon_sym_alias] = ACTIONS(842), [anon_sym_let] = ACTIONS(842), @@ -117320,8 +98752,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(842), [anon_sym_LBRACK] = ACTIONS(842), [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), [anon_sym_DOLLAR] = ACTIONS(842), [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(842), [anon_sym_break] = ACTIONS(842), [anon_sym_continue] = ACTIONS(842), @@ -117332,7 +98767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(842), [anon_sym_match] = ACTIONS(842), [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), [anon_sym_try] = ACTIONS(842), [anon_sym_return] = ACTIONS(842), [anon_sym_source] = ACTIONS(842), @@ -117341,9 +98776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(842), [anon_sym_hide_DASHenv] = ACTIONS(842), [anon_sym_overlay] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), [anon_sym_where] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(842), [anon_sym_not] = ACTIONS(842), [anon_sym_DOT_DOT_LT] = ACTIONS(842), [anon_sym_DOT_DOT] = ACTIONS(842), @@ -117369,56 +98802,750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [738] = { - [sym_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(848), - [anon_sym_def] = ACTIONS(846), - [anon_sym_def_DASHenv] = ACTIONS(846), - [anon_sym_export_DASHenv] = ACTIONS(846), - [anon_sym_extern] = ACTIONS(846), - [anon_sym_module] = ACTIONS(846), - [anon_sym_use] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_match] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_source] = ACTIONS(846), - [anon_sym_source_DASHenv] = ACTIONS(846), - [anon_sym_register] = ACTIONS(846), - [anon_sym_hide] = ACTIONS(846), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_where] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [474] = { + [sym__expression] = STATE(154), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(475), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(474), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [475] = { + [sym__expression] = STATE(160), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(657), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(475), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [476] = { + [sym__expression] = STATE(154), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(471), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(476), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [477] = { + [sym__expression] = STATE(154), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(472), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(477), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [478] = { + [sym__expression] = STATE(154), + [sym_expr_unary] = STATE(198), + [sym_expr_binary] = STATE(198), + [sym_expr_parenthesized] = STATE(202), + [sym_val_range] = STATE(198), + [sym__value] = STATE(198), + [sym_val_bool] = STATE(220), + [sym_val_variable] = STATE(220), + [sym__var] = STATE(141), + [sym_val_number] = STATE(2), + [sym_val_duration] = STATE(220), + [sym_val_filesize] = STATE(220), + [sym_val_binary] = STATE(220), + [sym_val_string] = STATE(220), + [sym__str_double_quotes] = STATE(241), + [sym_val_interpolated] = STATE(220), + [sym__inter_single_quotes] = STATE(216), + [sym__inter_double_quotes] = STATE(215), + [sym_val_list] = STATE(220), + [sym_val_record] = STATE(220), + [sym_val_table] = STATE(220), + [sym_val_closure] = STATE(220), + [sym__flag] = STATE(473), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [479] = { + [sym__expression] = STATE(170), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(484), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [480] = { + [sym__expression] = STATE(169), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(498), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), + }, + [481] = { + [sym__expression] = STATE(188), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(500), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_def_DASHenv] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [anon_sym_DOT_DOT_LT] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), [sym_val_nothing] = ACTIONS(846), [anon_sym_true] = ACTIONS(846), [anon_sym_false] = ACTIONS(846), @@ -117440,5538 +99567,7262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), [anon_sym_CARET] = ACTIONS(846), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [739] = { - [sym_path] = STATE(879), - [sym_comment] = STATE(739), - [aux_sym_cell_path_repeat1] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(759), - [anon_sym_export] = ACTIONS(757), - [anon_sym_alias] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_let_DASHenv] = ACTIONS(757), - [anon_sym_mut] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LF] = ACTIONS(759), - [anon_sym_def] = ACTIONS(757), - [anon_sym_def_DASHenv] = ACTIONS(757), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_error] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_source] = ACTIONS(757), - [anon_sym_source_DASHenv] = ACTIONS(757), - [anon_sym_register] = ACTIONS(757), - [anon_sym_hide] = ACTIONS(757), - [anon_sym_hide_DASHenv] = ACTIONS(757), - [anon_sym_overlay] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(757), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(757), - [aux_sym_val_number_token4] = ACTIONS(757), - [aux_sym_val_number_token5] = ACTIONS(757), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(757), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym__str_single_quotes] = ACTIONS(757), - [sym__str_back_ticks] = ACTIONS(757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), + [482] = { + [sym__expression] = STATE(188), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(502), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_def_DASHenv] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [anon_sym_DOT_DOT_LT] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(846), + [sym_val_nothing] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym_val_number_token1] = ACTIONS(846), + [aux_sym_val_number_token2] = ACTIONS(846), + [aux_sym_val_number_token3] = ACTIONS(846), + [aux_sym_val_number_token4] = ACTIONS(846), + [aux_sym_val_number_token5] = ACTIONS(846), + [anon_sym_inf] = ACTIONS(846), + [anon_sym_DASHinf] = ACTIONS(846), + [anon_sym_NaN] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [483] = { + [sym__expression] = STATE(182), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(750), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [741] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1817), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(741), - [aux_sym__command_parenthesized_body_repeat1] = STATE(741), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1770), - [sym_val_nothing] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [aux_sym_val_number_token1] = ACTIONS(1779), - [aux_sym_val_number_token2] = ACTIONS(1779), - [aux_sym_val_number_token3] = ACTIONS(1779), - [aux_sym_val_number_token4] = ACTIONS(1779), - [aux_sym_val_number_token5] = ACTIONS(1779), - [anon_sym_inf] = ACTIONS(1779), - [anon_sym_DASHinf] = ACTIONS(1779), - [anon_sym_NaN] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1782), - [anon_sym_0o] = ACTIONS(1782), - [anon_sym_0x] = ACTIONS(1782), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1788), - [sym__str_back_ticks] = ACTIONS(1788), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1791), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [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), - [sym_short_flag] = ACTIONS(1800), - [aux_sym_unquoted_token1] = ACTIONS(1803), + [484] = { + [sym__expression] = STATE(169), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(774), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [742] = { - [sym_path] = STATE(879), - [sym_comment] = STATE(742), - [aux_sym_cell_path_repeat1] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_export] = ACTIONS(749), - [anon_sym_alias] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_let_DASHenv] = ACTIONS(749), - [anon_sym_mut] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_def] = ACTIONS(749), - [anon_sym_def_DASHenv] = ACTIONS(749), - [anon_sym_export_DASHenv] = ACTIONS(749), - [anon_sym_extern] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_error] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_source] = ACTIONS(749), - [anon_sym_source_DASHenv] = ACTIONS(749), - [anon_sym_register] = ACTIONS(749), - [anon_sym_hide] = ACTIONS(749), - [anon_sym_hide_DASHenv] = ACTIONS(749), - [anon_sym_overlay] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(749), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(749), - [aux_sym_val_number_token4] = ACTIONS(749), - [aux_sym_val_number_token5] = ACTIONS(749), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(749), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [sym__str_single_quotes] = ACTIONS(749), - [sym__str_back_ticks] = ACTIONS(749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), + [485] = { + [sym__expression] = STATE(169), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(495), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(485), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [743] = { - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(1788), - [sym__value] = STATE(1788), - [sym_val_bool] = STATE(1822), - [sym_val_variable] = STATE(1822), - [sym__var] = STATE(1702), - [sym_val_number] = STATE(110), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1796), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1821), - [sym__inter_double_quotes] = STATE(1785), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__cmd_arg] = STATE(1810), - [sym_redirection] = STATE(1808), - [sym__flag] = STATE(1789), - [sym_long_flag] = STATE(1776), - [sym_unquoted] = STATE(1787), - [sym_comment] = STATE(743), - [aux_sym_command_repeat1] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [sym_val_nothing] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_val_number_token1] = ACTIONS(1824), - [aux_sym_val_number_token2] = ACTIONS(1824), - [aux_sym_val_number_token3] = ACTIONS(1824), - [aux_sym_val_number_token4] = ACTIONS(1824), - [aux_sym_val_number_token5] = ACTIONS(1824), - [anon_sym_inf] = ACTIONS(1824), - [anon_sym_DASHinf] = ACTIONS(1824), - [anon_sym_NaN] = ACTIONS(1824), - [anon_sym_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [sym_short_flag] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1840), + [486] = { + [sym_comment] = STATE(486), + [ts_builtin_sym_end] = ACTIONS(1141), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1141), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_def_DASHenv] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1081), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_mod] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT2] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_not_DASHin] = ACTIONS(1081), + [anon_sym_starts_DASHwith] = ACTIONS(1081), + [anon_sym_ends_DASHwith] = ACTIONS(1081), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [sym_val_nothing] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym_val_number_token1] = ACTIONS(1139), + [aux_sym_val_number_token2] = ACTIONS(1139), + [aux_sym_val_number_token3] = ACTIONS(1139), + [aux_sym_val_number_token4] = ACTIONS(1139), + [aux_sym_val_number_token5] = ACTIONS(1139), + [anon_sym_inf] = ACTIONS(1139), + [anon_sym_DASHinf] = ACTIONS(1139), + [anon_sym_NaN] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(3), }, - [744] = { - [sym_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(1717), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), - [sym_short_flag] = ACTIONS(1715), + [487] = { + [sym__expression] = STATE(170), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(490), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [745] = { - [sym__terminator] = STATE(846), - [sym_comment] = STATE(745), - [aux_sym__block_body_repeat1] = STATE(745), - [anon_sym_export] = ACTIONS(1842), - [anon_sym_alias] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_let_DASHenv] = ACTIONS(1842), - [anon_sym_mut] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1844), - [sym_cmd_identifier] = ACTIONS(1842), - [anon_sym_LF] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1842), - [anon_sym_def_DASHenv] = ACTIONS(1842), - [anon_sym_export_DASHenv] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_error] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_try] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_source] = ACTIONS(1842), - [anon_sym_source_DASHenv] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_hide] = ACTIONS(1842), - [anon_sym_hide_DASHenv] = ACTIONS(1842), - [anon_sym_overlay] = ACTIONS(1842), - [anon_sym_where] = ACTIONS(1842), - [anon_sym_not] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), - [sym_val_nothing] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [aux_sym_val_number_token1] = ACTIONS(1842), - [aux_sym_val_number_token2] = ACTIONS(1842), - [aux_sym_val_number_token3] = ACTIONS(1842), - [aux_sym_val_number_token4] = ACTIONS(1842), - [aux_sym_val_number_token5] = ACTIONS(1842), - [anon_sym_inf] = ACTIONS(1842), - [anon_sym_DASHinf] = ACTIONS(1842), - [anon_sym_NaN] = ACTIONS(1842), - [anon_sym_0b] = ACTIONS(1842), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [sym__str_single_quotes] = ACTIONS(1842), - [sym__str_back_ticks] = ACTIONS(1842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), + [488] = { + [sym__expression] = STATE(169), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(488), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [746] = { - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(1788), - [sym__value] = STATE(1788), - [sym_val_bool] = STATE(1822), - [sym_val_variable] = STATE(1822), - [sym__var] = STATE(1702), - [sym_val_number] = STATE(110), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1796), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1821), - [sym__inter_double_quotes] = STATE(1785), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__cmd_arg] = STATE(1810), - [sym_redirection] = STATE(1808), - [sym__flag] = STATE(1789), - [sym_long_flag] = STATE(1776), - [sym_unquoted] = STATE(1787), - [sym_comment] = STATE(746), - [aux_sym_command_repeat1] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [sym_val_nothing] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_val_number_token1] = ACTIONS(1824), - [aux_sym_val_number_token2] = ACTIONS(1824), - [aux_sym_val_number_token3] = ACTIONS(1824), - [aux_sym_val_number_token4] = ACTIONS(1824), - [aux_sym_val_number_token5] = ACTIONS(1824), - [anon_sym_inf] = ACTIONS(1824), - [anon_sym_DASHinf] = ACTIONS(1824), - [anon_sym_NaN] = ACTIONS(1824), - [anon_sym_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [sym_short_flag] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1840), + [489] = { + [sym__expression] = STATE(170), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(488), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1850), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [490] = { + [sym__expression] = STATE(169), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(497), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [748] = { - [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1850), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [491] = { + [sym__expression] = STATE(170), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(485), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(491), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [749] = { - [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_alias] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_let_DASHenv] = ACTIONS(1852), - [anon_sym_mut] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [sym_cmd_identifier] = ACTIONS(1852), - [anon_sym_LF] = ACTIONS(1854), - [anon_sym_def] = ACTIONS(1852), - [anon_sym_def_DASHenv] = ACTIONS(1852), - [anon_sym_export_DASHenv] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_DOLLAR] = ACTIONS(1852), - [anon_sym_error] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_do] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_else] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_source] = ACTIONS(1852), - [anon_sym_source_DASHenv] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_hide] = ACTIONS(1852), - [anon_sym_hide_DASHenv] = ACTIONS(1852), - [anon_sym_overlay] = ACTIONS(1852), - [anon_sym_where] = ACTIONS(1852), - [anon_sym_not] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT] = ACTIONS(1852), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1852), - [sym_val_nothing] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [aux_sym_val_number_token1] = ACTIONS(1852), - [aux_sym_val_number_token2] = ACTIONS(1852), - [aux_sym_val_number_token3] = ACTIONS(1852), - [aux_sym_val_number_token4] = ACTIONS(1852), - [aux_sym_val_number_token5] = ACTIONS(1852), - [anon_sym_inf] = ACTIONS(1852), - [anon_sym_DASHinf] = ACTIONS(1852), - [anon_sym_NaN] = ACTIONS(1852), - [anon_sym_0b] = ACTIONS(1852), - [anon_sym_0o] = ACTIONS(1852), - [anon_sym_0x] = ACTIONS(1852), - [sym_val_date] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym__str_single_quotes] = ACTIONS(1852), - [sym__str_back_ticks] = ACTIONS(1852), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1852), + [492] = { + [sym__expression] = STATE(177), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(482), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(492), + [ts_builtin_sym_end] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_def_DASHenv] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [sym_val_nothing] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym_val_number_token1] = ACTIONS(1135), + [aux_sym_val_number_token2] = ACTIONS(1135), + [aux_sym_val_number_token3] = ACTIONS(1135), + [aux_sym_val_number_token4] = ACTIONS(1135), + [aux_sym_val_number_token5] = ACTIONS(1135), + [anon_sym_inf] = ACTIONS(1135), + [anon_sym_DASHinf] = ACTIONS(1135), + [anon_sym_NaN] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [750] = { - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(1788), - [sym__value] = STATE(1788), - [sym_val_bool] = STATE(1822), - [sym_val_variable] = STATE(1822), - [sym__var] = STATE(1702), - [sym_val_number] = STATE(110), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1796), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1821), - [sym__inter_double_quotes] = STATE(1785), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__cmd_arg] = STATE(1810), - [sym_redirection] = STATE(1808), - [sym__flag] = STATE(1789), - [sym_long_flag] = STATE(1776), - [sym_unquoted] = STATE(1787), - [sym_comment] = STATE(750), - [aux_sym_command_repeat1] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [sym_val_nothing] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_val_number_token1] = ACTIONS(1824), - [aux_sym_val_number_token2] = ACTIONS(1824), - [aux_sym_val_number_token3] = ACTIONS(1824), - [aux_sym_val_number_token4] = ACTIONS(1824), - [aux_sym_val_number_token5] = ACTIONS(1824), - [anon_sym_inf] = ACTIONS(1824), - [anon_sym_DASHinf] = ACTIONS(1824), - [anon_sym_NaN] = ACTIONS(1824), - [anon_sym_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [sym_short_flag] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1840), + [493] = { + [sym__expression] = STATE(174), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(483), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(493), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [751] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1817), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(751), - [aux_sym__command_parenthesized_body_repeat1] = STATE(729), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_LF] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), + [494] = { + [sym__expression] = STATE(174), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(762), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [752] = { - [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(1862), - [anon_sym_alias] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_let_DASHenv] = ACTIONS(1862), - [anon_sym_mut] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [sym_cmd_identifier] = ACTIONS(1862), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_def] = ACTIONS(1862), - [anon_sym_def_DASHenv] = ACTIONS(1862), - [anon_sym_export_DASHenv] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_module] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1862), - [anon_sym_error] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_try] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_source] = ACTIONS(1862), - [anon_sym_source_DASHenv] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_hide] = ACTIONS(1862), - [anon_sym_hide_DASHenv] = ACTIONS(1862), - [anon_sym_overlay] = ACTIONS(1862), - [anon_sym_where] = ACTIONS(1862), - [anon_sym_not] = ACTIONS(1862), - [anon_sym_DOT_DOT_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), - [sym_val_nothing] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [aux_sym_val_number_token1] = ACTIONS(1862), - [aux_sym_val_number_token2] = ACTIONS(1862), - [aux_sym_val_number_token3] = ACTIONS(1862), - [aux_sym_val_number_token4] = ACTIONS(1862), - [aux_sym_val_number_token5] = ACTIONS(1862), - [anon_sym_inf] = ACTIONS(1862), - [anon_sym_DASHinf] = ACTIONS(1862), - [anon_sym_NaN] = ACTIONS(1862), - [anon_sym_0b] = ACTIONS(1862), - [anon_sym_0o] = ACTIONS(1862), - [anon_sym_0x] = ACTIONS(1862), - [sym_val_date] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [sym__str_single_quotes] = ACTIONS(1862), - [sym__str_back_ticks] = ACTIONS(1862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), - [anon_sym_CARET] = ACTIONS(1862), + [495] = { + [sym__expression] = STATE(190), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(776), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [753] = { - [sym_cell_path] = STATE(945), - [sym_path] = STATE(742), - [sym_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(725), - [anon_sym_export] = ACTIONS(723), - [anon_sym_alias] = ACTIONS(723), - [anon_sym_let] = ACTIONS(723), - [anon_sym_let_DASHenv] = ACTIONS(723), - [anon_sym_mut] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(723), - [sym_cmd_identifier] = ACTIONS(723), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_def] = ACTIONS(723), - [anon_sym_def_DASHenv] = ACTIONS(723), - [anon_sym_export_DASHenv] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_module] = ACTIONS(723), - [anon_sym_use] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_error] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_loop] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_match] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_source] = ACTIONS(723), - [anon_sym_source_DASHenv] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_hide] = ACTIONS(723), - [anon_sym_hide_DASHenv] = ACTIONS(723), - [anon_sym_overlay] = ACTIONS(723), - [anon_sym_where] = ACTIONS(723), - [anon_sym_not] = ACTIONS(723), - [anon_sym_DOT_DOT_LT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(723), - [sym_val_nothing] = ACTIONS(723), - [anon_sym_true] = ACTIONS(723), - [anon_sym_false] = ACTIONS(723), - [aux_sym_val_number_token1] = ACTIONS(723), - [aux_sym_val_number_token2] = ACTIONS(723), - [aux_sym_val_number_token3] = ACTIONS(723), - [aux_sym_val_number_token4] = ACTIONS(723), - [aux_sym_val_number_token5] = ACTIONS(723), - [anon_sym_inf] = ACTIONS(723), - [anon_sym_DASHinf] = ACTIONS(723), - [anon_sym_NaN] = ACTIONS(723), - [anon_sym_0b] = ACTIONS(723), - [anon_sym_0o] = ACTIONS(723), - [anon_sym_0x] = ACTIONS(723), - [sym_val_date] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym__str_single_quotes] = ACTIONS(723), - [sym__str_back_ticks] = ACTIONS(723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), + [496] = { + [sym__expression] = STATE(190), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(501), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(496), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [754] = { - [sym_cell_path] = STATE(938), - [sym_path] = STATE(742), - [sym_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_export] = ACTIONS(729), - [anon_sym_alias] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_let_DASHenv] = ACTIONS(729), - [anon_sym_mut] = ACTIONS(729), - [anon_sym_const] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_cmd_identifier] = ACTIONS(729), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_def] = ACTIONS(729), - [anon_sym_def_DASHenv] = ACTIONS(729), - [anon_sym_export_DASHenv] = ACTIONS(729), - [anon_sym_extern] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_use] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_loop] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_match] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_source] = ACTIONS(729), - [anon_sym_source_DASHenv] = ACTIONS(729), - [anon_sym_register] = ACTIONS(729), - [anon_sym_hide] = ACTIONS(729), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_not] = ACTIONS(729), - [anon_sym_DOT_DOT_LT] = ACTIONS(729), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(729), - [sym_val_nothing] = ACTIONS(729), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [aux_sym_val_number_token1] = ACTIONS(729), - [aux_sym_val_number_token2] = ACTIONS(729), - [aux_sym_val_number_token3] = ACTIONS(729), - [aux_sym_val_number_token4] = ACTIONS(729), - [aux_sym_val_number_token5] = ACTIONS(729), - [anon_sym_inf] = ACTIONS(729), - [anon_sym_DASHinf] = ACTIONS(729), - [anon_sym_NaN] = ACTIONS(729), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(729), - [anon_sym_0x] = ACTIONS(729), - [sym_val_date] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym__str_single_quotes] = ACTIONS(729), - [sym__str_back_ticks] = ACTIONS(729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), + [497] = { + [sym__expression] = STATE(190), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(503), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(497), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [755] = { - [sym_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(1573), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_as] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [sym_short_flag] = ACTIONS(1571), + [498] = { + [sym__expression] = STATE(190), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(504), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [756] = { - [sym_cell_path] = STATE(951), - [sym_path] = STATE(742), - [sym_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(743), - [anon_sym_export] = ACTIONS(741), - [anon_sym_alias] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_let_DASHenv] = ACTIONS(741), - [anon_sym_mut] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [sym_cmd_identifier] = ACTIONS(741), - [anon_sym_LF] = ACTIONS(743), - [anon_sym_def] = ACTIONS(741), - [anon_sym_def_DASHenv] = ACTIONS(741), - [anon_sym_export_DASHenv] = ACTIONS(741), - [anon_sym_extern] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_error] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_source] = ACTIONS(741), - [anon_sym_source_DASHenv] = ACTIONS(741), - [anon_sym_register] = ACTIONS(741), - [anon_sym_hide] = ACTIONS(741), - [anon_sym_hide_DASHenv] = ACTIONS(741), - [anon_sym_overlay] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_not] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [sym_val_nothing] = ACTIONS(741), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [aux_sym_val_number_token1] = ACTIONS(741), - [aux_sym_val_number_token2] = ACTIONS(741), - [aux_sym_val_number_token3] = ACTIONS(741), - [aux_sym_val_number_token4] = ACTIONS(741), - [aux_sym_val_number_token5] = ACTIONS(741), - [anon_sym_inf] = ACTIONS(741), - [anon_sym_DASHinf] = ACTIONS(741), - [anon_sym_NaN] = ACTIONS(741), - [anon_sym_0b] = ACTIONS(741), - [anon_sym_0o] = ACTIONS(741), - [anon_sym_0x] = ACTIONS(741), - [sym_val_date] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), + [499] = { + [sym__expression] = STATE(194), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(489), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(499), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [757] = { - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(1788), - [sym__value] = STATE(1788), - [sym_val_bool] = STATE(1822), - [sym_val_variable] = STATE(1822), - [sym__var] = STATE(1702), - [sym_val_number] = STATE(110), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1796), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1821), - [sym__inter_double_quotes] = STATE(1785), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__cmd_arg] = STATE(1810), - [sym_redirection] = STATE(1808), - [sym__flag] = STATE(1789), - [sym_long_flag] = STATE(1776), - [sym_unquoted] = STATE(1787), - [sym_comment] = STATE(757), - [aux_sym_command_repeat1] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_LF] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_DOT_DOT_LT] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), - [sym_val_nothing] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym_val_number_token1] = ACTIONS(1892), - [aux_sym_val_number_token2] = ACTIONS(1892), - [aux_sym_val_number_token3] = ACTIONS(1892), - [aux_sym_val_number_token4] = ACTIONS(1892), - [aux_sym_val_number_token5] = ACTIONS(1892), - [anon_sym_inf] = ACTIONS(1892), - [anon_sym_DASHinf] = ACTIONS(1892), - [anon_sym_NaN] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1898), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_err_GT] = ACTIONS(1910), - [anon_sym_out_GT] = ACTIONS(1910), - [anon_sym_e_GT] = ACTIONS(1910), - [anon_sym_o_GT] = ACTIONS(1910), - [anon_sym_err_PLUSout_GT] = ACTIONS(1910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1910), - [anon_sym_o_PLUSe_GT] = ACTIONS(1910), - [anon_sym_e_PLUSo_GT] = ACTIONS(1910), - [sym_short_flag] = ACTIONS(1913), - [aux_sym_unquoted_token1] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(3), - }, - [758] = { - [sym_comment] = STATE(758), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = 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_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), + [500] = { + [sym__expression] = STATE(194), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(491), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [759] = { - [sym_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_as] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [sym_short_flag] = ACTIONS(1559), + [501] = { + [sym__expression] = STATE(189), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(767), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [760] = { - [sym_comment] = STATE(760), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = 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_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), + [502] = { + [sym__expression] = STATE(194), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(479), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [761] = { - [sym_path] = STATE(879), - [sym_comment] = STATE(761), - [aux_sym_cell_path_repeat1] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_export] = ACTIONS(745), - [anon_sym_alias] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_let_DASHenv] = ACTIONS(745), - [anon_sym_mut] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LF] = ACTIONS(747), - [anon_sym_def] = ACTIONS(745), - [anon_sym_def_DASHenv] = ACTIONS(745), - [anon_sym_export_DASHenv] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_error] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_source] = ACTIONS(745), - [anon_sym_source_DASHenv] = ACTIONS(745), - [anon_sym_register] = ACTIONS(745), - [anon_sym_hide] = ACTIONS(745), - [anon_sym_hide_DASHenv] = ACTIONS(745), - [anon_sym_overlay] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(745), - [aux_sym_val_number_token4] = ACTIONS(745), - [aux_sym_val_number_token5] = ACTIONS(745), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(745), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [sym__str_single_quotes] = ACTIONS(745), - [sym__str_back_ticks] = ACTIONS(745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), + [503] = { + [sym__expression] = STATE(189), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(494), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(503), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [762] = { - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(1788), - [sym__value] = STATE(1788), - [sym_val_bool] = STATE(1822), - [sym_val_variable] = STATE(1822), - [sym__var] = STATE(1702), - [sym_val_number] = STATE(110), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1796), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1821), - [sym__inter_double_quotes] = STATE(1785), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__cmd_arg] = STATE(1810), - [sym_redirection] = STATE(1808), - [sym__flag] = STATE(1789), - [sym_long_flag] = STATE(1776), - [sym_unquoted] = STATE(1787), - [sym_comment] = STATE(762), - [aux_sym_command_repeat1] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_LF] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [sym_val_nothing] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_val_number_token1] = ACTIONS(1824), - [aux_sym_val_number_token2] = ACTIONS(1824), - [aux_sym_val_number_token3] = ACTIONS(1824), - [aux_sym_val_number_token4] = ACTIONS(1824), - [aux_sym_val_number_token5] = ACTIONS(1824), - [anon_sym_inf] = ACTIONS(1824), - [anon_sym_DASHinf] = ACTIONS(1824), - [anon_sym_NaN] = ACTIONS(1824), - [anon_sym_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [sym_short_flag] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1840), + [504] = { + [sym__expression] = STATE(189), + [sym_expr_unary] = STATE(275), + [sym_expr_binary] = STATE(275), + [sym_expr_parenthesized] = STATE(301), + [sym_val_range] = STATE(275), + [sym__value] = STATE(275), + [sym_val_bool] = STATE(334), + [sym_val_variable] = STATE(334), + [sym__var] = STATE(153), + [sym_val_number] = STATE(5), + [sym_val_duration] = STATE(334), + [sym_val_filesize] = STATE(334), + [sym_val_binary] = STATE(334), + [sym_val_string] = STATE(334), + [sym__str_double_quotes] = STATE(287), + [sym_val_interpolated] = STATE(334), + [sym__inter_single_quotes] = STATE(328), + [sym__inter_double_quotes] = STATE(327), + [sym_val_list] = STATE(334), + [sym_val_record] = STATE(334), + [sym_val_table] = STATE(334), + [sym_val_closure] = STATE(334), + [sym__flag] = STATE(493), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [763] = { - [sym__expression] = STATE(652), - [sym_expr_unary] = STATE(633), - [sym_expr_binary] = STATE(633), - [sym_expr_parenthesized] = STATE(636), - [sym_val_range] = STATE(633), - [sym__value] = STATE(633), - [sym_val_bool] = STATE(625), - [sym_val_variable] = STATE(625), - [sym__var] = STATE(484), - [sym_val_number] = STATE(12), - [sym_val_duration] = STATE(625), - [sym_val_filesize] = STATE(625), - [sym_val_binary] = STATE(625), - [sym_val_string] = STATE(625), - [sym__str_double_quotes] = STATE(623), - [sym_val_interpolated] = STATE(625), - [sym__inter_single_quotes] = STATE(618), - [sym__inter_double_quotes] = STATE(617), - [sym_val_list] = STATE(625), - [sym_val_record] = STATE(625), - [sym_val_table] = STATE(625), - [sym_val_closure] = STATE(625), - [sym_unquoted] = STATE(1799), - [sym_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_LF] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_not] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [sym_val_nothing] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [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), - [anon_sym_inf] = ACTIONS(1935), - [anon_sym_DASHinf] = ACTIONS(1935), - [anon_sym_NaN] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [sym_short_flag] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1840), + [505] = { + [sym_ctrl_do] = STATE(914), + [sym_ctrl_if] = STATE(914), + [sym_ctrl_match] = STATE(914), + [sym_ctrl_try] = STATE(914), + [sym__expression] = STATE(427), + [sym_expr_unary] = STATE(452), + [sym_expr_binary] = STATE(452), + [sym_expr_parenthesized] = STATE(451), + [sym_val_range] = STATE(452), + [sym__value] = STATE(452), + [sym_val_bool] = STATE(421), + [sym_val_variable] = STATE(421), + [sym__var] = STATE(224), + [sym_val_number] = STATE(8), + [sym_val_duration] = STATE(421), + [sym_val_filesize] = STATE(421), + [sym_val_binary] = STATE(421), + [sym_val_string] = STATE(421), + [sym__str_double_quotes] = STATE(423), + [sym_val_interpolated] = STATE(421), + [sym__inter_single_quotes] = STATE(424), + [sym__inter_double_quotes] = STATE(425), + [sym_val_list] = STATE(421), + [sym_val_record] = STATE(421), + [sym_val_table] = STATE(421), + [sym_val_closure] = STATE(421), + [sym_comment] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(1105), + [anon_sym_export] = ACTIONS(1103), + [anon_sym_alias] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1103), + [anon_sym_let_DASHenv] = ACTIONS(1103), + [anon_sym_mut] = ACTIONS(1103), + [anon_sym_const] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1103), + [sym_cmd_identifier] = ACTIONS(1103), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_def] = ACTIONS(1103), + [anon_sym_def_DASHenv] = ACTIONS(1103), + [anon_sym_export_DASHenv] = ACTIONS(1103), + [anon_sym_extern] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(1103), + [anon_sym_use] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_error] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_for] = ACTIONS(1103), + [anon_sym_loop] = ACTIONS(1103), + [anon_sym_while] = ACTIONS(1103), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_try] = ACTIONS(59), + [anon_sym_return] = ACTIONS(1103), + [anon_sym_source] = ACTIONS(1103), + [anon_sym_source_DASHenv] = ACTIONS(1103), + [anon_sym_register] = ACTIONS(1103), + [anon_sym_hide] = ACTIONS(1103), + [anon_sym_hide_DASHenv] = ACTIONS(1103), + [anon_sym_overlay] = ACTIONS(1103), + [anon_sym_where] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1151), + [anon_sym_DOT_DOT_LT] = ACTIONS(1153), + [anon_sym_DOT_DOT] = ACTIONS(1153), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1153), + [sym_val_nothing] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [aux_sym_val_number_token1] = ACTIONS(1159), + [aux_sym_val_number_token2] = ACTIONS(1159), + [aux_sym_val_number_token3] = ACTIONS(1159), + [aux_sym_val_number_token4] = ACTIONS(1159), + [aux_sym_val_number_token5] = ACTIONS(1159), + [anon_sym_inf] = ACTIONS(1159), + [anon_sym_DASHinf] = ACTIONS(1159), + [anon_sym_NaN] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1161), + [anon_sym_0o] = ACTIONS(1161), + [anon_sym_0x] = ACTIONS(1161), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1169), + [anon_sym_CARET] = ACTIONS(1103), [anon_sym_POUND] = ACTIONS(3), }, - [764] = { - [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(3), + [506] = { + [sym_pipeline] = STATE(1111), + [sym_pipeline_last] = STATE(3662), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(506), + [aux_sym_pipeline_repeat1] = STATE(566), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [765] = { - [sym_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1949), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [507] = { + [sym_cell_path] = STATE(630), + [sym_path] = STATE(515), + [sym_comment] = STATE(507), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_err_GT] = ACTIONS(740), + [anon_sym_out_GT] = ACTIONS(740), + [anon_sym_e_GT] = ACTIONS(740), + [anon_sym_o_GT] = ACTIONS(740), + [anon_sym_err_PLUSout_GT] = ACTIONS(740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(740), + [anon_sym_o_PLUSe_GT] = ACTIONS(740), + [anon_sym_e_PLUSo_GT] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), + [aux_sym_unquoted_token1] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [766] = { - [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(1951), - [anon_sym_alias] = ACTIONS(1951), - [anon_sym_let] = ACTIONS(1951), - [anon_sym_let_DASHenv] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [sym_cmd_identifier] = ACTIONS(1951), - [anon_sym_LF] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1951), - [anon_sym_def_DASHenv] = ACTIONS(1951), - [anon_sym_export_DASHenv] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym_module] = ACTIONS(1951), - [anon_sym_use] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_loop] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_source] = ACTIONS(1951), - [anon_sym_source_DASHenv] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_hide] = ACTIONS(1951), - [anon_sym_hide_DASHenv] = ACTIONS(1951), - [anon_sym_overlay] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_where] = ACTIONS(1951), - [anon_sym_not] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [sym_val_nothing] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym_val_number_token1] = ACTIONS(1951), - [aux_sym_val_number_token2] = ACTIONS(1951), - [aux_sym_val_number_token3] = ACTIONS(1951), - [aux_sym_val_number_token4] = ACTIONS(1951), - [aux_sym_val_number_token5] = ACTIONS(1951), - [anon_sym_inf] = ACTIONS(1951), - [anon_sym_DASHinf] = ACTIONS(1951), - [anon_sym_NaN] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1951), - [anon_sym_0o] = ACTIONS(1951), - [anon_sym_0x] = ACTIONS(1951), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), + [508] = { + [sym_cell_path] = STATE(620), + [sym_path] = STATE(515), + [sym_comment] = STATE(508), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_err_GT] = ACTIONS(744), + [anon_sym_out_GT] = ACTIONS(744), + [anon_sym_e_GT] = ACTIONS(744), + [anon_sym_o_GT] = ACTIONS(744), + [anon_sym_err_PLUSout_GT] = ACTIONS(744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(744), + [anon_sym_o_PLUSe_GT] = ACTIONS(744), + [anon_sym_e_PLUSo_GT] = ACTIONS(744), + [sym_short_flag] = ACTIONS(744), + [aux_sym_unquoted_token1] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [767] = { - [sym_comment] = STATE(767), - [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), - [anon_sym_SEMI] = ACTIONS(1955), - [sym_cmd_identifier] = ACTIONS(1955), - [anon_sym_LF] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_where] = ACTIONS(1955), - [anon_sym_not] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [sym_val_nothing] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1955), - [anon_sym_DASHinf] = ACTIONS(1955), - [anon_sym_NaN] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1955), - [anon_sym_0o] = ACTIONS(1955), - [anon_sym_0x] = ACTIONS(1955), - [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_CARET] = ACTIONS(1955), + [509] = { + [sym_cell_path] = STATE(623), + [sym_path] = STATE(515), + [sym_comment] = STATE(509), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_err_GT] = ACTIONS(730), + [anon_sym_out_GT] = ACTIONS(730), + [anon_sym_e_GT] = ACTIONS(730), + [anon_sym_o_GT] = ACTIONS(730), + [anon_sym_err_PLUSout_GT] = ACTIONS(730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(730), + [anon_sym_o_PLUSe_GT] = ACTIONS(730), + [anon_sym_e_PLUSo_GT] = ACTIONS(730), + [sym_short_flag] = ACTIONS(730), + [aux_sym_unquoted_token1] = ACTIONS(730), [anon_sym_POUND] = ACTIONS(3), }, - [768] = { - [sym_comment] = STATE(768), - [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), - [anon_sym_SEMI] = ACTIONS(1959), - [sym_cmd_identifier] = ACTIONS(1959), - [anon_sym_LF] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_where] = ACTIONS(1959), - [anon_sym_not] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [sym_val_nothing] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1959), - [anon_sym_DASHinf] = ACTIONS(1959), - [anon_sym_NaN] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = 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_CARET] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(3), + [510] = { + [sym_pipeline] = STATE(1105), + [sym_pipeline_last] = STATE(3810), + [sym__ctrl_expression] = STATE(3342), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(510), + [aux_sym_pipeline_repeat1] = STATE(565), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), }, - [769] = { - [sym_comment] = STATE(769), - [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), - [anon_sym_SEMI] = ACTIONS(1963), - [sym_cmd_identifier] = ACTIONS(1963), - [anon_sym_LF] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_where] = ACTIONS(1963), - [anon_sym_not] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [sym_val_nothing] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1963), - [anon_sym_DASHinf] = ACTIONS(1963), - [anon_sym_NaN] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [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_CARET] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [511] = { + [sym_pipeline_parenthesized] = STATE(1126), + [sym_pipeline_parenthesized_last] = STATE(3861), + [sym__ctrl_expression] = STATE(3346), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(511), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [770] = { - [sym_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_alias] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_let_DASHenv] = ACTIONS(1852), - [anon_sym_mut] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [sym_cmd_identifier] = ACTIONS(1852), - [anon_sym_LF] = ACTIONS(1854), - [anon_sym_def] = ACTIONS(1852), - [anon_sym_def_DASHenv] = ACTIONS(1852), - [anon_sym_export_DASHenv] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_DOLLAR] = ACTIONS(1852), - [anon_sym_error] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_do] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_source] = ACTIONS(1852), - [anon_sym_source_DASHenv] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_hide] = ACTIONS(1852), - [anon_sym_hide_DASHenv] = ACTIONS(1852), - [anon_sym_overlay] = ACTIONS(1852), - [anon_sym_where] = ACTIONS(1852), - [anon_sym_not] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT] = ACTIONS(1852), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1852), - [sym_val_nothing] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [aux_sym_val_number_token1] = ACTIONS(1852), - [aux_sym_val_number_token2] = ACTIONS(1852), - [aux_sym_val_number_token3] = ACTIONS(1852), - [aux_sym_val_number_token4] = ACTIONS(1852), - [aux_sym_val_number_token5] = ACTIONS(1852), - [anon_sym_inf] = ACTIONS(1852), - [anon_sym_DASHinf] = ACTIONS(1852), - [anon_sym_NaN] = ACTIONS(1852), - [anon_sym_0b] = ACTIONS(1852), - [anon_sym_0o] = ACTIONS(1852), - [anon_sym_0x] = ACTIONS(1852), - [sym_val_date] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym__str_single_quotes] = ACTIONS(1852), - [sym__str_back_ticks] = ACTIONS(1852), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(3), + [512] = { + [sym_pipeline_parenthesized] = STATE(1123), + [sym_pipeline_parenthesized_last] = STATE(3859), + [sym__ctrl_expression] = STATE(3346), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(512), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [771] = { - [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), - [sym_cmd_identifier] = ACTIONS(1969), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_def_DASHenv] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_where] = ACTIONS(1969), - [anon_sym_not] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT] = ACTIONS(1969), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), - [sym_val_nothing] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1969), - [anon_sym_DASHinf] = ACTIONS(1969), - [anon_sym_NaN] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [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_CARET] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), + [513] = { + [sym_pipeline] = STATE(1110), + [sym_pipeline_last] = STATE(3661), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(513), + [aux_sym_pipeline_repeat1] = STATE(566), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [772] = { - [sym_block] = STATE(892), - [sym_comment] = STATE(772), - [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), - [anon_sym_SEMI] = ACTIONS(1973), - [sym_cmd_identifier] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_where] = ACTIONS(1973), - [anon_sym_not] = ACTIONS(1973), - [anon_sym_DOT_DOT_LT] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [sym_val_nothing] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1973), - [anon_sym_DASHinf] = ACTIONS(1973), - [anon_sym_NaN] = ACTIONS(1973), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = 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_CARET] = ACTIONS(1973), + [514] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(515), + [sym_comment] = STATE(514), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_err_GT] = ACTIONS(748), + [anon_sym_out_GT] = ACTIONS(748), + [anon_sym_e_GT] = ACTIONS(748), + [anon_sym_o_GT] = ACTIONS(748), + [anon_sym_err_PLUSout_GT] = ACTIONS(748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(748), + [anon_sym_o_PLUSe_GT] = ACTIONS(748), + [anon_sym_e_PLUSo_GT] = ACTIONS(748), + [sym_short_flag] = ACTIONS(748), + [aux_sym_unquoted_token1] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, - [773] = { - [sym_comment] = STATE(773), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [sym_cmd_identifier] = ACTIONS(1505), - [anon_sym_LF] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_def_DASHenv] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(1505), - [anon_sym_DOT_DOT_LT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [sym_val_nothing] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym_val_number_token1] = ACTIONS(1505), - [aux_sym_val_number_token2] = ACTIONS(1505), - [aux_sym_val_number_token3] = ACTIONS(1505), - [aux_sym_val_number_token4] = ACTIONS(1505), - [aux_sym_val_number_token5] = ACTIONS(1505), - [anon_sym_inf] = ACTIONS(1505), - [anon_sym_DASHinf] = ACTIONS(1505), - [anon_sym_NaN] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), + [515] = { + [sym_path] = STATE(563), + [sym_comment] = STATE(515), + [aux_sym_cell_path_repeat1] = STATE(516), + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_err_GT] = ACTIONS(756), + [anon_sym_out_GT] = ACTIONS(756), + [anon_sym_e_GT] = ACTIONS(756), + [anon_sym_o_GT] = ACTIONS(756), + [anon_sym_err_PLUSout_GT] = ACTIONS(756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(756), + [anon_sym_o_PLUSe_GT] = ACTIONS(756), + [anon_sym_e_PLUSo_GT] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), + [aux_sym_unquoted_token1] = ACTIONS(756), [anon_sym_POUND] = ACTIONS(3), }, - [774] = { - [sym_block] = STATE(891), - [sym_comment] = STATE(774), - [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), - [anon_sym_SEMI] = ACTIONS(1973), - [sym_cmd_identifier] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_where] = ACTIONS(1973), - [anon_sym_not] = ACTIONS(1973), - [anon_sym_DOT_DOT_LT] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [sym_val_nothing] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1973), - [anon_sym_DASHinf] = ACTIONS(1973), - [anon_sym_NaN] = ACTIONS(1973), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = 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_CARET] = ACTIONS(1973), + [516] = { + [sym_path] = STATE(563), + [sym_comment] = STATE(516), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_err_GT] = ACTIONS(752), + [anon_sym_out_GT] = ACTIONS(752), + [anon_sym_e_GT] = ACTIONS(752), + [anon_sym_o_GT] = ACTIONS(752), + [anon_sym_err_PLUSout_GT] = ACTIONS(752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(752), + [anon_sym_o_PLUSe_GT] = ACTIONS(752), + [anon_sym_e_PLUSo_GT] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [aux_sym_unquoted_token1] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [775] = { - [sym_comment] = STATE(775), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [sym_cmd_identifier] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_def_DASHenv] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1979), - [anon_sym_not] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [sym_val_nothing] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1979), - [anon_sym_DASHinf] = ACTIONS(1979), - [anon_sym_NaN] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [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_CARET] = ACTIONS(1979), - [anon_sym_POUND] = ACTIONS(3), + [517] = { + [sym_pipeline] = STATE(1119), + [sym_pipeline_last] = STATE(3592), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(517), + [aux_sym_pipeline_repeat1] = STATE(566), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [776] = { - [sym_comment] = STATE(776), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(3), + [518] = { + [sym_pipeline] = STATE(1105), + [sym_pipeline_last] = STATE(3590), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3323), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(518), + [aux_sym_pipeline_repeat1] = STATE(566), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [777] = { - [sym_comment] = STATE(777), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_cmd_identifier] = ACTIONS(1983), - [anon_sym_LF] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_def_DASHenv] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [sym_val_nothing] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = 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(1983), - [aux_sym_val_number_token5] = ACTIONS(1983), - [anon_sym_inf] = ACTIONS(1983), - [anon_sym_DASHinf] = ACTIONS(1983), - [anon_sym_NaN] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1983), - [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_CARET] = ACTIONS(1983), + [519] = { + [sym_cell_path] = STATE(639), + [sym_path] = STATE(515), + [sym_comment] = STATE(519), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_err_GT] = ACTIONS(736), + [anon_sym_out_GT] = ACTIONS(736), + [anon_sym_e_GT] = ACTIONS(736), + [anon_sym_o_GT] = ACTIONS(736), + [anon_sym_err_PLUSout_GT] = ACTIONS(736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(736), + [anon_sym_o_PLUSe_GT] = ACTIONS(736), + [anon_sym_e_PLUSo_GT] = ACTIONS(736), + [sym_short_flag] = ACTIONS(736), + [aux_sym_unquoted_token1] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [778] = { - [sym_comment] = STATE(778), - [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), - [anon_sym_SEMI] = ACTIONS(1987), - [sym_cmd_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1987), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_do] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_source] = ACTIONS(1987), - [anon_sym_source_DASHenv] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_hide_DASHenv] = ACTIONS(1987), - [anon_sym_overlay] = ACTIONS(1987), - [anon_sym_where] = ACTIONS(1987), - [anon_sym_not] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [sym_val_nothing] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1987), - [anon_sym_DASHinf] = ACTIONS(1987), - [anon_sym_NaN] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1987), - [anon_sym_0o] = ACTIONS(1987), - [anon_sym_0x] = ACTIONS(1987), - [sym_val_date] = 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_CARET] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(3), + [520] = { + [sym_pipeline] = STATE(1110), + [sym_pipeline_last] = STATE(3855), + [sym__ctrl_expression] = STATE(3342), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(520), + [aux_sym_pipeline_repeat1] = STATE(565), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), }, - [779] = { - [sym_comment] = STATE(779), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_POUND] = ACTIONS(3), + [521] = { + [sym_pipeline] = STATE(1111), + [sym_pipeline_last] = STATE(3853), + [sym__ctrl_expression] = STATE(3342), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(521), + [aux_sym_pipeline_repeat1] = STATE(565), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), }, - [780] = { - [sym_comment] = STATE(780), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(3), + [522] = { + [sym_pipeline_parenthesized] = STATE(1113), + [sym_pipeline_parenthesized_last] = STATE(3830), + [sym__ctrl_expression] = STATE(3346), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(522), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [781] = { - [sym_comment] = STATE(781), - [ts_builtin_sym_end] = ACTIONS(1717), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = 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_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), + [523] = { + [sym_path] = STATE(563), + [sym_comment] = STATE(523), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_in] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_STAR_STAR] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_mod] = ACTIONS(723), + [anon_sym_SLASH_SLASH] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_bit_DASHshl] = ACTIONS(723), + [anon_sym_bit_DASHshr] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT2] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_not_DASHin] = ACTIONS(723), + [anon_sym_starts_DASHwith] = ACTIONS(723), + [anon_sym_ends_DASHwith] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_BANG_TILDE] = ACTIONS(723), + [anon_sym_bit_DASHand] = ACTIONS(723), + [anon_sym_bit_DASHxor] = ACTIONS(723), + [anon_sym_bit_DASHor] = ACTIONS(723), + [anon_sym_and] = ACTIONS(723), + [anon_sym_xor] = ACTIONS(723), + [anon_sym_or] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_err_GT] = ACTIONS(723), + [anon_sym_out_GT] = ACTIONS(723), + [anon_sym_e_GT] = ACTIONS(723), + [anon_sym_o_GT] = ACTIONS(723), + [anon_sym_err_PLUSout_GT] = ACTIONS(723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(723), + [anon_sym_o_PLUSe_GT] = ACTIONS(723), + [anon_sym_e_PLUSo_GT] = ACTIONS(723), + [sym_short_flag] = ACTIONS(723), + [aux_sym_unquoted_token1] = ACTIONS(723), [anon_sym_POUND] = ACTIONS(3), }, - [782] = { - [sym_comment] = STATE(782), - [aux_sym_pipe_element_repeat1] = STATE(1777), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(3), + [524] = { + [sym_pipeline_parenthesized] = STATE(1116), + [sym_pipeline_parenthesized_last] = STATE(3822), + [sym__ctrl_expression] = STATE(3346), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3790), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(524), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(555), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [783] = { - [sym_comment] = STATE(783), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [sym_cmd_identifier] = ACTIONS(1991), - [anon_sym_LF] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_def_DASHenv] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(1991), - [anon_sym_not] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [sym_val_nothing] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = 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(1991), - [aux_sym_val_number_token5] = ACTIONS(1991), - [anon_sym_inf] = ACTIONS(1991), - [anon_sym_DASHinf] = ACTIONS(1991), - [anon_sym_NaN] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1991), - [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_CARET] = ACTIONS(1991), + [525] = { + [sym_cell_path] = STATE(570), + [sym_path] = STATE(515), + [sym_comment] = STATE(525), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_in] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_mod] = ACTIONS(764), + [anon_sym_SLASH_SLASH] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_bit_DASHshl] = ACTIONS(764), + [anon_sym_bit_DASHshr] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT2] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_not_DASHin] = ACTIONS(764), + [anon_sym_starts_DASHwith] = ACTIONS(764), + [anon_sym_ends_DASHwith] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(764), + [anon_sym_BANG_TILDE] = ACTIONS(764), + [anon_sym_bit_DASHand] = ACTIONS(764), + [anon_sym_bit_DASHxor] = ACTIONS(764), + [anon_sym_bit_DASHor] = ACTIONS(764), + [anon_sym_and] = ACTIONS(764), + [anon_sym_xor] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_err_GT] = ACTIONS(764), + [anon_sym_out_GT] = ACTIONS(764), + [anon_sym_e_GT] = ACTIONS(764), + [anon_sym_o_GT] = ACTIONS(764), + [anon_sym_err_PLUSout_GT] = ACTIONS(764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(764), + [anon_sym_o_PLUSe_GT] = ACTIONS(764), + [anon_sym_e_PLUSo_GT] = ACTIONS(764), + [sym_short_flag] = ACTIONS(764), + [aux_sym_unquoted_token1] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, - [784] = { - [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1864), - [anon_sym_export] = ACTIONS(1862), - [anon_sym_alias] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_let_DASHenv] = ACTIONS(1862), - [anon_sym_mut] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [sym_cmd_identifier] = ACTIONS(1862), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_def] = ACTIONS(1862), - [anon_sym_def_DASHenv] = ACTIONS(1862), - [anon_sym_export_DASHenv] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_module] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1862), - [anon_sym_error] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_try] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_source] = ACTIONS(1862), - [anon_sym_source_DASHenv] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_hide] = ACTIONS(1862), - [anon_sym_hide_DASHenv] = ACTIONS(1862), - [anon_sym_overlay] = ACTIONS(1862), - [anon_sym_where] = ACTIONS(1862), - [anon_sym_not] = ACTIONS(1862), - [anon_sym_DOT_DOT_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), - [sym_val_nothing] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [aux_sym_val_number_token1] = ACTIONS(1862), - [aux_sym_val_number_token2] = ACTIONS(1862), - [aux_sym_val_number_token3] = ACTIONS(1862), - [aux_sym_val_number_token4] = ACTIONS(1862), - [aux_sym_val_number_token5] = ACTIONS(1862), - [anon_sym_inf] = ACTIONS(1862), - [anon_sym_DASHinf] = ACTIONS(1862), - [anon_sym_NaN] = ACTIONS(1862), - [anon_sym_0b] = ACTIONS(1862), - [anon_sym_0o] = ACTIONS(1862), - [anon_sym_0x] = ACTIONS(1862), - [sym_val_date] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [sym__str_single_quotes] = ACTIONS(1862), - [sym__str_back_ticks] = ACTIONS(1862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), - [anon_sym_CARET] = ACTIONS(1862), + [526] = { + [sym_cell_path] = STATE(602), + [sym_path] = STATE(515), + [sym_comment] = STATE(526), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_err_GT] = ACTIONS(760), + [anon_sym_out_GT] = ACTIONS(760), + [anon_sym_e_GT] = ACTIONS(760), + [anon_sym_o_GT] = ACTIONS(760), + [anon_sym_err_PLUSout_GT] = ACTIONS(760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(760), + [anon_sym_o_PLUSe_GT] = ACTIONS(760), + [anon_sym_e_PLUSo_GT] = ACTIONS(760), + [sym_short_flag] = ACTIONS(760), + [aux_sym_unquoted_token1] = ACTIONS(760), [anon_sym_POUND] = ACTIONS(3), }, - [785] = { - [sym_comment] = STATE(785), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(3), - }, - [786] = { - [sym_comment] = STATE(786), - [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), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_cmd_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_not] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT] = ACTIONS(1997), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [sym_val_nothing] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1997), - [anon_sym_DASHinf] = ACTIONS(1997), - [anon_sym_NaN] = ACTIONS(1997), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = 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_CARET] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(3), - }, - [787] = { - [sym_comment] = STATE(787), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(3), - }, - [788] = { - [sym_comment] = STATE(788), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - }, - [789] = { - [sym_comment] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - }, - [790] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1820), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(790), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), - }, - [791] = { - [sym_comment] = STATE(791), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [anon_sym_POUND] = ACTIONS(3), - }, - [792] = { - [sym_comment] = STATE(792), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), + [527] = { + [sym_pipeline] = STATE(1119), + [sym_pipeline_last] = STATE(3821), + [sym__ctrl_expression] = STATE(3342), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3589), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(527), + [aux_sym_pipeline_repeat1] = STATE(565), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), }, - [793] = { - [sym_comment] = STATE(793), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), + [528] = { + [sym_cell_path] = STATE(605), + [sym_path] = STATE(515), + [sym_comment] = STATE(528), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_in] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_mod] = ACTIONS(768), + [anon_sym_SLASH_SLASH] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_bit_DASHshl] = ACTIONS(768), + [anon_sym_bit_DASHshr] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT2] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_not_DASHin] = ACTIONS(768), + [anon_sym_starts_DASHwith] = ACTIONS(768), + [anon_sym_ends_DASHwith] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(768), + [anon_sym_BANG_TILDE] = ACTIONS(768), + [anon_sym_bit_DASHand] = ACTIONS(768), + [anon_sym_bit_DASHxor] = ACTIONS(768), + [anon_sym_bit_DASHor] = ACTIONS(768), + [anon_sym_and] = ACTIONS(768), + [anon_sym_xor] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_err_GT] = ACTIONS(768), + [anon_sym_out_GT] = ACTIONS(768), + [anon_sym_e_GT] = ACTIONS(768), + [anon_sym_o_GT] = ACTIONS(768), + [anon_sym_err_PLUSout_GT] = ACTIONS(768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(768), + [anon_sym_o_PLUSe_GT] = ACTIONS(768), + [anon_sym_e_PLUSo_GT] = ACTIONS(768), + [sym_short_flag] = ACTIONS(768), + [aux_sym_unquoted_token1] = ACTIONS(768), [anon_sym_POUND] = ACTIONS(3), }, - [794] = { - [sym_comment] = STATE(794), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [529] = { + [sym_cell_path] = STATE(660), + [sym_path] = STATE(532), + [sym_comment] = STATE(529), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_mod] = ACTIONS(760), + [anon_sym_SLASH_SLASH] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_bit_DASHshl] = ACTIONS(760), + [anon_sym_bit_DASHshr] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_LT2] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_not_DASHin] = ACTIONS(760), + [anon_sym_starts_DASHwith] = ACTIONS(760), + [anon_sym_ends_DASHwith] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(760), + [anon_sym_BANG_TILDE] = ACTIONS(760), + [anon_sym_bit_DASHand] = ACTIONS(760), + [anon_sym_bit_DASHxor] = ACTIONS(760), + [anon_sym_bit_DASHor] = ACTIONS(760), + [anon_sym_and] = ACTIONS(760), + [anon_sym_xor] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_err_GT] = ACTIONS(760), + [anon_sym_out_GT] = ACTIONS(760), + [anon_sym_e_GT] = ACTIONS(760), + [anon_sym_o_GT] = ACTIONS(760), + [anon_sym_err_PLUSout_GT] = ACTIONS(760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(760), + [anon_sym_o_PLUSe_GT] = ACTIONS(760), + [anon_sym_e_PLUSo_GT] = ACTIONS(760), + [sym_short_flag] = ACTIONS(760), + [aux_sym_unquoted_token1] = ACTIONS(760), [anon_sym_POUND] = ACTIONS(3), }, - [795] = { - [sym_comment] = STATE(795), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_def_DASHenv] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [sym_val_nothing] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym_val_number_token1] = ACTIONS(1065), - [aux_sym_val_number_token2] = ACTIONS(1065), - [aux_sym_val_number_token3] = ACTIONS(1065), - [aux_sym_val_number_token4] = ACTIONS(1065), - [aux_sym_val_number_token5] = ACTIONS(1065), - [anon_sym_inf] = ACTIONS(1065), - [anon_sym_DASHinf] = ACTIONS(1065), - [anon_sym_NaN] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(3), + [530] = { + [sym_pipeline_parenthesized] = STATE(1116), + [sym__ctrl_expression] = STATE(3666), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(4045), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), + [sym_comment] = STATE(530), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(554), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [796] = { - [sym_comment] = STATE(796), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_alias] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_let_DASHenv] = ACTIONS(1567), - [anon_sym_mut] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [sym_cmd_identifier] = ACTIONS(1567), - [anon_sym_LF] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1567), - [anon_sym_def_DASHenv] = ACTIONS(1567), - [anon_sym_export_DASHenv] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_source] = ACTIONS(1567), - [anon_sym_source_DASHenv] = ACTIONS(1567), - [anon_sym_register] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_hide_DASHenv] = ACTIONS(1567), - [anon_sym_overlay] = ACTIONS(1567), - [anon_sym_where] = ACTIONS(1567), - [anon_sym_not] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), - [sym_val_nothing] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [aux_sym_val_number_token1] = ACTIONS(1567), - [aux_sym_val_number_token2] = ACTIONS(1567), - [aux_sym_val_number_token3] = ACTIONS(1567), - [aux_sym_val_number_token4] = ACTIONS(1567), - [aux_sym_val_number_token5] = ACTIONS(1567), - [anon_sym_inf] = ACTIONS(1567), - [anon_sym_DASHinf] = ACTIONS(1567), - [anon_sym_NaN] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1567), - [anon_sym_0x] = ACTIONS(1567), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), + [531] = { + [sym_pipeline] = STATE(1111), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3776), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(531), + [aux_sym_pipeline_repeat1] = STATE(568), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [797] = { - [sym_comment] = STATE(797), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), + [532] = { + [sym_path] = STATE(611), + [sym_comment] = STATE(532), + [aux_sym_cell_path_repeat1] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(756), + [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_err_GT] = ACTIONS(756), + [anon_sym_out_GT] = ACTIONS(756), + [anon_sym_e_GT] = ACTIONS(756), + [anon_sym_o_GT] = ACTIONS(756), + [anon_sym_err_PLUSout_GT] = ACTIONS(756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(756), + [anon_sym_o_PLUSe_GT] = ACTIONS(756), + [anon_sym_e_PLUSo_GT] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), + [aux_sym_unquoted_token1] = ACTIONS(756), [anon_sym_POUND] = ACTIONS(3), }, - [798] = { - [sym_block] = STATE(908), - [sym_comment] = STATE(798), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(3), + [533] = { + [sym_pipeline] = STATE(1110), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3776), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(533), + [aux_sym_pipeline_repeat1] = STATE(568), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [799] = { - [sym_block] = STATE(909), - [sym_comment] = STATE(799), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), + [534] = { + [sym_cell_path] = STATE(699), + [sym_path] = STATE(532), + [sym_comment] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(730), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_in] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_bit_DASHshl] = ACTIONS(730), + [anon_sym_bit_DASHshr] = ACTIONS(730), + [anon_sym_EQ_EQ] = ACTIONS(730), + [anon_sym_BANG_EQ] = ACTIONS(730), + [anon_sym_LT2] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(730), + [anon_sym_not_DASHin] = ACTIONS(730), + [anon_sym_starts_DASHwith] = ACTIONS(730), + [anon_sym_ends_DASHwith] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(730), + [anon_sym_BANG_TILDE] = ACTIONS(730), + [anon_sym_bit_DASHand] = ACTIONS(730), + [anon_sym_bit_DASHxor] = ACTIONS(730), + [anon_sym_bit_DASHor] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_xor] = ACTIONS(730), + [anon_sym_or] = ACTIONS(730), + [anon_sym_DOT_DOT_LT] = ACTIONS(730), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(730), + [sym_val_nothing] = ACTIONS(730), + [anon_sym_true] = ACTIONS(730), + [anon_sym_false] = ACTIONS(730), + [aux_sym_val_number_token1] = ACTIONS(730), + [aux_sym_val_number_token2] = ACTIONS(730), + [aux_sym_val_number_token3] = ACTIONS(730), + [aux_sym_val_number_token4] = ACTIONS(730), + [aux_sym_val_number_token5] = ACTIONS(730), + [anon_sym_inf] = ACTIONS(730), + [anon_sym_DASHinf] = ACTIONS(730), + [anon_sym_NaN] = ACTIONS(730), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(730), + [anon_sym_0x] = ACTIONS(730), + [sym_val_date] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [sym__str_single_quotes] = ACTIONS(730), + [sym__str_back_ticks] = ACTIONS(730), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_err_GT] = ACTIONS(730), + [anon_sym_out_GT] = ACTIONS(730), + [anon_sym_e_GT] = ACTIONS(730), + [anon_sym_o_GT] = ACTIONS(730), + [anon_sym_err_PLUSout_GT] = ACTIONS(730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(730), + [anon_sym_o_PLUSe_GT] = ACTIONS(730), + [anon_sym_e_PLUSo_GT] = ACTIONS(730), + [sym_short_flag] = ACTIONS(730), + [aux_sym_unquoted_token1] = ACTIONS(730), [anon_sym_POUND] = ACTIONS(3), }, - [800] = { - [sym_comment] = STATE(800), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), + [535] = { + [sym_cell_path] = STATE(737), + [sym_path] = STATE(532), + [sym_comment] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_in] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_mod] = ACTIONS(764), + [anon_sym_SLASH_SLASH] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_bit_DASHshl] = ACTIONS(764), + [anon_sym_bit_DASHshr] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT2] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_not_DASHin] = ACTIONS(764), + [anon_sym_starts_DASHwith] = ACTIONS(764), + [anon_sym_ends_DASHwith] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(764), + [anon_sym_BANG_TILDE] = ACTIONS(764), + [anon_sym_bit_DASHand] = ACTIONS(764), + [anon_sym_bit_DASHxor] = ACTIONS(764), + [anon_sym_bit_DASHor] = ACTIONS(764), + [anon_sym_and] = ACTIONS(764), + [anon_sym_xor] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_err_GT] = ACTIONS(764), + [anon_sym_out_GT] = ACTIONS(764), + [anon_sym_e_GT] = ACTIONS(764), + [anon_sym_o_GT] = ACTIONS(764), + [anon_sym_err_PLUSout_GT] = ACTIONS(764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(764), + [anon_sym_o_PLUSe_GT] = ACTIONS(764), + [anon_sym_e_PLUSo_GT] = ACTIONS(764), + [sym_short_flag] = ACTIONS(764), + [aux_sym_unquoted_token1] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, - [801] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1820), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(801), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(3), + [536] = { + [sym_pipeline_parenthesized] = STATE(1126), + [sym__ctrl_expression] = STATE(3666), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(4045), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), + [sym_comment] = STATE(536), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(554), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [802] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1820), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(802), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), + [537] = { + [sym_comment] = STATE(537), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1198), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_err_GT] = ACTIONS(772), + [anon_sym_out_GT] = ACTIONS(772), + [anon_sym_e_GT] = ACTIONS(772), + [anon_sym_o_GT] = ACTIONS(772), + [anon_sym_err_PLUSout_GT] = ACTIONS(772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(772), + [anon_sym_o_PLUSe_GT] = ACTIONS(772), + [anon_sym_e_PLUSo_GT] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [aux_sym_unquoted_token1] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [803] = { - [sym_comment] = STATE(803), - [aux_sym_pipe_element_repeat1] = STATE(1818), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(3), + [538] = { + [sym_pipeline_parenthesized] = STATE(1123), + [sym__ctrl_expression] = STATE(3666), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(4045), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), + [sym_comment] = STATE(538), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(554), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [804] = { - [sym_expr_parenthesized] = STATE(1752), - [sym_val_range] = STATE(1732), - [sym__value] = STATE(1732), - [sym_val_bool] = STATE(1761), - [sym_val_variable] = STATE(1761), - [sym__var] = STATE(1693), - [sym_val_number] = STATE(108), - [sym_val_duration] = STATE(1761), - [sym_val_filesize] = STATE(1761), - [sym_val_binary] = STATE(1761), - [sym_val_string] = STATE(1761), - [sym__str_double_quotes] = STATE(1756), - [sym_val_interpolated] = STATE(1761), - [sym__inter_single_quotes] = STATE(1751), - [sym__inter_double_quotes] = STATE(1730), - [sym_val_list] = STATE(1761), - [sym_val_record] = STATE(1761), - [sym_val_table] = STATE(1761), - [sym_val_closure] = STATE(1761), - [sym__cmd_arg] = STATE(1820), - [sym_redirection] = STATE(1747), - [sym__flag] = STATE(1763), - [sym_long_flag] = STATE(1754), - [sym_unquoted] = STATE(1739), - [sym_comment] = STATE(804), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [sym_val_nothing] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [aux_sym_val_number_token1] = ACTIONS(1595), - [aux_sym_val_number_token2] = ACTIONS(1595), - [aux_sym_val_number_token3] = ACTIONS(1595), - [aux_sym_val_number_token4] = ACTIONS(1595), - [aux_sym_val_number_token5] = ACTIONS(1595), - [anon_sym_inf] = ACTIONS(1595), - [anon_sym_DASHinf] = ACTIONS(1595), - [anon_sym_NaN] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1597), - [anon_sym_0x] = ACTIONS(1597), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1601), - [sym__str_back_ticks] = ACTIONS(1601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1605), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [sym_short_flag] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1611), + [539] = { + [sym_cell_path] = STATE(700), + [sym_path] = STATE(532), + [sym_comment] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(770), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_in] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_mod] = ACTIONS(768), + [anon_sym_SLASH_SLASH] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_bit_DASHshl] = ACTIONS(768), + [anon_sym_bit_DASHshr] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT2] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_not_DASHin] = ACTIONS(768), + [anon_sym_starts_DASHwith] = ACTIONS(768), + [anon_sym_ends_DASHwith] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(768), + [anon_sym_BANG_TILDE] = ACTIONS(768), + [anon_sym_bit_DASHand] = ACTIONS(768), + [anon_sym_bit_DASHxor] = ACTIONS(768), + [anon_sym_bit_DASHor] = ACTIONS(768), + [anon_sym_and] = ACTIONS(768), + [anon_sym_xor] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_err_GT] = ACTIONS(768), + [anon_sym_out_GT] = ACTIONS(768), + [anon_sym_e_GT] = ACTIONS(768), + [anon_sym_o_GT] = ACTIONS(768), + [anon_sym_err_PLUSout_GT] = ACTIONS(768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(768), + [anon_sym_o_PLUSe_GT] = ACTIONS(768), + [anon_sym_e_PLUSo_GT] = ACTIONS(768), + [sym_short_flag] = ACTIONS(768), + [aux_sym_unquoted_token1] = ACTIONS(768), [anon_sym_POUND] = ACTIONS(3), }, - [805] = { - [sym_comment] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_export] = ACTIONS(836), - [anon_sym_alias] = ACTIONS(836), - [anon_sym_let] = ACTIONS(836), - [anon_sym_let_DASHenv] = ACTIONS(836), - [anon_sym_mut] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [sym_cmd_identifier] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(838), - [anon_sym_def] = ACTIONS(836), - [anon_sym_def_DASHenv] = ACTIONS(836), - [anon_sym_export_DASHenv] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_module] = ACTIONS(836), - [anon_sym_use] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [anon_sym_error] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_try] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_source] = ACTIONS(836), - [anon_sym_source_DASHenv] = ACTIONS(836), - [anon_sym_register] = ACTIONS(836), - [anon_sym_hide] = ACTIONS(836), - [anon_sym_hide_DASHenv] = ACTIONS(836), - [anon_sym_overlay] = ACTIONS(836), - [anon_sym_where] = ACTIONS(836), - [anon_sym_QMARK2] = ACTIONS(1949), - [anon_sym_not] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [sym_val_nothing] = ACTIONS(836), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_val_number_token1] = ACTIONS(836), - [aux_sym_val_number_token2] = ACTIONS(836), - [aux_sym_val_number_token3] = ACTIONS(836), - [aux_sym_val_number_token4] = ACTIONS(836), - [aux_sym_val_number_token5] = ACTIONS(836), - [anon_sym_inf] = ACTIONS(836), - [anon_sym_DASHinf] = ACTIONS(836), - [anon_sym_NaN] = ACTIONS(836), - [anon_sym_0b] = ACTIONS(836), - [anon_sym_0o] = ACTIONS(836), - [anon_sym_0x] = ACTIONS(836), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [sym__str_single_quotes] = ACTIONS(836), - [sym__str_back_ticks] = ACTIONS(836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), + [540] = { + [sym_cell_path] = STATE(698), + [sym_path] = STATE(532), + [sym_comment] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_err_GT] = ACTIONS(740), + [anon_sym_out_GT] = ACTIONS(740), + [anon_sym_e_GT] = ACTIONS(740), + [anon_sym_o_GT] = ACTIONS(740), + [anon_sym_err_PLUSout_GT] = ACTIONS(740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(740), + [anon_sym_o_PLUSe_GT] = ACTIONS(740), + [anon_sym_e_PLUSo_GT] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), + [aux_sym_unquoted_token1] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [806] = { - [sym_comment] = STATE(806), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [sym_cmd_identifier] = ACTIONS(2021), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_def_DASHenv] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_where] = ACTIONS(2021), - [anon_sym_not] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT] = ACTIONS(2021), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2021), - [sym_val_nothing] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [aux_sym_val_number_token1] = ACTIONS(2021), - [aux_sym_val_number_token2] = ACTIONS(2021), - [aux_sym_val_number_token3] = ACTIONS(2021), - [aux_sym_val_number_token4] = ACTIONS(2021), - [aux_sym_val_number_token5] = ACTIONS(2021), - [anon_sym_inf] = ACTIONS(2021), - [anon_sym_DASHinf] = ACTIONS(2021), - [anon_sym_NaN] = ACTIONS(2021), - [anon_sym_0b] = ACTIONS(2021), - [anon_sym_0o] = ACTIONS(2021), - [anon_sym_0x] = ACTIONS(2021), - [sym_val_date] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(3), + [541] = { + [sym_pipeline] = STATE(1119), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3776), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(541), + [aux_sym_pipeline_repeat1] = STATE(568), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [807] = { - [sym_comment] = STATE(807), - [anon_sym_export] = ACTIONS(850), - [anon_sym_alias] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_let_DASHenv] = ACTIONS(850), - [anon_sym_mut] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(850), - [sym_cmd_identifier] = ACTIONS(850), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_def] = ACTIONS(850), - [anon_sym_def_DASHenv] = ACTIONS(850), - [anon_sym_export_DASHenv] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_do] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_register] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(850), - [anon_sym_hide_DASHenv] = ACTIONS(850), - [anon_sym_overlay] = ACTIONS(850), - [anon_sym_where] = ACTIONS(850), - [anon_sym_not] = ACTIONS(850), - [anon_sym_DOT_DOT_LT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [sym_val_nothing] = ACTIONS(850), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [aux_sym_val_number_token1] = ACTIONS(850), - [aux_sym_val_number_token2] = ACTIONS(850), - [aux_sym_val_number_token3] = ACTIONS(850), - [aux_sym_val_number_token4] = ACTIONS(850), - [aux_sym_val_number_token5] = ACTIONS(850), - [anon_sym_inf] = ACTIONS(850), - [anon_sym_DASHinf] = ACTIONS(850), - [anon_sym_NaN] = ACTIONS(850), - [anon_sym_0b] = ACTIONS(850), - [anon_sym_0o] = ACTIONS(850), - [anon_sym_0x] = ACTIONS(850), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym__str_single_quotes] = ACTIONS(850), - [sym__str_back_ticks] = ACTIONS(850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), + [542] = { + [sym_expr_parenthesized] = STATE(608), + [sym_val_number] = STATE(608), + [sym_comment] = STATE(542), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_val_number_token1] = ACTIONS(1202), + [aux_sym_val_number_token2] = ACTIONS(1202), + [aux_sym_val_number_token3] = ACTIONS(1202), + [aux_sym_val_number_token4] = ACTIONS(1202), + [aux_sym_val_number_token5] = ACTIONS(1202), + [anon_sym_inf] = ACTIONS(1202), + [anon_sym_DASHinf] = ACTIONS(1202), + [anon_sym_NaN] = ACTIONS(1202), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_err_GT] = ACTIONS(826), + [anon_sym_out_GT] = ACTIONS(826), + [anon_sym_e_GT] = ACTIONS(826), + [anon_sym_o_GT] = ACTIONS(826), + [anon_sym_err_PLUSout_GT] = ACTIONS(826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(826), + [anon_sym_o_PLUSe_GT] = ACTIONS(826), + [anon_sym_e_PLUSo_GT] = ACTIONS(826), + [sym_short_flag] = ACTIONS(826), + [aux_sym_unquoted_token1] = ACTIONS(826), [anon_sym_POUND] = ACTIONS(3), }, - [808] = { - [sym_comment] = STATE(808), - [ts_builtin_sym_end] = ACTIONS(1717), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = 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_LBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), + [543] = { + [sym_pipeline] = STATE(1105), + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3776), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(543), + [aux_sym_pipeline_repeat1] = STATE(568), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), }, - [809] = { - [sym_comment] = STATE(809), - [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), - [anon_sym_SEMI] = ACTIONS(2025), - [sym_cmd_identifier] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_where] = ACTIONS(2025), - [anon_sym_not] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [sym_val_nothing] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2025), - [anon_sym_DASHinf] = ACTIONS(2025), - [anon_sym_NaN] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = 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_CARET] = ACTIONS(2025), + [544] = { + [sym_cell_path] = STATE(704), + [sym_path] = STATE(532), + [sym_comment] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_err_GT] = ACTIONS(748), + [anon_sym_out_GT] = ACTIONS(748), + [anon_sym_e_GT] = ACTIONS(748), + [anon_sym_o_GT] = ACTIONS(748), + [anon_sym_err_PLUSout_GT] = ACTIONS(748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(748), + [anon_sym_o_PLUSe_GT] = ACTIONS(748), + [anon_sym_e_PLUSo_GT] = ACTIONS(748), + [sym_short_flag] = ACTIONS(748), + [aux_sym_unquoted_token1] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, - [810] = { - [sym_val_record] = STATE(934), - [sym_comment] = STATE(810), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_SEMI] = ACTIONS(2029), - [sym_cmd_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_def_DASHenv] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_where] = ACTIONS(2029), - [anon_sym_not] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT] = ACTIONS(2029), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [sym_val_nothing] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [aux_sym_val_number_token1] = ACTIONS(2029), - [aux_sym_val_number_token2] = ACTIONS(2029), - [aux_sym_val_number_token3] = ACTIONS(2029), - [aux_sym_val_number_token4] = ACTIONS(2029), - [aux_sym_val_number_token5] = ACTIONS(2029), - [anon_sym_inf] = ACTIONS(2029), - [anon_sym_DASHinf] = ACTIONS(2029), - [anon_sym_NaN] = ACTIONS(2029), - [anon_sym_0b] = ACTIONS(2029), - [anon_sym_0o] = ACTIONS(2029), - [anon_sym_0x] = ACTIONS(2029), - [sym_val_date] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym__str_single_quotes] = ACTIONS(2029), - [sym__str_back_ticks] = ACTIONS(2029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2029), + [545] = { + [sym_comment] = STATE(545), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1198), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_err_GT] = ACTIONS(772), + [anon_sym_out_GT] = ACTIONS(772), + [anon_sym_e_GT] = ACTIONS(772), + [anon_sym_o_GT] = ACTIONS(772), + [anon_sym_err_PLUSout_GT] = ACTIONS(772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(772), + [anon_sym_o_PLUSe_GT] = ACTIONS(772), + [anon_sym_e_PLUSo_GT] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [aux_sym_unquoted_token1] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [811] = { - [sym_comment] = STATE(811), - [ts_builtin_sym_end] = ACTIONS(1547), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [sym_cmd_identifier] = ACTIONS(1545), - [anon_sym_LF] = ACTIONS(1547), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_def_DASHenv] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_where] = ACTIONS(1545), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [sym_val_nothing] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [aux_sym_val_number_token1] = ACTIONS(1545), - [aux_sym_val_number_token2] = ACTIONS(1545), - [aux_sym_val_number_token3] = ACTIONS(1545), - [aux_sym_val_number_token4] = ACTIONS(1545), - [aux_sym_val_number_token5] = ACTIONS(1545), - [anon_sym_inf] = ACTIONS(1545), - [anon_sym_DASHinf] = ACTIONS(1545), - [anon_sym_NaN] = ACTIONS(1545), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1545), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [aux_sym_long_flag_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), + [546] = { + [sym_pipeline_parenthesized] = STATE(1113), + [sym__ctrl_expression] = STATE(3666), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(4045), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), + [sym_comment] = STATE(546), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(554), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), }, - [812] = { - [sym_comment] = STATE(812), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), + [547] = { + [sym_comment] = STATE(547), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_err_GT] = ACTIONS(780), + [anon_sym_out_GT] = ACTIONS(780), + [anon_sym_e_GT] = ACTIONS(780), + [anon_sym_o_GT] = ACTIONS(780), + [anon_sym_err_PLUSout_GT] = ACTIONS(780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(780), + [anon_sym_o_PLUSe_GT] = ACTIONS(780), + [anon_sym_e_PLUSo_GT] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), + [aux_sym_unquoted_token1] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [813] = { - [sym_val_record] = STATE(933), - [sym_comment] = STATE(813), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2035), - [sym_cmd_identifier] = ACTIONS(2035), - [anon_sym_LF] = ACTIONS(2037), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_def_DASHenv] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_not] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [sym_val_nothing] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [aux_sym_val_number_token1] = ACTIONS(2035), - [aux_sym_val_number_token2] = ACTIONS(2035), - [aux_sym_val_number_token3] = ACTIONS(2035), - [aux_sym_val_number_token4] = ACTIONS(2035), - [aux_sym_val_number_token5] = ACTIONS(2035), - [anon_sym_inf] = ACTIONS(2035), - [anon_sym_DASHinf] = ACTIONS(2035), - [anon_sym_NaN] = ACTIONS(2035), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2035), + [548] = { + [sym_cell_path] = STATE(703), + [sym_path] = STATE(532), + [sym_comment] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_err_GT] = ACTIONS(744), + [anon_sym_out_GT] = ACTIONS(744), + [anon_sym_e_GT] = ACTIONS(744), + [anon_sym_o_GT] = ACTIONS(744), + [anon_sym_err_PLUSout_GT] = ACTIONS(744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(744), + [anon_sym_o_PLUSe_GT] = ACTIONS(744), + [anon_sym_e_PLUSo_GT] = ACTIONS(744), + [sym_short_flag] = ACTIONS(744), + [aux_sym_unquoted_token1] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [814] = { - [sym_comment] = STATE(814), - [anon_sym_export] = ACTIONS(2039), - [anon_sym_alias] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(2039), - [anon_sym_let_DASHenv] = ACTIONS(2039), - [anon_sym_mut] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2039), - [sym_cmd_identifier] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2039), - [anon_sym_def_DASHenv] = ACTIONS(2039), - [anon_sym_export_DASHenv] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_module] = ACTIONS(2039), - [anon_sym_use] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2039), - [anon_sym_error] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_loop] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_do] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_source] = ACTIONS(2039), - [anon_sym_source_DASHenv] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2039), - [anon_sym_hide] = ACTIONS(2039), - [anon_sym_hide_DASHenv] = ACTIONS(2039), - [anon_sym_overlay] = ACTIONS(2039), - [anon_sym_where] = ACTIONS(2039), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_DOT_DOT_LT] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2039), - [sym_val_nothing] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2039), - [anon_sym_DASHinf] = ACTIONS(2039), - [anon_sym_NaN] = ACTIONS(2039), - [anon_sym_0b] = ACTIONS(2039), - [anon_sym_0o] = ACTIONS(2039), - [anon_sym_0x] = ACTIONS(2039), - [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_CARET] = ACTIONS(2039), + [549] = { + [sym_cell_path] = STATE(645), + [sym_path] = STATE(532), + [sym_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_err_GT] = ACTIONS(736), + [anon_sym_out_GT] = ACTIONS(736), + [anon_sym_e_GT] = ACTIONS(736), + [anon_sym_o_GT] = ACTIONS(736), + [anon_sym_err_PLUSout_GT] = ACTIONS(736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(736), + [anon_sym_o_PLUSe_GT] = ACTIONS(736), + [anon_sym_e_PLUSo_GT] = ACTIONS(736), + [sym_short_flag] = ACTIONS(736), + [aux_sym_unquoted_token1] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [815] = { - [sym_comment] = STATE(815), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [550] = { + [sym_comment] = STATE(550), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_err_GT] = ACTIONS(784), + [anon_sym_out_GT] = ACTIONS(784), + [anon_sym_e_GT] = ACTIONS(784), + [anon_sym_o_GT] = ACTIONS(784), + [anon_sym_err_PLUSout_GT] = ACTIONS(784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(784), + [anon_sym_o_PLUSe_GT] = ACTIONS(784), + [anon_sym_e_PLUSo_GT] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), + [aux_sym_unquoted_token1] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [816] = { - [sym_comment] = STATE(816), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), + [551] = { + [sym_path] = STATE(611), + [sym_comment] = STATE(551), + [aux_sym_cell_path_repeat1] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_in] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_STAR_STAR] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_mod] = ACTIONS(723), + [anon_sym_SLASH_SLASH] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_bit_DASHshl] = ACTIONS(723), + [anon_sym_bit_DASHshr] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [anon_sym_LT2] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(723), + [anon_sym_not_DASHin] = ACTIONS(723), + [anon_sym_starts_DASHwith] = ACTIONS(723), + [anon_sym_ends_DASHwith] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_BANG_TILDE] = ACTIONS(723), + [anon_sym_bit_DASHand] = ACTIONS(723), + [anon_sym_bit_DASHxor] = ACTIONS(723), + [anon_sym_bit_DASHor] = ACTIONS(723), + [anon_sym_and] = ACTIONS(723), + [anon_sym_xor] = ACTIONS(723), + [anon_sym_or] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_err_GT] = ACTIONS(723), + [anon_sym_out_GT] = ACTIONS(723), + [anon_sym_e_GT] = ACTIONS(723), + [anon_sym_o_GT] = ACTIONS(723), + [anon_sym_err_PLUSout_GT] = ACTIONS(723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(723), + [anon_sym_o_PLUSe_GT] = ACTIONS(723), + [anon_sym_e_PLUSo_GT] = ACTIONS(723), + [sym_short_flag] = ACTIONS(723), + [aux_sym_unquoted_token1] = ACTIONS(723), [anon_sym_POUND] = ACTIONS(3), }, - [817] = { - [sym_comment] = STATE(817), - [anon_sym_export] = ACTIONS(1029), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_let_DASHenv] = ACTIONS(1029), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), + [552] = { + [sym_path] = STATE(611), + [sym_comment] = STATE(552), + [aux_sym_cell_path_repeat1] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_err_GT] = ACTIONS(752), + [anon_sym_out_GT] = ACTIONS(752), + [anon_sym_e_GT] = ACTIONS(752), + [anon_sym_o_GT] = ACTIONS(752), + [anon_sym_err_PLUSout_GT] = ACTIONS(752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(752), + [anon_sym_o_PLUSe_GT] = ACTIONS(752), + [anon_sym_e_PLUSo_GT] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [aux_sym_unquoted_token1] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [553] = { + [sym_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1207), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_err_GT] = ACTIONS(772), + [anon_sym_out_GT] = ACTIONS(772), + [anon_sym_e_GT] = ACTIONS(772), + [anon_sym_o_GT] = ACTIONS(772), + [anon_sym_err_PLUSout_GT] = ACTIONS(772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(772), + [anon_sym_o_PLUSe_GT] = ACTIONS(772), + [anon_sym_e_PLUSo_GT] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [aux_sym_unquoted_token1] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [554] = { + [sym__ctrl_expression] = STATE(3666), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3926), + [sym_where_command] = STATE(3696), + [sym__expression] = STATE(2821), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3695), + [sym_comment] = STATE(554), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(591), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), + }, + [555] = { + [sym__ctrl_expression] = STATE(3346), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_pipe_element_parenthesized_last] = STATE(3803), + [sym_where_command] = STATE(3410), + [sym__expression] = STATE(2709), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3408), + [sym_comment] = STATE(555), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(591), + [sym_cmd_identifier] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(157), + }, + [556] = { + [sym_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_err_GT] = ACTIONS(780), + [anon_sym_out_GT] = ACTIONS(780), + [anon_sym_e_GT] = ACTIONS(780), + [anon_sym_o_GT] = ACTIONS(780), + [anon_sym_err_PLUSout_GT] = ACTIONS(780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(780), + [anon_sym_o_PLUSe_GT] = ACTIONS(780), + [anon_sym_e_PLUSo_GT] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), + [aux_sym_unquoted_token1] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(3), + }, + [557] = { + [sym_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_in] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1207), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_mod] = ACTIONS(772), + [anon_sym_SLASH_SLASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_bit_DASHshl] = ACTIONS(772), + [anon_sym_bit_DASHshr] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_LT2] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_not_DASHin] = ACTIONS(772), + [anon_sym_starts_DASHwith] = ACTIONS(772), + [anon_sym_ends_DASHwith] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(772), + [anon_sym_BANG_TILDE] = ACTIONS(772), + [anon_sym_bit_DASHand] = ACTIONS(772), + [anon_sym_bit_DASHxor] = ACTIONS(772), + [anon_sym_bit_DASHor] = ACTIONS(772), + [anon_sym_and] = ACTIONS(772), + [anon_sym_xor] = ACTIONS(772), + [anon_sym_or] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_err_GT] = ACTIONS(772), + [anon_sym_out_GT] = ACTIONS(772), + [anon_sym_e_GT] = ACTIONS(772), + [anon_sym_o_GT] = ACTIONS(772), + [anon_sym_err_PLUSout_GT] = ACTIONS(772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(772), + [anon_sym_o_PLUSe_GT] = ACTIONS(772), + [anon_sym_e_PLUSo_GT] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), + [aux_sym_unquoted_token1] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [558] = { + [sym__command_name] = STATE(969), + [sym_scope_pattern] = STATE(960), + [sym_wild_card] = STATE(972), + [sym_command_list] = STATE(982), + [sym_val_string] = STATE(860), + [sym__str_double_quotes] = STATE(887), + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_def_DASHenv] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_DOT_DOT_LT] = ACTIONS(1209), + [anon_sym_DOT_DOT] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [sym_val_nothing] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym_val_number_token1] = ACTIONS(1209), + [aux_sym_val_number_token2] = ACTIONS(1209), + [aux_sym_val_number_token3] = ACTIONS(1209), + [aux_sym_val_number_token4] = ACTIONS(1209), + [aux_sym_val_number_token5] = ACTIONS(1209), + [anon_sym_inf] = ACTIONS(1209), + [anon_sym_DASHinf] = ACTIONS(1209), + [anon_sym_NaN] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(3), + }, + [559] = { + [sym_comment] = STATE(559), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(3), + }, + [560] = { + [sym_expr_parenthesized] = STATE(696), + [sym_val_number] = STATE(696), + [sym_comment] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_in] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_SLASH_SLASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_bit_DASHshl] = ACTIONS(826), + [anon_sym_bit_DASHshr] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_LT2] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(826), + [anon_sym_not_DASHin] = ACTIONS(826), + [anon_sym_starts_DASHwith] = ACTIONS(826), + [anon_sym_ends_DASHwith] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(826), + [anon_sym_BANG_TILDE] = ACTIONS(826), + [anon_sym_bit_DASHand] = ACTIONS(826), + [anon_sym_bit_DASHxor] = ACTIONS(826), + [anon_sym_bit_DASHor] = ACTIONS(826), + [anon_sym_and] = ACTIONS(826), + [anon_sym_xor] = ACTIONS(826), + [anon_sym_or] = ACTIONS(826), + [anon_sym_DOT_DOT_LT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(826), + [sym_val_nothing] = ACTIONS(826), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_val_number_token1] = ACTIONS(1225), + [aux_sym_val_number_token2] = ACTIONS(1225), + [aux_sym_val_number_token3] = ACTIONS(1225), + [aux_sym_val_number_token4] = ACTIONS(1225), + [aux_sym_val_number_token5] = ACTIONS(1225), + [anon_sym_inf] = ACTIONS(1225), + [anon_sym_DASHinf] = ACTIONS(1225), + [anon_sym_NaN] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(826), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym__str_single_quotes] = ACTIONS(826), + [sym__str_back_ticks] = ACTIONS(826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(826), + [anon_sym_err_GT] = ACTIONS(826), + [anon_sym_out_GT] = ACTIONS(826), + [anon_sym_e_GT] = ACTIONS(826), + [anon_sym_o_GT] = ACTIONS(826), + [anon_sym_err_PLUSout_GT] = ACTIONS(826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(826), + [anon_sym_o_PLUSe_GT] = ACTIONS(826), + [anon_sym_e_PLUSo_GT] = ACTIONS(826), + [sym_short_flag] = ACTIONS(826), + [aux_sym_unquoted_token1] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(3), + }, + [561] = { + [sym_comment] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_err_GT] = ACTIONS(784), + [anon_sym_out_GT] = ACTIONS(784), + [anon_sym_e_GT] = ACTIONS(784), + [anon_sym_o_GT] = ACTIONS(784), + [anon_sym_err_PLUSout_GT] = ACTIONS(784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(784), + [anon_sym_o_PLUSe_GT] = ACTIONS(784), + [anon_sym_e_PLUSo_GT] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), + [aux_sym_unquoted_token1] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(3), + }, + [562] = { + [sym__command_name] = STATE(969), + [sym_scope_pattern] = STATE(909), + [sym_wild_card] = STATE(972), + [sym_command_list] = STATE(982), + [sym_val_string] = STATE(860), + [sym__str_double_quotes] = STATE(887), + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(1227), + [anon_sym_alias] = ACTIONS(1227), + [anon_sym_let] = ACTIONS(1227), + [anon_sym_let_DASHenv] = ACTIONS(1227), + [anon_sym_mut] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1229), + [anon_sym_def] = ACTIONS(1227), + [anon_sym_def_DASHenv] = ACTIONS(1227), + [anon_sym_export_DASHenv] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym_module] = ACTIONS(1227), + [anon_sym_use] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_error] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_source] = ACTIONS(1227), + [anon_sym_source_DASHenv] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_hide] = ACTIONS(1227), + [anon_sym_hide_DASHenv] = ACTIONS(1227), + [anon_sym_overlay] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1227), + [anon_sym_DOT_DOT_LT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [sym_val_nothing] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [aux_sym_val_number_token1] = ACTIONS(1227), + [aux_sym_val_number_token2] = ACTIONS(1227), + [aux_sym_val_number_token3] = ACTIONS(1227), + [aux_sym_val_number_token4] = ACTIONS(1227), + [aux_sym_val_number_token5] = ACTIONS(1227), + [anon_sym_inf] = ACTIONS(1227), + [anon_sym_DASHinf] = ACTIONS(1227), + [anon_sym_NaN] = ACTIONS(1227), + [anon_sym_0b] = ACTIONS(1227), + [anon_sym_0o] = ACTIONS(1227), + [anon_sym_0x] = ACTIONS(1227), + [sym_val_date] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(3), + }, + [563] = { + [sym_comment] = STATE(563), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_err_GT] = ACTIONS(907), + [anon_sym_out_GT] = ACTIONS(907), + [anon_sym_e_GT] = ACTIONS(907), + [anon_sym_o_GT] = ACTIONS(907), + [anon_sym_err_PLUSout_GT] = ACTIONS(907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(907), + [anon_sym_o_PLUSe_GT] = ACTIONS(907), + [anon_sym_e_PLUSo_GT] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), + [aux_sym_unquoted_token1] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(3), + }, + [564] = { + [sym_comment] = STATE(564), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_err_GT] = ACTIONS(899), + [anon_sym_out_GT] = ACTIONS(899), + [anon_sym_e_GT] = ACTIONS(899), + [anon_sym_o_GT] = ACTIONS(899), + [anon_sym_err_PLUSout_GT] = ACTIONS(899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(899), + [anon_sym_o_PLUSe_GT] = ACTIONS(899), + [anon_sym_e_PLUSo_GT] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), + [aux_sym_unquoted_token1] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(3), + }, + [565] = { + [sym__ctrl_expression] = STATE(3342), + [sym_ctrl_do] = STATE(981), + [sym_ctrl_if] = STATE(981), + [sym_ctrl_match] = STATE(981), + [sym_ctrl_try] = STATE(981), + [sym_ctrl_return] = STATE(981), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3577), + [sym_where_command] = STATE(3460), + [sym__expression] = STATE(2588), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_command] = STATE(3460), + [sym_comment] = STATE(565), + [aux_sym_pipeline_repeat1] = STATE(638), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(157), + }, + [566] = { + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3313), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(566), + [aux_sym_pipeline_repeat1] = STATE(638), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), + }, + [567] = { + [sym__command_name] = STATE(969), + [sym_scope_pattern] = STATE(970), + [sym_wild_card] = STATE(972), + [sym_command_list] = STATE(982), + [sym_val_string] = STATE(860), + [sym__str_double_quotes] = STATE(887), + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_alias] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_let_DASHenv] = ACTIONS(1231), + [anon_sym_mut] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1231), + [anon_sym_def_DASHenv] = ACTIONS(1231), + [anon_sym_export_DASHenv] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_error] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_loop] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_source] = ACTIONS(1231), + [anon_sym_source_DASHenv] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_hide_DASHenv] = ACTIONS(1231), + [anon_sym_overlay] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1231), + [anon_sym_not] = ACTIONS(1231), + [anon_sym_DOT_DOT_LT] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [sym_val_nothing] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym_val_number_token1] = ACTIONS(1231), + [aux_sym_val_number_token2] = ACTIONS(1231), + [aux_sym_val_number_token3] = ACTIONS(1231), + [aux_sym_val_number_token4] = ACTIONS(1231), + [aux_sym_val_number_token5] = ACTIONS(1231), + [anon_sym_inf] = ACTIONS(1231), + [anon_sym_DASHinf] = ACTIONS(1231), + [anon_sym_NaN] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(3), + }, + [568] = { + [sym__ctrl_expression] = STATE(3290), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_pipe_element_last] = STATE(3843), + [sym_where_command] = STATE(3292), + [sym__expression] = STATE(2389), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3292), + [sym_comment] = STATE(568), + [aux_sym_pipeline_repeat1] = STATE(638), + [sym_cmd_identifier] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_break] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(237), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(241), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(251), + [aux_sym_val_number_token4] = ACTIONS(251), + [aux_sym_val_number_token5] = ACTIONS(251), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(251), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [sym__str_single_quotes] = ACTIONS(259), + [sym__str_back_ticks] = ACTIONS(259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(263), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND] = ACTIONS(157), + }, + [569] = { + [sym_comment] = STATE(569), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_err_GT] = ACTIONS(918), + [anon_sym_out_GT] = ACTIONS(918), + [anon_sym_e_GT] = ACTIONS(918), + [anon_sym_o_GT] = ACTIONS(918), + [anon_sym_err_PLUSout_GT] = ACTIONS(918), + [anon_sym_out_PLUSerr_GT] = ACTIONS(918), + [anon_sym_o_PLUSe_GT] = ACTIONS(918), + [anon_sym_e_PLUSo_GT] = ACTIONS(918), + [sym_short_flag] = ACTIONS(918), + [aux_sym_unquoted_token1] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(3), + }, + [570] = { + [sym_comment] = STATE(570), [anon_sym_SEMI] = ACTIONS(1029), - [sym_cmd_identifier] = ACTIONS(1029), [anon_sym_LF] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_def_DASHenv] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(1029), [anon_sym_LPAREN] = ACTIONS(1029), [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), + [anon_sym_in] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(1029), [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_source] = ACTIONS(1029), - [anon_sym_source_DASHenv] = ACTIONS(1029), - [anon_sym_register] = ACTIONS(1029), - [anon_sym_hide] = ACTIONS(1029), - [anon_sym_hide_DASHenv] = ACTIONS(1029), - [anon_sym_overlay] = ACTIONS(1029), [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_not] = ACTIONS(1029), + [anon_sym_STAR_STAR] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_bit_DASHshl] = ACTIONS(1029), + [anon_sym_bit_DASHshr] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT2] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_not_DASHin] = ACTIONS(1029), + [anon_sym_starts_DASHwith] = ACTIONS(1029), + [anon_sym_ends_DASHwith] = ACTIONS(1029), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1029), + [anon_sym_bit_DASHxor] = ACTIONS(1029), + [anon_sym_bit_DASHor] = ACTIONS(1029), + [anon_sym_and] = ACTIONS(1029), + [anon_sym_xor] = ACTIONS(1029), + [anon_sym_or] = ACTIONS(1029), [anon_sym_DOT_DOT_LT] = ACTIONS(1029), [anon_sym_DOT_DOT] = ACTIONS(1029), [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), @@ -122995,1570 +106846,1033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1029), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1029), + [anon_sym_out_GT] = ACTIONS(1029), + [anon_sym_e_GT] = ACTIONS(1029), + [anon_sym_o_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT] = ACTIONS(1029), + [sym_short_flag] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [818] = { - [sym_comment] = STATE(818), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [sym_cmd_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_def_DASHenv] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_where] = ACTIONS(2043), - [anon_sym_not] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [sym_val_nothing] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2043), - [anon_sym_DASHinf] = ACTIONS(2043), - [anon_sym_NaN] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [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_CARET] = ACTIONS(2043), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [819] = { - [sym_comment] = STATE(819), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [sym_cmd_identifier] = ACTIONS(2047), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_def_DASHenv] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_where] = ACTIONS(2047), - [anon_sym_not] = ACTIONS(2047), - [anon_sym_DOT_DOT_LT] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), - [sym_val_nothing] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [aux_sym_val_number_token1] = ACTIONS(2047), - [aux_sym_val_number_token2] = ACTIONS(2047), - [aux_sym_val_number_token3] = ACTIONS(2047), - [aux_sym_val_number_token4] = ACTIONS(2047), - [aux_sym_val_number_token5] = ACTIONS(2047), - [anon_sym_inf] = ACTIONS(2047), - [anon_sym_DASHinf] = ACTIONS(2047), - [anon_sym_NaN] = ACTIONS(2047), - [anon_sym_0b] = ACTIONS(2047), - [anon_sym_0o] = ACTIONS(2047), - [anon_sym_0x] = ACTIONS(2047), - [sym_val_date] = ACTIONS(2047), - [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_CARET] = ACTIONS(2047), + [572] = { + [sym_comment] = STATE(572), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [sym_short_flag] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [820] = { - [sym_comment] = STATE(820), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [sym_cmd_identifier] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(2053), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_def_DASHenv] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_where] = ACTIONS(2051), - [anon_sym_not] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [sym_val_nothing] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [aux_sym_val_number_token1] = ACTIONS(2051), - [aux_sym_val_number_token2] = ACTIONS(2051), - [aux_sym_val_number_token3] = ACTIONS(2051), - [aux_sym_val_number_token4] = ACTIONS(2051), - [aux_sym_val_number_token5] = ACTIONS(2051), - [anon_sym_inf] = ACTIONS(2051), - [anon_sym_DASHinf] = ACTIONS(2051), - [anon_sym_NaN] = ACTIONS(2051), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2051), + [573] = { + [sym_comment] = STATE(573), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [821] = { - [sym_comment] = STATE(821), - [ts_builtin_sym_end] = ACTIONS(1961), - [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), - [anon_sym_SEMI] = ACTIONS(1959), - [sym_cmd_identifier] = ACTIONS(1959), - [anon_sym_LF] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_where] = ACTIONS(1959), - [anon_sym_not] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [sym_val_nothing] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1959), - [anon_sym_DASHinf] = ACTIONS(1959), - [anon_sym_NaN] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = 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_CARET] = ACTIONS(1959), + [574] = { + [sym_comment] = STATE(574), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [822] = { - [sym_comment] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [sym_cmd_identifier] = ACTIONS(2021), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_def_DASHenv] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_where] = ACTIONS(2021), - [anon_sym_not] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT] = ACTIONS(2021), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2021), - [sym_val_nothing] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [aux_sym_val_number_token1] = ACTIONS(2021), - [aux_sym_val_number_token2] = ACTIONS(2021), - [aux_sym_val_number_token3] = ACTIONS(2021), - [aux_sym_val_number_token4] = ACTIONS(2021), - [aux_sym_val_number_token5] = ACTIONS(2021), - [anon_sym_inf] = ACTIONS(2021), - [anon_sym_DASHinf] = ACTIONS(2021), - [anon_sym_NaN] = ACTIONS(2021), - [anon_sym_0b] = ACTIONS(2021), - [anon_sym_0o] = ACTIONS(2021), - [anon_sym_0x] = ACTIONS(2021), - [sym_val_date] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), - [anon_sym_CARET] = ACTIONS(2021), + [575] = { + [sym_path] = STATE(756), + [sym_comment] = STATE(575), + [aux_sym_cell_path_repeat1] = STATE(640), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), [anon_sym_POUND] = ACTIONS(3), }, - [823] = { - [sym_comment] = STATE(823), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [sym_cmd_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_def_DASHenv] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_where] = ACTIONS(2055), - [anon_sym_not] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [sym_val_nothing] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [aux_sym_val_number_token1] = ACTIONS(2055), - [aux_sym_val_number_token2] = ACTIONS(2055), - [aux_sym_val_number_token3] = ACTIONS(2055), - [aux_sym_val_number_token4] = ACTIONS(2055), - [aux_sym_val_number_token5] = ACTIONS(2055), - [anon_sym_inf] = ACTIONS(2055), - [anon_sym_DASHinf] = ACTIONS(2055), - [anon_sym_NaN] = ACTIONS(2055), - [anon_sym_0b] = ACTIONS(2055), - [anon_sym_0o] = ACTIONS(2055), - [anon_sym_0x] = ACTIONS(2055), - [sym_val_date] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(3), - }, - [824] = { - [sym_comment] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(2027), - [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), - [anon_sym_SEMI] = ACTIONS(2025), - [sym_cmd_identifier] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_where] = ACTIONS(2025), - [anon_sym_not] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [sym_val_nothing] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2025), - [anon_sym_DASHinf] = ACTIONS(2025), - [anon_sym_NaN] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = 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_CARET] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(3), - }, - [825] = { - [sym_comment] = STATE(825), - [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), - [anon_sym_SEMI] = ACTIONS(2059), - [sym_cmd_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_where] = ACTIONS(2059), - [anon_sym_not] = ACTIONS(2059), - [anon_sym_DOT_DOT_LT] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), - [sym_val_nothing] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2059), - [anon_sym_DASHinf] = ACTIONS(2059), - [anon_sym_NaN] = ACTIONS(2059), - [anon_sym_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = 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_CARET] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(3), - }, - [826] = { - [sym_comment] = STATE(826), - [ts_builtin_sym_end] = ACTIONS(1993), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [sym_cmd_identifier] = ACTIONS(1991), - [anon_sym_LF] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_def_DASHenv] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(1991), - [anon_sym_not] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [sym_val_nothing] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = 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(1991), - [aux_sym_val_number_token5] = ACTIONS(1991), - [anon_sym_inf] = ACTIONS(1991), - [anon_sym_DASHinf] = ACTIONS(1991), - [anon_sym_NaN] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1991), - [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_CARET] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(3), - }, - [827] = { - [sym_comment] = STATE(827), - [ts_builtin_sym_end] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [sym_cmd_identifier] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_def_DASHenv] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_DOT_DOT_LT] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), - [sym_val_nothing] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym_val_number_token1] = ACTIONS(1559), - [aux_sym_val_number_token2] = ACTIONS(1559), - [aux_sym_val_number_token3] = ACTIONS(1559), - [aux_sym_val_number_token4] = ACTIONS(1559), - [aux_sym_val_number_token5] = ACTIONS(1559), - [anon_sym_inf] = ACTIONS(1559), - [anon_sym_DASHinf] = ACTIONS(1559), - [anon_sym_NaN] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym__str_single_quotes] = ACTIONS(1559), - [sym__str_back_ticks] = ACTIONS(1559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - }, - [828] = { - [sym_comment] = STATE(828), - [ts_builtin_sym_end] = ACTIONS(1965), - [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), - [anon_sym_SEMI] = ACTIONS(1963), - [sym_cmd_identifier] = ACTIONS(1963), - [anon_sym_LF] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_where] = ACTIONS(1963), - [anon_sym_not] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [sym_val_nothing] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1963), - [anon_sym_DASHinf] = ACTIONS(1963), - [anon_sym_NaN] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [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_CARET] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), - }, - [829] = { - [sym_comment] = STATE(829), - [ts_builtin_sym_end] = ACTIONS(1953), - [anon_sym_export] = ACTIONS(1951), - [anon_sym_alias] = ACTIONS(1951), - [anon_sym_let] = ACTIONS(1951), - [anon_sym_let_DASHenv] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [sym_cmd_identifier] = ACTIONS(1951), - [anon_sym_LF] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1951), - [anon_sym_def_DASHenv] = ACTIONS(1951), - [anon_sym_export_DASHenv] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym_module] = ACTIONS(1951), - [anon_sym_use] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_loop] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_do] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_source] = ACTIONS(1951), - [anon_sym_source_DASHenv] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_hide] = ACTIONS(1951), - [anon_sym_hide_DASHenv] = ACTIONS(1951), - [anon_sym_overlay] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_where] = ACTIONS(1951), - [anon_sym_not] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [sym_val_nothing] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym_val_number_token1] = ACTIONS(1951), - [aux_sym_val_number_token2] = ACTIONS(1951), - [aux_sym_val_number_token3] = ACTIONS(1951), - [aux_sym_val_number_token4] = ACTIONS(1951), - [aux_sym_val_number_token5] = ACTIONS(1951), - [anon_sym_inf] = ACTIONS(1951), - [anon_sym_DASHinf] = ACTIONS(1951), - [anon_sym_NaN] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1951), - [anon_sym_0o] = ACTIONS(1951), - [anon_sym_0x] = ACTIONS(1951), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(3), - }, - [830] = { - [sym_comment] = STATE(830), - [ts_builtin_sym_end] = ACTIONS(1573), - [anon_sym_export] = ACTIONS(1571), - [anon_sym_alias] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_let_DASHenv] = ACTIONS(1571), - [anon_sym_mut] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [sym_cmd_identifier] = ACTIONS(1571), - [anon_sym_LF] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_def_DASHenv] = ACTIONS(1571), - [anon_sym_export_DASHenv] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_module] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_source] = ACTIONS(1571), - [anon_sym_source_DASHenv] = ACTIONS(1571), - [anon_sym_register] = ACTIONS(1571), - [anon_sym_hide] = ACTIONS(1571), - [anon_sym_hide_DASHenv] = ACTIONS(1571), - [anon_sym_overlay] = ACTIONS(1571), - [anon_sym_where] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [sym_val_nothing] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [aux_sym_val_number_token1] = ACTIONS(1571), - [aux_sym_val_number_token2] = ACTIONS(1571), - [aux_sym_val_number_token3] = ACTIONS(1571), - [aux_sym_val_number_token4] = ACTIONS(1571), - [aux_sym_val_number_token5] = ACTIONS(1571), - [anon_sym_inf] = ACTIONS(1571), - [anon_sym_DASHinf] = ACTIONS(1571), - [anon_sym_NaN] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1571), - [anon_sym_0o] = ACTIONS(1571), - [anon_sym_0x] = ACTIONS(1571), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(3), - }, - [831] = { - [sym_comment] = STATE(831), - [ts_builtin_sym_end] = ACTIONS(1957), - [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), - [anon_sym_SEMI] = ACTIONS(1955), - [sym_cmd_identifier] = ACTIONS(1955), - [anon_sym_LF] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_where] = ACTIONS(1955), - [anon_sym_not] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [sym_val_nothing] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1955), - [anon_sym_DASHinf] = ACTIONS(1955), - [anon_sym_NaN] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1955), - [anon_sym_0o] = ACTIONS(1955), - [anon_sym_0x] = ACTIONS(1955), - [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_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, - [832] = { - [sym_comment] = STATE(832), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [sym_cmd_identifier] = ACTIONS(2063), - [anon_sym_LF] = ACTIONS(2065), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_def_DASHenv] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_RPAREN] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2063), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_where] = ACTIONS(2063), - [anon_sym_not] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [sym_val_nothing] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2063), - [anon_sym_DASHinf] = ACTIONS(2063), - [anon_sym_NaN] = ACTIONS(2063), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2063), - [anon_sym_0x] = ACTIONS(2063), - [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_CARET] = ACTIONS(2063), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [833] = { - [sym_comment] = STATE(833), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), + [577] = { + [sym_comment] = STATE(577), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [834] = { - [sym_comment] = STATE(834), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [sym_cmd_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_def_DASHenv] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_where] = ACTIONS(2043), - [anon_sym_not] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [sym_val_nothing] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2043), - [anon_sym_DASHinf] = ACTIONS(2043), - [anon_sym_NaN] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [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_CARET] = ACTIONS(2043), + [578] = { + [sym_comment] = STATE(578), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [835] = { - [sym__terminator] = STATE(846), - [sym_comment] = STATE(835), - [aux_sym__block_body_repeat1] = STATE(844), - [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), - [anon_sym_SEMI] = ACTIONS(2069), - [sym_cmd_identifier] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_where] = ACTIONS(2067), - [anon_sym_not] = ACTIONS(2067), - [anon_sym_DOT_DOT_LT] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2067), - [sym_val_nothing] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2067), - [anon_sym_DASHinf] = ACTIONS(2067), - [anon_sym_NaN] = ACTIONS(2067), - [anon_sym_0b] = ACTIONS(2067), - [anon_sym_0o] = ACTIONS(2067), - [anon_sym_0x] = ACTIONS(2067), - [sym_val_date] = 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_CARET] = ACTIONS(2067), + [579] = { + [sym_comment] = STATE(579), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [836] = { - [sym_comment] = STATE(836), - [anon_sym_export] = ACTIONS(2073), - [anon_sym_alias] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_let_DASHenv] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [sym_cmd_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2075), - [anon_sym_def] = ACTIONS(2073), - [anon_sym_def_DASHenv] = ACTIONS(2073), - [anon_sym_export_DASHenv] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_module] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_source] = ACTIONS(2073), - [anon_sym_source_DASHenv] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_hide] = ACTIONS(2073), - [anon_sym_hide_DASHenv] = ACTIONS(2073), - [anon_sym_overlay] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_not] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [sym_val_nothing] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = 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(2073), - [aux_sym_val_number_token5] = ACTIONS(2073), - [anon_sym_inf] = ACTIONS(2073), - [anon_sym_DASHinf] = ACTIONS(2073), - [anon_sym_NaN] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2073), - [anon_sym_0o] = ACTIONS(2073), - [anon_sym_0x] = ACTIONS(2073), - [sym_val_date] = ACTIONS(2073), - [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_CARET] = ACTIONS(2073), + [580] = { + [sym_comment] = STATE(580), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [837] = { - [sym_comment] = STATE(837), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_alias] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_let_DASHenv] = ACTIONS(2077), - [anon_sym_mut] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [sym_cmd_identifier] = ACTIONS(2077), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2077), - [anon_sym_def_DASHenv] = ACTIONS(2077), - [anon_sym_export_DASHenv] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_error] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_source] = ACTIONS(2077), - [anon_sym_source_DASHenv] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2077), - [anon_sym_hide] = ACTIONS(2077), - [anon_sym_hide_DASHenv] = ACTIONS(2077), - [anon_sym_overlay] = ACTIONS(2077), - [anon_sym_where] = ACTIONS(2077), - [anon_sym_not] = ACTIONS(2077), - [anon_sym_DOT_DOT_LT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), - [sym_val_nothing] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = 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(2077), - [aux_sym_val_number_token5] = ACTIONS(2077), - [anon_sym_inf] = ACTIONS(2077), - [anon_sym_DASHinf] = ACTIONS(2077), - [anon_sym_NaN] = ACTIONS(2077), - [anon_sym_0b] = ACTIONS(2077), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2077), - [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_CARET] = ACTIONS(2077), + [581] = { + [sym_comment] = STATE(581), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [838] = { - [sym_comment] = STATE(838), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_alias] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_let_DASHenv] = ACTIONS(2081), - [anon_sym_mut] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [sym_cmd_identifier] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2081), - [anon_sym_def_DASHenv] = ACTIONS(2081), - [anon_sym_export_DASHenv] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_error] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_source] = ACTIONS(2081), - [anon_sym_source_DASHenv] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2081), - [anon_sym_hide] = ACTIONS(2081), - [anon_sym_hide_DASHenv] = ACTIONS(2081), - [anon_sym_overlay] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_not] = ACTIONS(2081), - [anon_sym_DOT_DOT_LT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), - [sym_val_nothing] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = 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(2081), - [aux_sym_val_number_token5] = ACTIONS(2081), - [anon_sym_inf] = ACTIONS(2081), - [anon_sym_DASHinf] = ACTIONS(2081), - [anon_sym_NaN] = ACTIONS(2081), - [anon_sym_0b] = ACTIONS(2081), - [anon_sym_0o] = ACTIONS(2081), - [anon_sym_0x] = ACTIONS(2081), - [sym_val_date] = ACTIONS(2081), - [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_CARET] = ACTIONS(2081), + [582] = { + [sym_comment] = STATE(582), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [839] = { - [sym_comment] = STATE(839), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [sym_cmd_identifier] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_def_DASHenv] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2085), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_where] = ACTIONS(2085), - [anon_sym_not] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [anon_sym_DOT_DOT] = ACTIONS(2085), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [sym_val_nothing] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [aux_sym_val_number_token1] = ACTIONS(2085), - [aux_sym_val_number_token2] = ACTIONS(2085), - [aux_sym_val_number_token3] = ACTIONS(2085), - [aux_sym_val_number_token4] = ACTIONS(2085), - [aux_sym_val_number_token5] = ACTIONS(2085), - [anon_sym_inf] = ACTIONS(2085), - [anon_sym_DASHinf] = ACTIONS(2085), - [anon_sym_NaN] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2085), - [anon_sym_0o] = ACTIONS(2085), - [anon_sym_0x] = ACTIONS(2085), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_LF] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_in] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_STAR_STAR] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_mod] = ACTIONS(952), + [anon_sym_SLASH_SLASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_bit_DASHshl] = ACTIONS(952), + [anon_sym_bit_DASHshr] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_not_DASHin] = ACTIONS(952), + [anon_sym_starts_DASHwith] = ACTIONS(952), + [anon_sym_ends_DASHwith] = ACTIONS(952), + [anon_sym_EQ_TILDE] = ACTIONS(952), + [anon_sym_BANG_TILDE] = ACTIONS(952), + [anon_sym_bit_DASHand] = ACTIONS(952), + [anon_sym_bit_DASHxor] = ACTIONS(952), + [anon_sym_bit_DASHor] = ACTIONS(952), + [anon_sym_and] = ACTIONS(952), + [anon_sym_xor] = ACTIONS(952), + [anon_sym_or] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [sym_val_nothing] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(952), + [anon_sym_DASHinf] = ACTIONS(952), + [anon_sym_NaN] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [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_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [sym_short_flag] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(3), }, - [840] = { - [sym_comment] = STATE(840), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), + [584] = { + [sym_comment] = STATE(584), [anon_sym_SEMI] = ACTIONS(1002), - [sym_cmd_identifier] = ACTIONS(1002), [anon_sym_LF] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_def_DASHenv] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_where] = ACTIONS(1002), - [anon_sym_not] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), [anon_sym_DOT_DOT_LT] = ACTIONS(1002), [anon_sym_DOT_DOT] = ACTIONS(1002), [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), @@ -124582,5463 +107896,5410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - }, - [841] = { - [sym_comment] = STATE(841), - [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), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [sym_val_nothing] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2089), - [anon_sym_DASHinf] = ACTIONS(2089), - [anon_sym_NaN] = 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(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_CARET] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), - }, - [842] = { - [sym_comment] = STATE(842), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [843] = { - [sym_comment] = STATE(843), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), + [585] = { + [sym_comment] = STATE(585), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [844] = { - [sym__terminator] = STATE(846), - [sym_comment] = STATE(844), - [aux_sym__block_body_repeat1] = STATE(745), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_alias] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_let_DASHenv] = ACTIONS(2099), - [anon_sym_mut] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2069), - [sym_cmd_identifier] = ACTIONS(2099), - [anon_sym_LF] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2099), - [anon_sym_def_DASHenv] = ACTIONS(2099), - [anon_sym_export_DASHenv] = ACTIONS(2099), - [anon_sym_extern] = ACTIONS(2099), - [anon_sym_module] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2099), - [anon_sym_error] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_source] = ACTIONS(2099), - [anon_sym_source_DASHenv] = ACTIONS(2099), - [anon_sym_register] = ACTIONS(2099), - [anon_sym_hide] = ACTIONS(2099), - [anon_sym_hide_DASHenv] = ACTIONS(2099), - [anon_sym_overlay] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_not] = ACTIONS(2099), - [anon_sym_DOT_DOT_LT] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2099), - [sym_val_nothing] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [aux_sym_val_number_token1] = ACTIONS(2099), - [aux_sym_val_number_token2] = ACTIONS(2099), - [aux_sym_val_number_token3] = ACTIONS(2099), - [aux_sym_val_number_token4] = ACTIONS(2099), - [aux_sym_val_number_token5] = ACTIONS(2099), - [anon_sym_inf] = ACTIONS(2099), - [anon_sym_DASHinf] = ACTIONS(2099), - [anon_sym_NaN] = ACTIONS(2099), - [anon_sym_0b] = ACTIONS(2099), - [anon_sym_0o] = ACTIONS(2099), - [anon_sym_0x] = ACTIONS(2099), - [sym_val_date] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [sym__str_single_quotes] = ACTIONS(2099), - [sym__str_back_ticks] = ACTIONS(2099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), + [586] = { + [sym_comment] = STATE(586), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [845] = { - [sym_comment] = STATE(845), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_def_DASHenv] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2101), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [sym_val_nothing] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym_val_number_token1] = ACTIONS(2101), - [aux_sym_val_number_token2] = ACTIONS(2101), - [aux_sym_val_number_token3] = ACTIONS(2101), - [aux_sym_val_number_token4] = ACTIONS(2101), - [aux_sym_val_number_token5] = ACTIONS(2101), - [anon_sym_inf] = ACTIONS(2101), - [anon_sym_DASHinf] = ACTIONS(2101), - [anon_sym_NaN] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), + [587] = { + [sym_comment] = STATE(587), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [846] = { - [sym_comment] = STATE(846), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [sym_cmd_identifier] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2107), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_def_DASHenv] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_not] = ACTIONS(2105), - [anon_sym_DOT_DOT_LT] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), - [sym_val_nothing] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [aux_sym_val_number_token1] = ACTIONS(2105), - [aux_sym_val_number_token2] = ACTIONS(2105), - [aux_sym_val_number_token3] = ACTIONS(2105), - [aux_sym_val_number_token4] = ACTIONS(2105), - [aux_sym_val_number_token5] = ACTIONS(2105), - [anon_sym_inf] = ACTIONS(2105), - [anon_sym_DASHinf] = ACTIONS(2105), - [anon_sym_NaN] = ACTIONS(2105), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [sym__str_single_quotes] = ACTIONS(2105), - [sym__str_back_ticks] = ACTIONS(2105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), + [588] = { + [sym_comment] = STATE(588), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [847] = { - [sym_comment] = STATE(847), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_def_DASHenv] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2101), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [sym_val_nothing] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym_val_number_token1] = ACTIONS(2101), - [aux_sym_val_number_token2] = ACTIONS(2101), - [aux_sym_val_number_token3] = ACTIONS(2101), - [aux_sym_val_number_token4] = ACTIONS(2101), - [aux_sym_val_number_token5] = ACTIONS(2101), - [anon_sym_inf] = ACTIONS(2101), - [anon_sym_DASHinf] = ACTIONS(2101), - [anon_sym_NaN] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), + [589] = { + [sym_comment] = STATE(589), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(135), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_err_GT] = ACTIONS(926), + [anon_sym_out_GT] = ACTIONS(926), + [anon_sym_e_GT] = ACTIONS(926), + [anon_sym_o_GT] = ACTIONS(926), + [anon_sym_err_PLUSout_GT] = ACTIONS(926), + [anon_sym_out_PLUSerr_GT] = ACTIONS(926), + [anon_sym_o_PLUSe_GT] = ACTIONS(926), + [anon_sym_e_PLUSo_GT] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [aux_sym_unquoted_token1] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [848] = { - [sym_comment] = STATE(848), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_alias] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_let_DASHenv] = ACTIONS(2109), - [anon_sym_mut] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [sym_cmd_identifier] = ACTIONS(2109), - [anon_sym_LF] = ACTIONS(2111), - [anon_sym_def] = ACTIONS(2109), - [anon_sym_def_DASHenv] = ACTIONS(2109), - [anon_sym_export_DASHenv] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_error] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_source] = ACTIONS(2109), - [anon_sym_source_DASHenv] = ACTIONS(2109), - [anon_sym_register] = ACTIONS(2109), - [anon_sym_hide] = ACTIONS(2109), - [anon_sym_hide_DASHenv] = ACTIONS(2109), - [anon_sym_overlay] = ACTIONS(2109), - [anon_sym_where] = ACTIONS(2109), - [anon_sym_not] = ACTIONS(2109), - [anon_sym_DOT_DOT_LT] = ACTIONS(2109), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), - [sym_val_nothing] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [aux_sym_val_number_token1] = ACTIONS(2109), - [aux_sym_val_number_token2] = ACTIONS(2109), - [aux_sym_val_number_token3] = ACTIONS(2109), - [aux_sym_val_number_token4] = ACTIONS(2109), - [aux_sym_val_number_token5] = ACTIONS(2109), - [anon_sym_inf] = ACTIONS(2109), - [anon_sym_DASHinf] = ACTIONS(2109), - [anon_sym_NaN] = ACTIONS(2109), - [anon_sym_0b] = ACTIONS(2109), - [anon_sym_0o] = ACTIONS(2109), - [anon_sym_0x] = ACTIONS(2109), - [sym_val_date] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [sym__str_single_quotes] = ACTIONS(2109), - [sym__str_back_ticks] = ACTIONS(2109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_err_GT] = ACTIONS(926), + [anon_sym_out_GT] = ACTIONS(926), + [anon_sym_e_GT] = ACTIONS(926), + [anon_sym_o_GT] = ACTIONS(926), + [anon_sym_err_PLUSout_GT] = ACTIONS(926), + [anon_sym_out_PLUSerr_GT] = ACTIONS(926), + [anon_sym_o_PLUSe_GT] = ACTIONS(926), + [anon_sym_e_PLUSo_GT] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [aux_sym_unquoted_token1] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [849] = { - [sym_comment] = STATE(849), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [sym_cmd_identifier] = ACTIONS(2113), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_def_DASHenv] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_where] = ACTIONS(2113), - [anon_sym_not] = ACTIONS(2113), - [anon_sym_DOT_DOT_LT] = ACTIONS(2113), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), - [sym_val_nothing] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [aux_sym_val_number_token1] = ACTIONS(2113), - [aux_sym_val_number_token2] = ACTIONS(2113), - [aux_sym_val_number_token3] = ACTIONS(2113), - [aux_sym_val_number_token4] = ACTIONS(2113), - [aux_sym_val_number_token5] = ACTIONS(2113), - [anon_sym_inf] = ACTIONS(2113), - [anon_sym_DASHinf] = ACTIONS(2113), - [anon_sym_NaN] = ACTIONS(2113), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2113), - [anon_sym_0x] = ACTIONS(2113), - [sym_val_date] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [sym__str_single_quotes] = ACTIONS(2113), - [sym__str_back_ticks] = ACTIONS(2113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(3), + [591] = { + [sym__ctrl_expression] = STATE(3835), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element_parenthesized] = STATE(2015), + [sym_where_command] = STATE(3829), + [sym__expression] = STATE(2905), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym__command_parenthesized_body] = STATE(3827), + [sym_comment] = STATE(591), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(591), + [sym_cmd_identifier] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_not] = ACTIONS(1295), + [anon_sym_DOT_DOT_LT] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), + [sym_val_nothing] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym_val_number_token1] = ACTIONS(1310), + [aux_sym_val_number_token2] = ACTIONS(1310), + [aux_sym_val_number_token3] = ACTIONS(1313), + [aux_sym_val_number_token4] = ACTIONS(1313), + [aux_sym_val_number_token5] = ACTIONS(1313), + [anon_sym_inf] = ACTIONS(1310), + [anon_sym_DASHinf] = ACTIONS(1313), + [anon_sym_NaN] = ACTIONS(1310), + [anon_sym_0b] = ACTIONS(1316), + [anon_sym_0o] = ACTIONS(1316), + [anon_sym_0x] = ACTIONS(1316), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym__str_single_quotes] = ACTIONS(1325), + [sym__str_back_ticks] = ACTIONS(1325), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1334), + [anon_sym_POUND] = ACTIONS(157), }, - [850] = { - [sym_comment] = STATE(850), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_def_DASHenv] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_DOT_DOT_LT] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), - [sym_val_nothing] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym_val_number_token1] = ACTIONS(2117), - [aux_sym_val_number_token2] = ACTIONS(2117), - [aux_sym_val_number_token3] = ACTIONS(2117), - [aux_sym_val_number_token4] = ACTIONS(2117), - [aux_sym_val_number_token5] = ACTIONS(2117), - [anon_sym_inf] = ACTIONS(2117), - [anon_sym_DASHinf] = ACTIONS(2117), - [anon_sym_NaN] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), + [592] = { + [sym_comment] = STATE(592), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [851] = { - [sym_comment] = STATE(851), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_def_DASHenv] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_DOT_DOT_LT] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), - [sym_val_nothing] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym_val_number_token1] = ACTIONS(2117), - [aux_sym_val_number_token2] = ACTIONS(2117), - [aux_sym_val_number_token3] = ACTIONS(2117), - [aux_sym_val_number_token4] = ACTIONS(2117), - [aux_sym_val_number_token5] = ACTIONS(2117), - [anon_sym_inf] = ACTIONS(2117), - [anon_sym_DASHinf] = ACTIONS(2117), - [anon_sym_NaN] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [852] = { - [sym_comment] = STATE(852), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_alias] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_let_DASHenv] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [sym_cmd_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2121), - [anon_sym_def_DASHenv] = ACTIONS(2121), - [anon_sym_export_DASHenv] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2121), - [anon_sym_error] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_source] = ACTIONS(2121), - [anon_sym_source_DASHenv] = ACTIONS(2121), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_hide] = ACTIONS(2121), - [anon_sym_hide_DASHenv] = ACTIONS(2121), - [anon_sym_overlay] = ACTIONS(2121), - [anon_sym_where] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2121), - [anon_sym_DOT_DOT_LT] = ACTIONS(2121), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2121), - [sym_val_nothing] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [aux_sym_val_number_token1] = ACTIONS(2121), - [aux_sym_val_number_token2] = ACTIONS(2121), - [aux_sym_val_number_token3] = ACTIONS(2121), - [aux_sym_val_number_token4] = ACTIONS(2121), - [aux_sym_val_number_token5] = ACTIONS(2121), - [anon_sym_inf] = ACTIONS(2121), - [anon_sym_DASHinf] = ACTIONS(2121), - [anon_sym_NaN] = ACTIONS(2121), - [anon_sym_0b] = ACTIONS(2121), - [anon_sym_0o] = ACTIONS(2121), - [anon_sym_0x] = ACTIONS(2121), - [sym_val_date] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), + [594] = { + [sym_comment] = STATE(594), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [853] = { - [sym_comment] = STATE(853), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [sym_cmd_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_def_DASHenv] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_not] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), - [sym_val_nothing] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym_val_number_token1] = ACTIONS(2125), - [aux_sym_val_number_token2] = ACTIONS(2125), - [aux_sym_val_number_token3] = ACTIONS(2125), - [aux_sym_val_number_token4] = ACTIONS(2125), - [aux_sym_val_number_token5] = ACTIONS(2125), - [anon_sym_inf] = ACTIONS(2125), - [anon_sym_DASHinf] = ACTIONS(2125), - [anon_sym_NaN] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(3), - }, - [854] = { - [sym_block] = STATE(989), - [sym_comment] = STATE(854), - [ts_builtin_sym_end] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(3), - }, - [855] = { - [sym_comment] = STATE(855), - [ts_builtin_sym_end] = ACTIONS(1999), - [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), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_cmd_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_not] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT] = ACTIONS(1997), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [sym_val_nothing] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1997), - [anon_sym_DASHinf] = ACTIONS(1997), - [anon_sym_NaN] = ACTIONS(1997), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = 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_CARET] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(3), - }, - [856] = { - [sym_comment] = STATE(856), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [sym_cmd_identifier] = ACTIONS(2131), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_def_DASHenv] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_RPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_where] = ACTIONS(2131), - [anon_sym_not] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [sym_val_nothing] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [aux_sym_val_number_token1] = ACTIONS(2131), - [aux_sym_val_number_token2] = ACTIONS(2131), - [aux_sym_val_number_token3] = ACTIONS(2131), - [aux_sym_val_number_token4] = ACTIONS(2131), - [aux_sym_val_number_token5] = ACTIONS(2131), - [anon_sym_inf] = ACTIONS(2131), - [anon_sym_DASHinf] = ACTIONS(2131), - [anon_sym_NaN] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(3), - }, - [857] = { - [sym_block] = STATE(990), - [sym_comment] = STATE(857), - [ts_builtin_sym_end] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(3), - }, - [858] = { - [sym_comment] = STATE(858), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_alias] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_let_DASHenv] = ACTIONS(2135), - [anon_sym_mut] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [sym_cmd_identifier] = ACTIONS(2135), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2135), - [anon_sym_def_DASHenv] = ACTIONS(2135), - [anon_sym_export_DASHenv] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_error] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_source] = ACTIONS(2135), - [anon_sym_source_DASHenv] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2135), - [anon_sym_hide] = ACTIONS(2135), - [anon_sym_hide_DASHenv] = ACTIONS(2135), - [anon_sym_overlay] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_not] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), - [sym_val_nothing] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [aux_sym_val_number_token1] = ACTIONS(2135), - [aux_sym_val_number_token2] = ACTIONS(2135), - [aux_sym_val_number_token3] = ACTIONS(2135), - [aux_sym_val_number_token4] = ACTIONS(2135), - [aux_sym_val_number_token5] = ACTIONS(2135), - [anon_sym_inf] = ACTIONS(2135), - [anon_sym_DASHinf] = ACTIONS(2135), - [anon_sym_NaN] = ACTIONS(2135), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2135), - [anon_sym_0x] = ACTIONS(2135), - [sym_val_date] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), - [anon_sym_CARET] = ACTIONS(2135), - [anon_sym_POUND] = ACTIONS(3), - }, - [859] = { - [sym_comment] = STATE(859), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_alias] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_let_DASHenv] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [sym_cmd_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2141), - [anon_sym_def] = ACTIONS(2139), - [anon_sym_def_DASHenv] = ACTIONS(2139), - [anon_sym_export_DASHenv] = ACTIONS(2139), - [anon_sym_extern] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_error] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_source] = ACTIONS(2139), - [anon_sym_source_DASHenv] = ACTIONS(2139), - [anon_sym_register] = ACTIONS(2139), - [anon_sym_hide] = ACTIONS(2139), - [anon_sym_hide_DASHenv] = ACTIONS(2139), - [anon_sym_overlay] = ACTIONS(2139), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_not] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2139), - [sym_val_nothing] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [aux_sym_val_number_token1] = ACTIONS(2139), - [aux_sym_val_number_token2] = ACTIONS(2139), - [aux_sym_val_number_token3] = ACTIONS(2139), - [aux_sym_val_number_token4] = ACTIONS(2139), - [aux_sym_val_number_token5] = ACTIONS(2139), - [anon_sym_inf] = ACTIONS(2139), - [anon_sym_DASHinf] = ACTIONS(2139), - [anon_sym_NaN] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2139), - [anon_sym_0o] = ACTIONS(2139), - [anon_sym_0x] = ACTIONS(2139), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(3), - }, - [860] = { - [sym_comment] = STATE(860), - [anon_sym_export] = ACTIONS(2143), - [anon_sym_alias] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2143), - [anon_sym_let_DASHenv] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [sym_cmd_identifier] = ACTIONS(2143), - [anon_sym_LF] = ACTIONS(2145), - [anon_sym_def] = ACTIONS(2143), - [anon_sym_def_DASHenv] = ACTIONS(2143), - [anon_sym_export_DASHenv] = ACTIONS(2143), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym_module] = ACTIONS(2143), - [anon_sym_use] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2143), - [anon_sym_error] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_loop] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [anon_sym_do] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_source] = ACTIONS(2143), - [anon_sym_source_DASHenv] = ACTIONS(2143), - [anon_sym_register] = ACTIONS(2143), - [anon_sym_hide] = ACTIONS(2143), - [anon_sym_hide_DASHenv] = ACTIONS(2143), - [anon_sym_overlay] = ACTIONS(2143), - [anon_sym_where] = ACTIONS(2143), - [anon_sym_not] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), - [sym_val_nothing] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [aux_sym_val_number_token1] = ACTIONS(2143), - [aux_sym_val_number_token2] = ACTIONS(2143), - [aux_sym_val_number_token3] = ACTIONS(2143), - [aux_sym_val_number_token4] = ACTIONS(2143), - [aux_sym_val_number_token5] = ACTIONS(2143), - [anon_sym_inf] = ACTIONS(2143), - [anon_sym_DASHinf] = ACTIONS(2143), - [anon_sym_NaN] = ACTIONS(2143), - [anon_sym_0b] = ACTIONS(2143), - [anon_sym_0o] = ACTIONS(2143), - [anon_sym_0x] = ACTIONS(2143), - [sym_val_date] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(3), - }, - [861] = { - [sym_comment] = STATE(861), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_def_DASHenv] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), - [anon_sym_DOT_DOT_LT] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2147), - [sym_val_nothing] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym_val_number_token1] = ACTIONS(2147), - [aux_sym_val_number_token2] = ACTIONS(2147), - [aux_sym_val_number_token3] = ACTIONS(2147), - [aux_sym_val_number_token4] = ACTIONS(2147), - [aux_sym_val_number_token5] = ACTIONS(2147), - [anon_sym_inf] = ACTIONS(2147), - [anon_sym_DASHinf] = ACTIONS(2147), - [anon_sym_NaN] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(3), - }, - [862] = { - [sym_comment] = STATE(862), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [sym_cmd_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_def_DASHenv] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_where] = ACTIONS(2151), - [anon_sym_not] = ACTIONS(2151), - [anon_sym_DOT_DOT_LT] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2151), - [sym_val_nothing] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [aux_sym_val_number_token1] = ACTIONS(2151), - [aux_sym_val_number_token2] = ACTIONS(2151), - [aux_sym_val_number_token3] = ACTIONS(2151), - [aux_sym_val_number_token4] = ACTIONS(2151), - [aux_sym_val_number_token5] = ACTIONS(2151), - [anon_sym_inf] = ACTIONS(2151), - [anon_sym_DASHinf] = ACTIONS(2151), - [anon_sym_NaN] = ACTIONS(2151), - [anon_sym_0b] = ACTIONS(2151), - [anon_sym_0o] = ACTIONS(2151), - [anon_sym_0x] = ACTIONS(2151), - [sym_val_date] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym__str_single_quotes] = ACTIONS(2151), - [sym__str_back_ticks] = ACTIONS(2151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(3), - }, - [863] = { - [sym_comment] = STATE(863), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2157), - [sym_cmd_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2160), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_def_DASHenv] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_where] = ACTIONS(2155), - [anon_sym_not] = ACTIONS(2155), - [anon_sym_DOT_DOT_LT] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2155), - [sym_val_nothing] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [aux_sym_val_number_token1] = ACTIONS(2155), - [aux_sym_val_number_token2] = ACTIONS(2155), - [aux_sym_val_number_token3] = ACTIONS(2155), - [aux_sym_val_number_token4] = ACTIONS(2155), - [aux_sym_val_number_token5] = ACTIONS(2155), - [anon_sym_inf] = ACTIONS(2155), - [anon_sym_DASHinf] = ACTIONS(2155), - [anon_sym_NaN] = ACTIONS(2155), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2155), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(3), - }, - [864] = { - [sym_comment] = STATE(864), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [sym_cmd_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_def_DASHenv] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_where] = ACTIONS(2165), - [anon_sym_not] = ACTIONS(2165), - [anon_sym_DOT_DOT_LT] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2165), - [sym_val_nothing] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym_val_number_token1] = ACTIONS(2165), - [aux_sym_val_number_token2] = ACTIONS(2165), - [aux_sym_val_number_token3] = ACTIONS(2165), - [aux_sym_val_number_token4] = ACTIONS(2165), - [aux_sym_val_number_token5] = ACTIONS(2165), - [anon_sym_inf] = ACTIONS(2165), - [anon_sym_DASHinf] = ACTIONS(2165), - [anon_sym_NaN] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2165), - [anon_sym_0o] = ACTIONS(2165), - [anon_sym_0x] = ACTIONS(2165), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(3), - }, - [865] = { - [sym_comment] = STATE(865), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_def_DASHenv] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_DOT_DOT_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), - [sym_val_nothing] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym_val_number_token1] = ACTIONS(2175), - [aux_sym_val_number_token2] = ACTIONS(2175), - [aux_sym_val_number_token3] = ACTIONS(2175), - [aux_sym_val_number_token4] = ACTIONS(2175), - [aux_sym_val_number_token5] = ACTIONS(2175), - [anon_sym_inf] = ACTIONS(2175), - [anon_sym_DASHinf] = ACTIONS(2175), - [anon_sym_NaN] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(3), - }, - [866] = { - [sym_comment] = STATE(866), - [anon_sym_export] = ACTIONS(2179), - [anon_sym_alias] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_let_DASHenv] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [sym_cmd_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2179), - [anon_sym_def_DASHenv] = ACTIONS(2179), - [anon_sym_export_DASHenv] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2179), - [anon_sym_module] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(2179), - [anon_sym_error] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_do] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_source] = ACTIONS(2179), - [anon_sym_source_DASHenv] = ACTIONS(2179), - [anon_sym_register] = ACTIONS(2179), - [anon_sym_hide] = ACTIONS(2179), - [anon_sym_hide_DASHenv] = ACTIONS(2179), - [anon_sym_overlay] = ACTIONS(2179), - [anon_sym_where] = ACTIONS(2179), - [anon_sym_not] = ACTIONS(2179), - [anon_sym_DOT_DOT_LT] = ACTIONS(2179), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2179), - [sym_val_nothing] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2179), - [anon_sym_false] = ACTIONS(2179), - [aux_sym_val_number_token1] = ACTIONS(2179), - [aux_sym_val_number_token2] = ACTIONS(2179), - [aux_sym_val_number_token3] = ACTIONS(2179), - [aux_sym_val_number_token4] = ACTIONS(2179), - [aux_sym_val_number_token5] = ACTIONS(2179), - [anon_sym_inf] = ACTIONS(2179), - [anon_sym_DASHinf] = ACTIONS(2179), - [anon_sym_NaN] = ACTIONS(2179), - [anon_sym_0b] = ACTIONS(2179), - [anon_sym_0o] = ACTIONS(2179), - [anon_sym_0x] = ACTIONS(2179), - [sym_val_date] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(3), - }, - [867] = { - [sym_comment] = STATE(867), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [sym_cmd_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_def_DASHenv] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_where] = ACTIONS(2183), - [anon_sym_not] = ACTIONS(2183), - [anon_sym_DOT_DOT_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), - [sym_val_nothing] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [aux_sym_val_number_token1] = ACTIONS(2183), - [aux_sym_val_number_token2] = ACTIONS(2183), - [aux_sym_val_number_token3] = ACTIONS(2183), - [aux_sym_val_number_token4] = ACTIONS(2183), - [aux_sym_val_number_token5] = ACTIONS(2183), - [anon_sym_inf] = ACTIONS(2183), - [anon_sym_DASHinf] = ACTIONS(2183), - [anon_sym_NaN] = ACTIONS(2183), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2183), - [anon_sym_0x] = ACTIONS(2183), - [sym_val_date] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2183), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(3), - }, - [868] = { - [sym_comment] = STATE(868), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [sym_cmd_identifier] = ACTIONS(2187), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_def_DASHenv] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_DOT_DOT_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2187), - [sym_val_nothing] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym_val_number_token1] = ACTIONS(2187), - [aux_sym_val_number_token2] = ACTIONS(2187), - [aux_sym_val_number_token3] = ACTIONS(2187), - [aux_sym_val_number_token4] = ACTIONS(2187), - [aux_sym_val_number_token5] = ACTIONS(2187), - [anon_sym_inf] = ACTIONS(2187), - [anon_sym_DASHinf] = ACTIONS(2187), - [anon_sym_NaN] = ACTIONS(2187), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2187), + [595] = { + [sym_cell_path] = STATE(793), + [sym_path] = STATE(575), + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [sym_short_flag] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, - [869] = { - [sym_comment] = STATE(869), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [sym_cmd_identifier] = ACTIONS(2187), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_def_DASHenv] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_DOT_DOT_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2187), - [sym_val_nothing] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym_val_number_token1] = ACTIONS(2187), - [aux_sym_val_number_token2] = ACTIONS(2187), - [aux_sym_val_number_token3] = ACTIONS(2187), - [aux_sym_val_number_token4] = ACTIONS(2187), - [aux_sym_val_number_token5] = ACTIONS(2187), - [anon_sym_inf] = ACTIONS(2187), - [anon_sym_DASHinf] = ACTIONS(2187), - [anon_sym_NaN] = ACTIONS(2187), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2187), + [596] = { + [sym_comment] = STATE(596), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [870] = { - [sym_comment] = STATE(870), - [anon_sym_export] = ACTIONS(2191), - [anon_sym_alias] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2191), - [anon_sym_let_DASHenv] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [sym_cmd_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2191), - [anon_sym_def_DASHenv] = ACTIONS(2191), - [anon_sym_export_DASHenv] = ACTIONS(2191), - [anon_sym_extern] = ACTIONS(2191), - [anon_sym_module] = ACTIONS(2191), - [anon_sym_use] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_error] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_loop] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_do] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_source] = ACTIONS(2191), - [anon_sym_source_DASHenv] = ACTIONS(2191), - [anon_sym_register] = ACTIONS(2191), - [anon_sym_hide] = ACTIONS(2191), - [anon_sym_hide_DASHenv] = ACTIONS(2191), - [anon_sym_overlay] = ACTIONS(2191), - [anon_sym_where] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2191), - [anon_sym_DOT_DOT_LT] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2191), - [sym_val_nothing] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [aux_sym_val_number_token1] = ACTIONS(2191), - [aux_sym_val_number_token2] = ACTIONS(2191), - [aux_sym_val_number_token3] = ACTIONS(2191), - [aux_sym_val_number_token4] = ACTIONS(2191), - [aux_sym_val_number_token5] = ACTIONS(2191), - [anon_sym_inf] = ACTIONS(2191), - [anon_sym_DASHinf] = ACTIONS(2191), - [anon_sym_NaN] = ACTIONS(2191), - [anon_sym_0b] = ACTIONS(2191), - [anon_sym_0o] = ACTIONS(2191), - [anon_sym_0x] = ACTIONS(2191), - [sym_val_date] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [sym__str_single_quotes] = ACTIONS(2191), - [sym__str_back_ticks] = ACTIONS(2191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), + [597] = { + [sym_comment] = STATE(597), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [871] = { - [sym_comment] = STATE(871), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_alias] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_let_DASHenv] = ACTIONS(2195), - [anon_sym_mut] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [sym_cmd_identifier] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2195), - [anon_sym_def_DASHenv] = ACTIONS(2195), - [anon_sym_export_DASHenv] = ACTIONS(2195), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_error] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_source] = ACTIONS(2195), - [anon_sym_source_DASHenv] = ACTIONS(2195), - [anon_sym_register] = ACTIONS(2195), - [anon_sym_hide] = ACTIONS(2195), - [anon_sym_hide_DASHenv] = ACTIONS(2195), - [anon_sym_overlay] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_not] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2195), - [sym_val_nothing] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym_val_number_token1] = ACTIONS(2195), - [aux_sym_val_number_token2] = ACTIONS(2195), - [aux_sym_val_number_token3] = ACTIONS(2195), - [aux_sym_val_number_token4] = ACTIONS(2195), - [aux_sym_val_number_token5] = ACTIONS(2195), - [anon_sym_inf] = ACTIONS(2195), - [anon_sym_DASHinf] = ACTIONS(2195), - [anon_sym_NaN] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2195), - [anon_sym_0o] = ACTIONS(2195), - [anon_sym_0x] = ACTIONS(2195), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), + [598] = { + [sym_comment] = STATE(598), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [sym_short_flag] = ACTIONS(1022), + [aux_sym_unquoted_token1] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(3), }, - [872] = { - [sym_comment] = STATE(872), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_alias] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_let_DASHenv] = ACTIONS(2195), - [anon_sym_mut] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [sym_cmd_identifier] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2195), - [anon_sym_def_DASHenv] = ACTIONS(2195), - [anon_sym_export_DASHenv] = ACTIONS(2195), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_error] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_source] = ACTIONS(2195), - [anon_sym_source_DASHenv] = ACTIONS(2195), - [anon_sym_register] = ACTIONS(2195), - [anon_sym_hide] = ACTIONS(2195), - [anon_sym_hide_DASHenv] = ACTIONS(2195), - [anon_sym_overlay] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_not] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2195), - [sym_val_nothing] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym_val_number_token1] = ACTIONS(2195), - [aux_sym_val_number_token2] = ACTIONS(2195), - [aux_sym_val_number_token3] = ACTIONS(2195), - [aux_sym_val_number_token4] = ACTIONS(2195), - [aux_sym_val_number_token5] = ACTIONS(2195), - [anon_sym_inf] = ACTIONS(2195), - [anon_sym_DASHinf] = ACTIONS(2195), - [anon_sym_NaN] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2195), - [anon_sym_0o] = ACTIONS(2195), - [anon_sym_0x] = ACTIONS(2195), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), + [599] = { + [sym_comment] = STATE(599), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [873] = { - [sym_comment] = STATE(873), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_alias] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_let_DASHenv] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [sym_cmd_identifier] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2199), - [anon_sym_def_DASHenv] = ACTIONS(2199), - [anon_sym_export_DASHenv] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_source] = ACTIONS(2199), - [anon_sym_source_DASHenv] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_hide] = ACTIONS(2199), - [anon_sym_hide_DASHenv] = ACTIONS(2199), - [anon_sym_overlay] = ACTIONS(2199), - [anon_sym_where] = ACTIONS(2199), - [anon_sym_not] = ACTIONS(2199), - [anon_sym_DOT_DOT_LT] = ACTIONS(2199), - [anon_sym_DOT_DOT] = ACTIONS(2199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2199), - [sym_val_nothing] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2199), - [anon_sym_false] = ACTIONS(2199), - [aux_sym_val_number_token1] = ACTIONS(2199), - [aux_sym_val_number_token2] = ACTIONS(2199), - [aux_sym_val_number_token3] = ACTIONS(2199), - [aux_sym_val_number_token4] = ACTIONS(2199), - [aux_sym_val_number_token5] = ACTIONS(2199), - [anon_sym_inf] = ACTIONS(2199), - [anon_sym_DASHinf] = ACTIONS(2199), - [anon_sym_NaN] = ACTIONS(2199), - [anon_sym_0b] = ACTIONS(2199), - [anon_sym_0o] = ACTIONS(2199), - [anon_sym_0x] = ACTIONS(2199), - [sym_val_date] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), + [600] = { + [sym_comment] = STATE(600), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1343), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [874] = { - [sym_comment] = STATE(874), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_alias] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_let_DASHenv] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [sym_cmd_identifier] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_def] = ACTIONS(2203), - [anon_sym_def_DASHenv] = ACTIONS(2203), - [anon_sym_export_DASHenv] = ACTIONS(2203), - [anon_sym_extern] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_source] = ACTIONS(2203), - [anon_sym_source_DASHenv] = ACTIONS(2203), - [anon_sym_register] = ACTIONS(2203), - [anon_sym_hide] = ACTIONS(2203), - [anon_sym_hide_DASHenv] = ACTIONS(2203), - [anon_sym_overlay] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_not] = ACTIONS(2203), - [anon_sym_DOT_DOT_LT] = ACTIONS(2203), - [anon_sym_DOT_DOT] = ACTIONS(2203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2203), - [sym_val_nothing] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2203), - [anon_sym_false] = ACTIONS(2203), - [aux_sym_val_number_token1] = ACTIONS(2203), - [aux_sym_val_number_token2] = ACTIONS(2203), - [aux_sym_val_number_token3] = ACTIONS(2203), - [aux_sym_val_number_token4] = ACTIONS(2203), - [aux_sym_val_number_token5] = ACTIONS(2203), - [anon_sym_inf] = ACTIONS(2203), - [anon_sym_DASHinf] = ACTIONS(2203), - [anon_sym_NaN] = ACTIONS(2203), - [anon_sym_0b] = ACTIONS(2203), - [anon_sym_0o] = ACTIONS(2203), - [anon_sym_0x] = ACTIONS(2203), - [sym_val_date] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [875] = { - [sym_comment] = STATE(875), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [sym_cmd_identifier] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_def_DASHenv] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_where] = ACTIONS(2207), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_DOT_DOT_LT] = ACTIONS(2207), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2207), - [sym_val_nothing] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2207), - [anon_sym_false] = ACTIONS(2207), - [aux_sym_val_number_token1] = ACTIONS(2207), - [aux_sym_val_number_token2] = ACTIONS(2207), - [aux_sym_val_number_token3] = ACTIONS(2207), - [aux_sym_val_number_token4] = ACTIONS(2207), - [aux_sym_val_number_token5] = ACTIONS(2207), - [anon_sym_inf] = ACTIONS(2207), - [anon_sym_DASHinf] = ACTIONS(2207), - [anon_sym_NaN] = ACTIONS(2207), - [anon_sym_0b] = ACTIONS(2207), - [anon_sym_0o] = ACTIONS(2207), - [anon_sym_0x] = ACTIONS(2207), - [sym_val_date] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym__str_single_quotes] = ACTIONS(2207), - [sym__str_back_ticks] = ACTIONS(2207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), + [602] = { + [sym_comment] = STATE(602), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [sym_short_flag] = ACTIONS(994), + [aux_sym_unquoted_token1] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, - [876] = { - [sym_comment] = STATE(876), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [sym_cmd_identifier] = ACTIONS(2211), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_def_DASHenv] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_not] = ACTIONS(2211), - [anon_sym_DOT_DOT_LT] = ACTIONS(2211), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2211), - [sym_val_nothing] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [aux_sym_val_number_token1] = ACTIONS(2211), - [aux_sym_val_number_token2] = ACTIONS(2211), - [aux_sym_val_number_token3] = ACTIONS(2211), - [aux_sym_val_number_token4] = ACTIONS(2211), - [aux_sym_val_number_token5] = ACTIONS(2211), - [anon_sym_inf] = ACTIONS(2211), - [anon_sym_DASHinf] = ACTIONS(2211), - [anon_sym_NaN] = ACTIONS(2211), - [anon_sym_0b] = ACTIONS(2211), - [anon_sym_0o] = ACTIONS(2211), - [anon_sym_0x] = ACTIONS(2211), - [sym_val_date] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym__str_single_quotes] = ACTIONS(2211), - [sym__str_back_ticks] = ACTIONS(2211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), + [603] = { + [sym_comment] = STATE(603), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1343), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [877] = { - [sym_comment] = STATE(877), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [sym_cmd_identifier] = ACTIONS(2215), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_def_DASHenv] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_not] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT] = ACTIONS(2215), - [anon_sym_DOT_DOT] = ACTIONS(2215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), - [sym_val_nothing] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [aux_sym_val_number_token1] = ACTIONS(2215), - [aux_sym_val_number_token2] = ACTIONS(2215), - [aux_sym_val_number_token3] = ACTIONS(2215), - [aux_sym_val_number_token4] = ACTIONS(2215), - [aux_sym_val_number_token5] = ACTIONS(2215), - [anon_sym_inf] = ACTIONS(2215), - [anon_sym_DASHinf] = ACTIONS(2215), - [anon_sym_NaN] = ACTIONS(2215), - [anon_sym_0b] = ACTIONS(2215), - [anon_sym_0o] = ACTIONS(2215), - [anon_sym_0x] = ACTIONS(2215), - [sym_val_date] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym__str_single_quotes] = ACTIONS(2215), - [sym__str_back_ticks] = ACTIONS(2215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), + [604] = { + [sym_comment] = STATE(604), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [878] = { - [sym_comment] = STATE(878), - [ts_builtin_sym_end] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), - [sym_cmd_identifier] = ACTIONS(1969), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_def_DASHenv] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_where] = ACTIONS(1969), - [anon_sym_not] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT] = ACTIONS(1969), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), - [sym_val_nothing] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1969), - [anon_sym_DASHinf] = ACTIONS(1969), - [anon_sym_NaN] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [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_CARET] = ACTIONS(1969), + [605] = { + [sym_comment] = STATE(605), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_bit_DASHshl] = ACTIONS(980), + [anon_sym_bit_DASHshr] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_not_DASHin] = ACTIONS(980), + [anon_sym_starts_DASHwith] = ACTIONS(980), + [anon_sym_ends_DASHwith] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_BANG_TILDE] = ACTIONS(980), + [anon_sym_bit_DASHand] = ACTIONS(980), + [anon_sym_bit_DASHxor] = ACTIONS(980), + [anon_sym_bit_DASHor] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [sym_short_flag] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, - [879] = { - [sym_comment] = STATE(879), - [ts_builtin_sym_end] = ACTIONS(910), - [anon_sym_export] = ACTIONS(908), - [anon_sym_alias] = ACTIONS(908), - [anon_sym_let] = ACTIONS(908), - [anon_sym_let_DASHenv] = ACTIONS(908), - [anon_sym_mut] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [sym_cmd_identifier] = ACTIONS(908), - [anon_sym_LF] = ACTIONS(910), - [anon_sym_def] = ACTIONS(908), - [anon_sym_def_DASHenv] = ACTIONS(908), - [anon_sym_export_DASHenv] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym_module] = ACTIONS(908), - [anon_sym_use] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_loop] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_match] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_try] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_source] = ACTIONS(908), - [anon_sym_source_DASHenv] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_hide] = ACTIONS(908), - [anon_sym_hide_DASHenv] = ACTIONS(908), - [anon_sym_overlay] = ACTIONS(908), - [anon_sym_where] = ACTIONS(908), - [anon_sym_not] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [sym_val_nothing] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [aux_sym_val_number_token1] = ACTIONS(908), - [aux_sym_val_number_token2] = ACTIONS(908), - [aux_sym_val_number_token3] = ACTIONS(908), - [aux_sym_val_number_token4] = ACTIONS(908), - [aux_sym_val_number_token5] = ACTIONS(908), - [anon_sym_inf] = ACTIONS(908), - [anon_sym_DASHinf] = ACTIONS(908), - [anon_sym_NaN] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(908), - [anon_sym_0o] = ACTIONS(908), - [anon_sym_0x] = ACTIONS(908), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), + [606] = { + [sym_comment] = STATE(606), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_err_GT] = ACTIONS(1037), + [anon_sym_out_GT] = ACTIONS(1037), + [anon_sym_e_GT] = ACTIONS(1037), + [anon_sym_o_GT] = ACTIONS(1037), + [anon_sym_err_PLUSout_GT] = ACTIONS(1037), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1037), + [anon_sym_o_PLUSe_GT] = ACTIONS(1037), + [anon_sym_e_PLUSo_GT] = ACTIONS(1037), + [sym_short_flag] = ACTIONS(1037), + [aux_sym_unquoted_token1] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [880] = { - [sym_comment] = STATE(880), - [ts_builtin_sym_end] = ACTIONS(1031), - [anon_sym_export] = ACTIONS(1029), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_let_DASHenv] = ACTIONS(1029), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [sym_cmd_identifier] = ACTIONS(1029), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_def_DASHenv] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_source] = ACTIONS(1029), - [anon_sym_source_DASHenv] = ACTIONS(1029), - [anon_sym_register] = ACTIONS(1029), - [anon_sym_hide] = ACTIONS(1029), - [anon_sym_hide_DASHenv] = ACTIONS(1029), - [anon_sym_overlay] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_not] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [sym_val_nothing] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [aux_sym_val_number_token1] = ACTIONS(1029), - [aux_sym_val_number_token2] = ACTIONS(1029), - [aux_sym_val_number_token3] = ACTIONS(1029), - [aux_sym_val_number_token4] = ACTIONS(1029), - [aux_sym_val_number_token5] = ACTIONS(1029), - [anon_sym_inf] = ACTIONS(1029), - [anon_sym_DASHinf] = ACTIONS(1029), - [anon_sym_NaN] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1029), - [anon_sym_0o] = ACTIONS(1029), - [anon_sym_0x] = ACTIONS(1029), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), + [607] = { + [sym_comment] = STATE(607), + [ts_builtin_sym_end] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_in] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_bit_DASHshl] = ACTIONS(899), + [anon_sym_bit_DASHshr] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_not_DASHin] = ACTIONS(899), + [anon_sym_starts_DASHwith] = ACTIONS(899), + [anon_sym_ends_DASHwith] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [anon_sym_bit_DASHand] = ACTIONS(899), + [anon_sym_bit_DASHxor] = ACTIONS(899), + [anon_sym_bit_DASHor] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_err_GT] = ACTIONS(899), + [anon_sym_out_GT] = ACTIONS(899), + [anon_sym_e_GT] = ACTIONS(899), + [anon_sym_o_GT] = ACTIONS(899), + [anon_sym_err_PLUSout_GT] = ACTIONS(899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(899), + [anon_sym_o_PLUSe_GT] = ACTIONS(899), + [anon_sym_e_PLUSo_GT] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), + [aux_sym_unquoted_token1] = ACTIONS(899), [anon_sym_POUND] = ACTIONS(3), }, - [881] = { - [sym_comment] = STATE(881), - [ts_builtin_sym_end] = ACTIONS(1507), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [sym_cmd_identifier] = ACTIONS(1505), - [anon_sym_LF] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_def_DASHenv] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1505), - [anon_sym_not] = ACTIONS(1505), - [anon_sym_DOT_DOT_LT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [sym_val_nothing] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym_val_number_token1] = ACTIONS(1505), - [aux_sym_val_number_token2] = ACTIONS(1505), - [aux_sym_val_number_token3] = ACTIONS(1505), - [aux_sym_val_number_token4] = ACTIONS(1505), - [aux_sym_val_number_token5] = ACTIONS(1505), - [anon_sym_inf] = ACTIONS(1505), - [anon_sym_DASHinf] = ACTIONS(1505), - [anon_sym_NaN] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), + [608] = { + [sym_comment] = STATE(608), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(938), + [aux_sym_unquoted_token1] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(3), }, - [882] = { - [sym_comment] = STATE(882), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [sym_cmd_identifier] = ACTIONS(1497), - [anon_sym_LF] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_def_DASHenv] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_where] = ACTIONS(1497), - [anon_sym_not] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [sym_val_nothing] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [aux_sym_val_number_token1] = ACTIONS(1497), - [aux_sym_val_number_token2] = ACTIONS(1497), - [aux_sym_val_number_token3] = ACTIONS(1497), - [aux_sym_val_number_token4] = ACTIONS(1497), - [aux_sym_val_number_token5] = ACTIONS(1497), - [anon_sym_inf] = ACTIONS(1497), - [anon_sym_DASHinf] = ACTIONS(1497), - [anon_sym_NaN] = ACTIONS(1497), - [anon_sym_0b] = ACTIONS(1497), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), + [609] = { + [sym_comment] = STATE(609), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_LF] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1343), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_DOT_DOT_LT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1347), + [sym_val_nothing] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [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(1347), + [aux_sym_val_number_token5] = ACTIONS(1347), + [anon_sym_inf] = ACTIONS(1347), + [anon_sym_DASHinf] = ACTIONS(1347), + [anon_sym_NaN] = ACTIONS(1347), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym__str_single_quotes] = ACTIONS(1347), + [sym__str_back_ticks] = ACTIONS(1347), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1347), + [anon_sym_err_GT] = ACTIONS(1347), + [anon_sym_out_GT] = ACTIONS(1347), + [anon_sym_e_GT] = ACTIONS(1347), + [anon_sym_o_GT] = ACTIONS(1347), + [anon_sym_err_PLUSout_GT] = ACTIONS(1347), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1347), + [anon_sym_o_PLUSe_GT] = ACTIONS(1347), + [anon_sym_e_PLUSo_GT] = ACTIONS(1347), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1347), [anon_sym_POUND] = ACTIONS(3), }, - [883] = { - [sym_comment] = STATE(883), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_alias] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_let_DASHenv] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2221), - [sym_cmd_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2224), - [anon_sym_def] = ACTIONS(2219), - [anon_sym_def_DASHenv] = ACTIONS(2219), - [anon_sym_export_DASHenv] = ACTIONS(2219), - [anon_sym_extern] = ACTIONS(2219), - [anon_sym_module] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_error] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_do] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_source] = ACTIONS(2219), - [anon_sym_source_DASHenv] = ACTIONS(2219), - [anon_sym_register] = ACTIONS(2219), - [anon_sym_hide] = ACTIONS(2219), - [anon_sym_hide_DASHenv] = ACTIONS(2219), - [anon_sym_overlay] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_not] = ACTIONS(2219), - [anon_sym_DOT_DOT_LT] = ACTIONS(2219), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2219), - [sym_val_nothing] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym_val_number_token1] = ACTIONS(2219), - [aux_sym_val_number_token2] = ACTIONS(2219), - [aux_sym_val_number_token3] = ACTIONS(2219), - [aux_sym_val_number_token4] = ACTIONS(2219), - [aux_sym_val_number_token5] = ACTIONS(2219), - [anon_sym_inf] = ACTIONS(2219), - [anon_sym_DASHinf] = ACTIONS(2219), - [anon_sym_NaN] = ACTIONS(2219), - [anon_sym_0b] = ACTIONS(2219), - [anon_sym_0o] = ACTIONS(2219), - [anon_sym_0x] = ACTIONS(2219), - [sym_val_date] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym__str_single_quotes] = ACTIONS(2219), - [sym__str_back_ticks] = ACTIONS(2219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), + [610] = { + [sym__command_name] = STATE(1064), + [sym_scope_pattern] = STATE(1031), + [sym_wild_card] = STATE(1059), + [sym_command_list] = STATE(1056), + [sym_val_string] = STATE(963), + [sym__str_double_quotes] = STATE(998), + [sym_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(1229), + [anon_sym_export] = ACTIONS(1227), + [anon_sym_alias] = ACTIONS(1227), + [anon_sym_let] = ACTIONS(1227), + [anon_sym_let_DASHenv] = ACTIONS(1227), + [anon_sym_mut] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_cmd_identifier] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1229), + [anon_sym_def] = ACTIONS(1227), + [anon_sym_def_DASHenv] = ACTIONS(1227), + [anon_sym_export_DASHenv] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym_module] = ACTIONS(1227), + [anon_sym_use] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_error] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_source] = ACTIONS(1227), + [anon_sym_source_DASHenv] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_hide] = ACTIONS(1227), + [anon_sym_hide_DASHenv] = ACTIONS(1227), + [anon_sym_overlay] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_where] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1227), + [anon_sym_DOT_DOT_LT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [sym_val_nothing] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [aux_sym_val_number_token1] = ACTIONS(1227), + [aux_sym_val_number_token2] = ACTIONS(1227), + [aux_sym_val_number_token3] = ACTIONS(1227), + [aux_sym_val_number_token4] = ACTIONS(1227), + [aux_sym_val_number_token5] = ACTIONS(1227), + [anon_sym_inf] = ACTIONS(1227), + [anon_sym_DASHinf] = ACTIONS(1227), + [anon_sym_NaN] = ACTIONS(1227), + [anon_sym_0b] = ACTIONS(1227), + [anon_sym_0o] = ACTIONS(1227), + [anon_sym_0x] = ACTIONS(1227), + [sym_val_date] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), [anon_sym_POUND] = ACTIONS(3), }, - [884] = { - [sym_comment] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(1495), - [anon_sym_export] = ACTIONS(1493), - [anon_sym_alias] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_let_DASHenv] = ACTIONS(1493), - [anon_sym_mut] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [sym_cmd_identifier] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1493), - [anon_sym_def_DASHenv] = ACTIONS(1493), - [anon_sym_export_DASHenv] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_error] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_source] = ACTIONS(1493), - [anon_sym_source_DASHenv] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_hide] = ACTIONS(1493), - [anon_sym_hide_DASHenv] = ACTIONS(1493), - [anon_sym_overlay] = ACTIONS(1493), - [anon_sym_where] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [sym_val_nothing] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1493), - [anon_sym_DASHinf] = ACTIONS(1493), - [anon_sym_NaN] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1493), - [anon_sym_0o] = ACTIONS(1493), - [anon_sym_0x] = ACTIONS(1493), - [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_CARET] = ACTIONS(1493), + [611] = { + [sym_comment] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_STAR_STAR] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_bit_DASHshl] = ACTIONS(907), + [anon_sym_bit_DASHshr] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_not_DASHin] = ACTIONS(907), + [anon_sym_starts_DASHwith] = ACTIONS(907), + [anon_sym_ends_DASHwith] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [anon_sym_bit_DASHand] = ACTIONS(907), + [anon_sym_bit_DASHxor] = ACTIONS(907), + [anon_sym_bit_DASHor] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_err_GT] = ACTIONS(907), + [anon_sym_out_GT] = ACTIONS(907), + [anon_sym_e_GT] = ACTIONS(907), + [anon_sym_o_GT] = ACTIONS(907), + [anon_sym_err_PLUSout_GT] = ACTIONS(907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(907), + [anon_sym_o_PLUSe_GT] = ACTIONS(907), + [anon_sym_e_PLUSo_GT] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), + [aux_sym_unquoted_token1] = ACTIONS(907), [anon_sym_POUND] = ACTIONS(3), }, - [885] = { - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [sym_cmd_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2231), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_def_DASHenv] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [sym_val_nothing] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [aux_sym_val_number_token1] = ACTIONS(2229), - [aux_sym_val_number_token2] = ACTIONS(2229), - [aux_sym_val_number_token3] = ACTIONS(2229), - [aux_sym_val_number_token4] = ACTIONS(2229), - [aux_sym_val_number_token5] = ACTIONS(2229), - [anon_sym_inf] = ACTIONS(2229), - [anon_sym_DASHinf] = ACTIONS(2229), - [anon_sym_NaN] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [sym__str_single_quotes] = ACTIONS(2229), - [sym__str_back_ticks] = ACTIONS(2229), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), + [612] = { + [sym_comment] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [886] = { - [sym_comment] = STATE(886), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_alias] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_let_DASHenv] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [sym_cmd_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2235), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_def_DASHenv] = ACTIONS(2233), - [anon_sym_export_DASHenv] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_error] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_source] = ACTIONS(2233), - [anon_sym_source_DASHenv] = ACTIONS(2233), - [anon_sym_register] = ACTIONS(2233), - [anon_sym_hide] = ACTIONS(2233), - [anon_sym_hide_DASHenv] = ACTIONS(2233), - [anon_sym_overlay] = ACTIONS(2233), - [anon_sym_where] = ACTIONS(2233), - [anon_sym_not] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [sym_val_nothing] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [aux_sym_val_number_token1] = ACTIONS(2233), - [aux_sym_val_number_token2] = ACTIONS(2233), - [aux_sym_val_number_token3] = ACTIONS(2233), - [aux_sym_val_number_token4] = ACTIONS(2233), - [aux_sym_val_number_token5] = ACTIONS(2233), - [anon_sym_inf] = ACTIONS(2233), - [anon_sym_DASHinf] = ACTIONS(2233), - [anon_sym_NaN] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2233), - [anon_sym_0o] = ACTIONS(2233), - [anon_sym_0x] = ACTIONS(2233), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), + [613] = { + [sym_comment] = STATE(613), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [sym_val_nothing] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1018), + [anon_sym_false] = ACTIONS(1018), + [aux_sym_val_number_token1] = ACTIONS(1018), + [aux_sym_val_number_token2] = ACTIONS(1018), + [aux_sym_val_number_token3] = ACTIONS(1018), + [aux_sym_val_number_token4] = ACTIONS(1018), + [aux_sym_val_number_token5] = ACTIONS(1018), + [anon_sym_inf] = ACTIONS(1018), + [anon_sym_DASHinf] = ACTIONS(1018), + [anon_sym_NaN] = ACTIONS(1018), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [sym_short_flag] = ACTIONS(1018), + [aux_sym_unquoted_token1] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(3), }, - [887] = { - [sym_comment] = STATE(887), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [sym_cmd_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_def_DASHenv] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(2237), - [anon_sym_not] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [sym_val_nothing] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym_val_number_token1] = ACTIONS(2237), - [aux_sym_val_number_token2] = ACTIONS(2237), - [aux_sym_val_number_token3] = ACTIONS(2237), - [aux_sym_val_number_token4] = ACTIONS(2237), - [aux_sym_val_number_token5] = ACTIONS(2237), - [anon_sym_inf] = ACTIONS(2237), - [anon_sym_DASHinf] = ACTIONS(2237), - [anon_sym_NaN] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), + [614] = { + [sym_comment] = STATE(614), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [888] = { - [sym_comment] = STATE(888), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [sym_cmd_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_def_DASHenv] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(2237), - [anon_sym_not] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [sym_val_nothing] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym_val_number_token1] = ACTIONS(2237), - [aux_sym_val_number_token2] = ACTIONS(2237), - [aux_sym_val_number_token3] = ACTIONS(2237), - [aux_sym_val_number_token4] = ACTIONS(2237), - [aux_sym_val_number_token5] = ACTIONS(2237), - [anon_sym_inf] = ACTIONS(2237), - [anon_sym_DASHinf] = ACTIONS(2237), - [anon_sym_NaN] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), + [615] = { + [sym_comment] = STATE(615), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_err_GT] = ACTIONS(780), + [anon_sym_out_GT] = ACTIONS(780), + [anon_sym_e_GT] = ACTIONS(780), + [anon_sym_o_GT] = ACTIONS(780), + [anon_sym_err_PLUSout_GT] = ACTIONS(780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(780), + [anon_sym_o_PLUSe_GT] = ACTIONS(780), + [anon_sym_e_PLUSo_GT] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), + [aux_sym_unquoted_token1] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [889] = { - [sym_comment] = STATE(889), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_export] = ACTIONS(901), - [anon_sym_alias] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_let_DASHenv] = ACTIONS(901), - [anon_sym_mut] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [sym_cmd_identifier] = ACTIONS(901), - [anon_sym_LF] = ACTIONS(903), - [anon_sym_def] = ACTIONS(901), - [anon_sym_def_DASHenv] = ACTIONS(901), - [anon_sym_export_DASHenv] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_error] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_source] = ACTIONS(901), - [anon_sym_source_DASHenv] = ACTIONS(901), - [anon_sym_register] = ACTIONS(901), - [anon_sym_hide] = ACTIONS(901), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_not] = ACTIONS(901), - [anon_sym_DOT_DOT_LT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(901), - [sym_val_nothing] = ACTIONS(901), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [aux_sym_val_number_token1] = ACTIONS(901), - [aux_sym_val_number_token2] = ACTIONS(901), - [aux_sym_val_number_token3] = ACTIONS(901), - [aux_sym_val_number_token4] = ACTIONS(901), - [aux_sym_val_number_token5] = ACTIONS(901), - [anon_sym_inf] = ACTIONS(901), - [anon_sym_DASHinf] = ACTIONS(901), - [anon_sym_NaN] = ACTIONS(901), - [anon_sym_0b] = ACTIONS(901), - [anon_sym_0o] = ACTIONS(901), - [anon_sym_0x] = ACTIONS(901), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym__str_single_quotes] = ACTIONS(901), - [sym__str_back_ticks] = ACTIONS(901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), + [616] = { + [sym_comment] = STATE(616), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [890] = { - [sym_comment] = STATE(890), - [ts_builtin_sym_end] = ACTIONS(822), - [anon_sym_export] = ACTIONS(820), - [anon_sym_alias] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_let_DASHenv] = ACTIONS(820), - [anon_sym_mut] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [sym_cmd_identifier] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(822), - [anon_sym_def] = ACTIONS(820), - [anon_sym_def_DASHenv] = ACTIONS(820), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_use] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_match] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(820), - [anon_sym_hide] = ACTIONS(820), - [anon_sym_hide_DASHenv] = ACTIONS(820), - [anon_sym_overlay] = ACTIONS(820), - [anon_sym_where] = ACTIONS(820), - [anon_sym_not] = ACTIONS(820), - [anon_sym_DOT_DOT_LT] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(820), - [sym_val_nothing] = ACTIONS(820), - [anon_sym_true] = ACTIONS(820), - [anon_sym_false] = ACTIONS(820), - [aux_sym_val_number_token1] = ACTIONS(820), - [aux_sym_val_number_token2] = ACTIONS(820), - [aux_sym_val_number_token3] = ACTIONS(820), - [aux_sym_val_number_token4] = ACTIONS(820), - [aux_sym_val_number_token5] = ACTIONS(820), - [anon_sym_inf] = ACTIONS(820), - [anon_sym_DASHinf] = ACTIONS(820), - [anon_sym_NaN] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(820), - [anon_sym_0o] = ACTIONS(820), - [anon_sym_0x] = ACTIONS(820), - [sym_val_date] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [sym__str_single_quotes] = ACTIONS(820), - [sym__str_back_ticks] = ACTIONS(820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), + [617] = { + [sym__flag] = STATE(785), + [sym_long_flag] = STATE(799), + [sym_comment] = STATE(617), + [aux_sym_overlay_use_repeat1] = STATE(631), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_def_DASHenv] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_DOT_DOT_LT] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [sym_val_nothing] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym_val_number_token1] = ACTIONS(1361), + [aux_sym_val_number_token2] = ACTIONS(1361), + [aux_sym_val_number_token3] = ACTIONS(1361), + [aux_sym_val_number_token4] = ACTIONS(1361), + [aux_sym_val_number_token5] = ACTIONS(1361), + [anon_sym_inf] = ACTIONS(1361), + [anon_sym_DASHinf] = ACTIONS(1361), + [anon_sym_NaN] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), + [sym_short_flag] = ACTIONS(1369), [anon_sym_POUND] = ACTIONS(3), }, - [891] = { - [sym_comment] = STATE(891), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [sym_cmd_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_def_DASHenv] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_not] = ACTIONS(2241), - [anon_sym_DOT_DOT_LT] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), - [sym_val_nothing] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [aux_sym_val_number_token1] = ACTIONS(2241), - [aux_sym_val_number_token2] = ACTIONS(2241), - [aux_sym_val_number_token3] = ACTIONS(2241), - [aux_sym_val_number_token4] = ACTIONS(2241), - [aux_sym_val_number_token5] = ACTIONS(2241), - [anon_sym_inf] = ACTIONS(2241), - [anon_sym_DASHinf] = ACTIONS(2241), - [anon_sym_NaN] = ACTIONS(2241), - [anon_sym_0b] = ACTIONS(2241), - [anon_sym_0o] = ACTIONS(2241), - [anon_sym_0x] = ACTIONS(2241), - [sym_val_date] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), + [618] = { + [sym_path] = STATE(756), + [sym_comment] = STATE(618), + [aux_sym_cell_path_repeat1] = STATE(618), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [sym_short_flag] = ACTIONS(723), [anon_sym_POUND] = ACTIONS(3), }, - [892] = { - [sym_comment] = STATE(892), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [sym_cmd_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_def_DASHenv] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_not] = ACTIONS(2241), - [anon_sym_DOT_DOT_LT] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), - [sym_val_nothing] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [aux_sym_val_number_token1] = ACTIONS(2241), - [aux_sym_val_number_token2] = ACTIONS(2241), - [aux_sym_val_number_token3] = ACTIONS(2241), - [aux_sym_val_number_token4] = ACTIONS(2241), - [aux_sym_val_number_token5] = ACTIONS(2241), - [anon_sym_inf] = ACTIONS(2241), - [anon_sym_DASHinf] = ACTIONS(2241), - [anon_sym_NaN] = ACTIONS(2241), - [anon_sym_0b] = ACTIONS(2241), - [anon_sym_0o] = ACTIONS(2241), - [anon_sym_0x] = ACTIONS(2241), - [sym_val_date] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), + [619] = { + [sym_comment] = STATE(619), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_err_GT] = ACTIONS(784), + [anon_sym_out_GT] = ACTIONS(784), + [anon_sym_e_GT] = ACTIONS(784), + [anon_sym_o_GT] = ACTIONS(784), + [anon_sym_err_PLUSout_GT] = ACTIONS(784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(784), + [anon_sym_o_PLUSe_GT] = ACTIONS(784), + [anon_sym_e_PLUSo_GT] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), + [aux_sym_unquoted_token1] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [893] = { - [sym_comment] = STATE(893), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [sym_cmd_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_def_DASHenv] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_not] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [sym_val_nothing] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym_val_number_token1] = ACTIONS(2245), - [aux_sym_val_number_token2] = ACTIONS(2245), - [aux_sym_val_number_token3] = ACTIONS(2245), - [aux_sym_val_number_token4] = ACTIONS(2245), - [aux_sym_val_number_token5] = ACTIONS(2245), - [anon_sym_inf] = ACTIONS(2245), - [anon_sym_DASHinf] = ACTIONS(2245), - [anon_sym_NaN] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [sym_short_flag] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(922), [anon_sym_POUND] = ACTIONS(3), }, - [894] = { - [sym_comment] = STATE(894), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [sym_cmd_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_def_DASHenv] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_not] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [sym_val_nothing] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym_val_number_token1] = ACTIONS(2245), - [aux_sym_val_number_token2] = ACTIONS(2245), - [aux_sym_val_number_token3] = ACTIONS(2245), - [aux_sym_val_number_token4] = ACTIONS(2245), - [aux_sym_val_number_token5] = ACTIONS(2245), - [anon_sym_inf] = ACTIONS(2245), - [anon_sym_DASHinf] = ACTIONS(2245), - [anon_sym_NaN] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), + [621] = { + [sym__flag] = STATE(785), + [sym_long_flag] = STATE(799), + [sym_comment] = STATE(621), + [aux_sym_overlay_use_repeat1] = STATE(621), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_def_DASHenv] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_DOT_DOT_LT] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), + [sym_val_nothing] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym_val_number_token1] = ACTIONS(1374), + [aux_sym_val_number_token2] = ACTIONS(1374), + [aux_sym_val_number_token3] = ACTIONS(1374), + [aux_sym_val_number_token4] = ACTIONS(1374), + [aux_sym_val_number_token5] = ACTIONS(1374), + [anon_sym_inf] = ACTIONS(1374), + [anon_sym_DASHinf] = ACTIONS(1374), + [anon_sym_NaN] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [sym_short_flag] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(3), }, - [895] = { - [sym_comment] = STATE(895), - [ts_builtin_sym_end] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2039), - [anon_sym_alias] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(2039), - [anon_sym_let_DASHenv] = ACTIONS(2039), - [anon_sym_mut] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2039), - [sym_cmd_identifier] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2039), - [anon_sym_def_DASHenv] = ACTIONS(2039), - [anon_sym_export_DASHenv] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_module] = ACTIONS(2039), - [anon_sym_use] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2039), - [anon_sym_error] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_loop] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_do] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_source] = ACTIONS(2039), - [anon_sym_source_DASHenv] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2039), - [anon_sym_hide] = ACTIONS(2039), - [anon_sym_hide_DASHenv] = ACTIONS(2039), - [anon_sym_overlay] = ACTIONS(2039), - [anon_sym_where] = ACTIONS(2039), - [anon_sym_not] = ACTIONS(2039), - [anon_sym_DOT_DOT_LT] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2039), - [sym_val_nothing] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2039), - [anon_sym_DASHinf] = ACTIONS(2039), - [anon_sym_NaN] = ACTIONS(2039), - [anon_sym_0b] = ACTIONS(2039), - [anon_sym_0o] = ACTIONS(2039), - [anon_sym_0x] = ACTIONS(2039), - [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_CARET] = ACTIONS(2039), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_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), + [sym_short_flag] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(3), }, - [896] = { - [sym_comment] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(826), - [anon_sym_export] = ACTIONS(824), - [anon_sym_alias] = ACTIONS(824), - [anon_sym_let] = ACTIONS(824), - [anon_sym_let_DASHenv] = ACTIONS(824), - [anon_sym_mut] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [sym_cmd_identifier] = ACTIONS(824), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_def] = ACTIONS(824), - [anon_sym_def_DASHenv] = ACTIONS(824), - [anon_sym_export_DASHenv] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(824), - [anon_sym_module] = ACTIONS(824), - [anon_sym_use] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_error] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_break] = ACTIONS(824), - [anon_sym_continue] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_loop] = ACTIONS(824), - [anon_sym_while] = ACTIONS(824), - [anon_sym_do] = ACTIONS(824), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_try] = ACTIONS(824), - [anon_sym_return] = ACTIONS(824), - [anon_sym_source] = ACTIONS(824), - [anon_sym_source_DASHenv] = ACTIONS(824), - [anon_sym_register] = ACTIONS(824), - [anon_sym_hide] = ACTIONS(824), - [anon_sym_hide_DASHenv] = ACTIONS(824), - [anon_sym_overlay] = ACTIONS(824), - [anon_sym_where] = ACTIONS(824), - [anon_sym_not] = ACTIONS(824), - [anon_sym_DOT_DOT_LT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(824), - [sym_val_nothing] = ACTIONS(824), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [aux_sym_val_number_token1] = ACTIONS(824), - [aux_sym_val_number_token2] = ACTIONS(824), - [aux_sym_val_number_token3] = ACTIONS(824), - [aux_sym_val_number_token4] = ACTIONS(824), - [aux_sym_val_number_token5] = ACTIONS(824), - [anon_sym_inf] = ACTIONS(824), - [anon_sym_DASHinf] = ACTIONS(824), - [anon_sym_NaN] = ACTIONS(824), - [anon_sym_0b] = ACTIONS(824), - [anon_sym_0o] = ACTIONS(824), - [anon_sym_0x] = ACTIONS(824), - [sym_val_date] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [sym__str_single_quotes] = ACTIONS(824), - [sym__str_back_ticks] = ACTIONS(824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_err_GT] = ACTIONS(930), + [anon_sym_out_GT] = ACTIONS(930), + [anon_sym_e_GT] = ACTIONS(930), + [anon_sym_o_GT] = ACTIONS(930), + [anon_sym_err_PLUSout_GT] = ACTIONS(930), + [anon_sym_out_PLUSerr_GT] = ACTIONS(930), + [anon_sym_o_PLUSe_GT] = ACTIONS(930), + [anon_sym_e_PLUSo_GT] = ACTIONS(930), + [sym_short_flag] = ACTIONS(930), + [aux_sym_unquoted_token1] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(3), }, - [897] = { - [sym_val_record] = STATE(960), - [sym_comment] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(2031), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_SEMI] = ACTIONS(2029), - [sym_cmd_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_def_DASHenv] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_where] = ACTIONS(2029), - [anon_sym_not] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT] = ACTIONS(2029), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [sym_val_nothing] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [aux_sym_val_number_token1] = ACTIONS(2029), - [aux_sym_val_number_token2] = ACTIONS(2029), - [aux_sym_val_number_token3] = ACTIONS(2029), - [aux_sym_val_number_token4] = ACTIONS(2029), - [aux_sym_val_number_token5] = ACTIONS(2029), - [anon_sym_inf] = ACTIONS(2029), - [anon_sym_DASHinf] = ACTIONS(2029), - [anon_sym_NaN] = ACTIONS(2029), - [anon_sym_0b] = ACTIONS(2029), - [anon_sym_0o] = ACTIONS(2029), - [anon_sym_0x] = ACTIONS(2029), - [sym_val_date] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym__str_single_quotes] = ACTIONS(2029), - [sym__str_back_ticks] = ACTIONS(2029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2029), + [624] = { + [sym_comment] = STATE(624), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_LF] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_in] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_bit_DASHshl] = ACTIONS(988), + [anon_sym_bit_DASHshr] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_not_DASHin] = ACTIONS(988), + [anon_sym_starts_DASHwith] = ACTIONS(988), + [anon_sym_ends_DASHwith] = ACTIONS(988), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_BANG_TILDE] = ACTIONS(988), + [anon_sym_bit_DASHand] = ACTIONS(988), + [anon_sym_bit_DASHxor] = ACTIONS(988), + [anon_sym_bit_DASHor] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [sym_val_nothing] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym_val_number_token1] = ACTIONS(988), + [aux_sym_val_number_token2] = ACTIONS(988), + [aux_sym_val_number_token3] = ACTIONS(988), + [aux_sym_val_number_token4] = ACTIONS(988), + [aux_sym_val_number_token5] = ACTIONS(988), + [anon_sym_inf] = ACTIONS(988), + [anon_sym_DASHinf] = ACTIONS(988), + [anon_sym_NaN] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [sym_short_flag] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(3), }, - [898] = { - [sym_val_record] = STATE(966), - [sym_comment] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(2037), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2035), - [sym_cmd_identifier] = ACTIONS(2035), - [anon_sym_LF] = ACTIONS(2037), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_def_DASHenv] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_not] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [sym_val_nothing] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [aux_sym_val_number_token1] = ACTIONS(2035), - [aux_sym_val_number_token2] = ACTIONS(2035), - [aux_sym_val_number_token3] = ACTIONS(2035), - [aux_sym_val_number_token4] = ACTIONS(2035), - [aux_sym_val_number_token5] = ACTIONS(2035), - [anon_sym_inf] = ACTIONS(2035), - [anon_sym_DASHinf] = ACTIONS(2035), - [anon_sym_NaN] = ACTIONS(2035), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2035), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [899] = { - [sym_comment] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(1717), - [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), - [anon_sym_SEMI] = ACTIONS(1715), - [sym_cmd_identifier] = ACTIONS(1715), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_where] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [sym_val_nothing] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1715), - [anon_sym_DASHinf] = ACTIONS(1715), - [anon_sym_NaN] = ACTIONS(1715), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = 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_CARET] = ACTIONS(1715), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [900] = { - [sym_comment] = STATE(900), - [ts_builtin_sym_end] = ACTIONS(1569), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_alias] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_let_DASHenv] = ACTIONS(1567), - [anon_sym_mut] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [sym_cmd_identifier] = ACTIONS(1567), - [anon_sym_LF] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1567), - [anon_sym_def_DASHenv] = ACTIONS(1567), - [anon_sym_export_DASHenv] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_source] = ACTIONS(1567), - [anon_sym_source_DASHenv] = ACTIONS(1567), - [anon_sym_register] = ACTIONS(1567), - [anon_sym_hide] = ACTIONS(1567), - [anon_sym_hide_DASHenv] = ACTIONS(1567), - [anon_sym_overlay] = ACTIONS(1567), - [anon_sym_where] = ACTIONS(1567), - [anon_sym_not] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), - [sym_val_nothing] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [aux_sym_val_number_token1] = ACTIONS(1567), - [aux_sym_val_number_token2] = ACTIONS(1567), - [aux_sym_val_number_token3] = ACTIONS(1567), - [aux_sym_val_number_token4] = ACTIONS(1567), - [aux_sym_val_number_token5] = ACTIONS(1567), - [anon_sym_inf] = ACTIONS(1567), - [anon_sym_DASHinf] = ACTIONS(1567), - [anon_sym_NaN] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1567), - [anon_sym_0x] = ACTIONS(1567), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), + [627] = { + [sym__command_name] = STATE(1064), + [sym_scope_pattern] = STATE(1081), + [sym_wild_card] = STATE(1059), + [sym_command_list] = STATE(1056), + [sym_val_string] = STATE(963), + [sym__str_double_quotes] = STATE(998), + [sym_comment] = STATE(627), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_def_DASHenv] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_DOT_DOT_LT] = ACTIONS(1209), + [anon_sym_DOT_DOT] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [sym_val_nothing] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym_val_number_token1] = ACTIONS(1209), + [aux_sym_val_number_token2] = ACTIONS(1209), + [aux_sym_val_number_token3] = ACTIONS(1209), + [aux_sym_val_number_token4] = ACTIONS(1209), + [aux_sym_val_number_token5] = ACTIONS(1209), + [anon_sym_inf] = ACTIONS(1209), + [anon_sym_DASHinf] = ACTIONS(1209), + [anon_sym_NaN] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(3), }, - [901] = { - [sym_comment] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(834), - [anon_sym_export] = ACTIONS(832), - [anon_sym_alias] = ACTIONS(832), - [anon_sym_let] = ACTIONS(832), - [anon_sym_let_DASHenv] = ACTIONS(832), - [anon_sym_mut] = ACTIONS(832), - [anon_sym_const] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [sym_cmd_identifier] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_def] = ACTIONS(832), - [anon_sym_def_DASHenv] = ACTIONS(832), - [anon_sym_export_DASHenv] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_use] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_error] = ACTIONS(832), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_while] = ACTIONS(832), - [anon_sym_do] = ACTIONS(832), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_try] = ACTIONS(832), - [anon_sym_return] = ACTIONS(832), - [anon_sym_source] = ACTIONS(832), - [anon_sym_source_DASHenv] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_hide] = ACTIONS(832), - [anon_sym_hide_DASHenv] = ACTIONS(832), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(832), - [anon_sym_not] = ACTIONS(832), - [anon_sym_DOT_DOT_LT] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(832), - [sym_val_nothing] = ACTIONS(832), - [anon_sym_true] = ACTIONS(832), - [anon_sym_false] = ACTIONS(832), - [aux_sym_val_number_token1] = ACTIONS(832), - [aux_sym_val_number_token2] = ACTIONS(832), - [aux_sym_val_number_token3] = ACTIONS(832), - [aux_sym_val_number_token4] = ACTIONS(832), - [aux_sym_val_number_token5] = ACTIONS(832), - [anon_sym_inf] = ACTIONS(832), - [anon_sym_DASHinf] = ACTIONS(832), - [anon_sym_NaN] = ACTIONS(832), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(832), - [anon_sym_0x] = ACTIONS(832), - [sym_val_date] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(832), - [sym__str_back_ticks] = ACTIONS(832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(832), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_LF] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_STAR_STAR] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_mod] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_bit_DASHshl] = ACTIONS(976), + [anon_sym_bit_DASHshr] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_not_DASHin] = ACTIONS(976), + [anon_sym_starts_DASHwith] = ACTIONS(976), + [anon_sym_ends_DASHwith] = ACTIONS(976), + [anon_sym_EQ_TILDE] = ACTIONS(976), + [anon_sym_BANG_TILDE] = ACTIONS(976), + [anon_sym_bit_DASHand] = ACTIONS(976), + [anon_sym_bit_DASHxor] = ACTIONS(976), + [anon_sym_bit_DASHor] = ACTIONS(976), + [anon_sym_and] = ACTIONS(976), + [anon_sym_xor] = ACTIONS(976), + [anon_sym_or] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [sym_val_nothing] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = 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(976), + [aux_sym_val_number_token5] = ACTIONS(976), + [anon_sym_inf] = ACTIONS(976), + [anon_sym_DASHinf] = ACTIONS(976), + [anon_sym_NaN] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(976), + [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_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [sym_short_flag] = ACTIONS(976), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [902] = { - [sym_comment] = STATE(902), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_alias] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_let_DASHenv] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [sym_cmd_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_def] = ACTIONS(2249), - [anon_sym_def_DASHenv] = ACTIONS(2249), - [anon_sym_export_DASHenv] = ACTIONS(2249), - [anon_sym_extern] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_error] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_source] = ACTIONS(2249), - [anon_sym_source_DASHenv] = ACTIONS(2249), - [anon_sym_register] = ACTIONS(2249), - [anon_sym_hide] = ACTIONS(2249), - [anon_sym_hide_DASHenv] = ACTIONS(2249), - [anon_sym_overlay] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_not] = ACTIONS(2249), - [anon_sym_DOT_DOT_LT] = ACTIONS(2249), - [anon_sym_DOT_DOT] = ACTIONS(2249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), - [sym_val_nothing] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [aux_sym_val_number_token1] = ACTIONS(2249), - [aux_sym_val_number_token2] = ACTIONS(2249), - [aux_sym_val_number_token3] = ACTIONS(2249), - [aux_sym_val_number_token4] = ACTIONS(2249), - [aux_sym_val_number_token5] = ACTIONS(2249), - [anon_sym_inf] = ACTIONS(2249), - [anon_sym_DASHinf] = ACTIONS(2249), - [anon_sym_NaN] = ACTIONS(2249), - [anon_sym_0b] = ACTIONS(2249), - [anon_sym_0o] = ACTIONS(2249), - [anon_sym_0x] = ACTIONS(2249), - [sym_val_date] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_STAR_STAR] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_bit_DASHshl] = ACTIONS(972), + [anon_sym_bit_DASHshr] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_not_DASHin] = ACTIONS(972), + [anon_sym_starts_DASHwith] = ACTIONS(972), + [anon_sym_ends_DASHwith] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_BANG_TILDE] = ACTIONS(972), + [anon_sym_bit_DASHand] = ACTIONS(972), + [anon_sym_bit_DASHxor] = ACTIONS(972), + [anon_sym_bit_DASHor] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [sym_val_nothing] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = 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(972), + [aux_sym_val_number_token5] = ACTIONS(972), + [anon_sym_inf] = ACTIONS(972), + [anon_sym_DASHinf] = ACTIONS(972), + [anon_sym_NaN] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(972), + [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_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [sym_short_flag] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), }, - [903] = { - [sym_comment] = STATE(903), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_def_DASHenv] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [sym_val_nothing] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym_val_number_token1] = ACTIONS(1065), - [aux_sym_val_number_token2] = ACTIONS(1065), - [aux_sym_val_number_token3] = ACTIONS(1065), - [aux_sym_val_number_token4] = ACTIONS(1065), - [aux_sym_val_number_token5] = ACTIONS(1065), - [anon_sym_inf] = ACTIONS(1065), - [anon_sym_DASHinf] = ACTIONS(1065), - [anon_sym_NaN] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), + [630] = { + [sym_comment] = STATE(630), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_err_GT] = ACTIONS(934), + [anon_sym_out_GT] = ACTIONS(934), + [anon_sym_e_GT] = ACTIONS(934), + [anon_sym_o_GT] = ACTIONS(934), + [anon_sym_err_PLUSout_GT] = ACTIONS(934), + [anon_sym_out_PLUSerr_GT] = ACTIONS(934), + [anon_sym_o_PLUSe_GT] = ACTIONS(934), + [anon_sym_e_PLUSo_GT] = ACTIONS(934), + [sym_short_flag] = ACTIONS(934), + [aux_sym_unquoted_token1] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(3), }, - [904] = { - [sym_comment] = STATE(904), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_alias] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_let_DASHenv] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2253), - [sym_cmd_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2255), - [anon_sym_def] = ACTIONS(2253), - [anon_sym_def_DASHenv] = ACTIONS(2253), - [anon_sym_export_DASHenv] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_module] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_error] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_source] = ACTIONS(2253), - [anon_sym_source_DASHenv] = ACTIONS(2253), - [anon_sym_register] = ACTIONS(2253), - [anon_sym_hide] = ACTIONS(2253), - [anon_sym_hide_DASHenv] = ACTIONS(2253), - [anon_sym_overlay] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_not] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT] = ACTIONS(2253), - [anon_sym_DOT_DOT] = ACTIONS(2253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), - [sym_val_nothing] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [aux_sym_val_number_token1] = ACTIONS(2253), - [aux_sym_val_number_token2] = ACTIONS(2253), - [aux_sym_val_number_token3] = ACTIONS(2253), - [aux_sym_val_number_token4] = ACTIONS(2253), - [aux_sym_val_number_token5] = ACTIONS(2253), - [anon_sym_inf] = ACTIONS(2253), - [anon_sym_DASHinf] = ACTIONS(2253), - [anon_sym_NaN] = ACTIONS(2253), - [anon_sym_0b] = ACTIONS(2253), - [anon_sym_0o] = ACTIONS(2253), - [anon_sym_0x] = ACTIONS(2253), - [sym_val_date] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), + [631] = { + [sym__flag] = STATE(785), + [sym_long_flag] = STATE(799), + [sym_comment] = STATE(631), + [aux_sym_overlay_use_repeat1] = STATE(621), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_alias] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_let_DASHenv] = ACTIONS(1384), + [anon_sym_mut] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [sym_cmd_identifier] = ACTIONS(1384), + [anon_sym_LF] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1384), + [anon_sym_def_DASHenv] = ACTIONS(1384), + [anon_sym_export_DASHenv] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_error] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_source] = ACTIONS(1384), + [anon_sym_source_DASHenv] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_hide] = ACTIONS(1384), + [anon_sym_hide_DASHenv] = ACTIONS(1384), + [anon_sym_overlay] = ACTIONS(1384), + [anon_sym_as] = ACTIONS(1388), + [anon_sym_where] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1384), + [anon_sym_DOT_DOT_LT] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1384), + [sym_val_nothing] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [aux_sym_val_number_token1] = ACTIONS(1384), + [aux_sym_val_number_token2] = ACTIONS(1384), + [aux_sym_val_number_token3] = ACTIONS(1384), + [aux_sym_val_number_token4] = ACTIONS(1384), + [aux_sym_val_number_token5] = ACTIONS(1384), + [anon_sym_inf] = ACTIONS(1384), + [anon_sym_DASHinf] = ACTIONS(1384), + [anon_sym_NaN] = ACTIONS(1384), + [anon_sym_0b] = ACTIONS(1384), + [anon_sym_0o] = ACTIONS(1384), + [anon_sym_0x] = ACTIONS(1384), + [sym_val_date] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym__str_single_quotes] = ACTIONS(1384), + [sym__str_back_ticks] = ACTIONS(1384), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [sym_short_flag] = ACTIONS(1369), [anon_sym_POUND] = ACTIONS(3), }, - [905] = { - [sym__terminator] = STATE(846), - [sym_comment] = STATE(905), - [aux_sym__block_body_repeat1] = STATE(745), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_alias] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_let_DASHenv] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2069), - [sym_cmd_identifier] = ACTIONS(2257), - [anon_sym_LF] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2257), - [anon_sym_def_DASHenv] = ACTIONS(2257), - [anon_sym_export_DASHenv] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_error] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_loop] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_source] = ACTIONS(2257), - [anon_sym_source_DASHenv] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_hide] = ACTIONS(2257), - [anon_sym_hide_DASHenv] = ACTIONS(2257), - [anon_sym_overlay] = ACTIONS(2257), - [anon_sym_where] = ACTIONS(2257), - [anon_sym_not] = ACTIONS(2257), - [anon_sym_DOT_DOT_LT] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), - [sym_val_nothing] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [aux_sym_val_number_token1] = ACTIONS(2257), - [aux_sym_val_number_token2] = ACTIONS(2257), - [aux_sym_val_number_token3] = ACTIONS(2257), - [aux_sym_val_number_token4] = ACTIONS(2257), - [aux_sym_val_number_token5] = ACTIONS(2257), - [anon_sym_inf] = ACTIONS(2257), - [anon_sym_DASHinf] = ACTIONS(2257), - [anon_sym_NaN] = ACTIONS(2257), - [anon_sym_0b] = ACTIONS(2257), - [anon_sym_0o] = ACTIONS(2257), - [anon_sym_0x] = ACTIONS(2257), - [sym_val_date] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [sym__str_single_quotes] = ACTIONS(2257), - [sym__str_back_ticks] = ACTIONS(2257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2257), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), + [632] = { + [sym__flag] = STATE(785), + [sym_long_flag] = STATE(799), + [sym_comment] = STATE(632), + [aux_sym_overlay_use_repeat1] = STATE(643), + [anon_sym_export] = ACTIONS(1390), + [anon_sym_alias] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_let_DASHenv] = ACTIONS(1390), + [anon_sym_mut] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [sym_cmd_identifier] = ACTIONS(1390), + [anon_sym_LF] = ACTIONS(1392), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_def_DASHenv] = ACTIONS(1390), + [anon_sym_export_DASHenv] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_module] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_error] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_source] = ACTIONS(1390), + [anon_sym_source_DASHenv] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_hide] = ACTIONS(1390), + [anon_sym_hide_DASHenv] = ACTIONS(1390), + [anon_sym_overlay] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1390), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_DOT_DOT_LT] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), + [sym_val_nothing] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [aux_sym_val_number_token1] = ACTIONS(1390), + [aux_sym_val_number_token2] = ACTIONS(1390), + [aux_sym_val_number_token3] = ACTIONS(1390), + [aux_sym_val_number_token4] = ACTIONS(1390), + [aux_sym_val_number_token5] = ACTIONS(1390), + [anon_sym_inf] = ACTIONS(1390), + [anon_sym_DASHinf] = ACTIONS(1390), + [anon_sym_NaN] = ACTIONS(1390), + [anon_sym_0b] = ACTIONS(1390), + [anon_sym_0o] = ACTIONS(1390), + [anon_sym_0x] = ACTIONS(1390), + [sym_val_date] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym__str_single_quotes] = ACTIONS(1390), + [sym__str_back_ticks] = ACTIONS(1390), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [sym_short_flag] = ACTIONS(1369), [anon_sym_POUND] = ACTIONS(3), }, - [906] = { - [sym_comment] = STATE(906), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_alias] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_let_DASHenv] = ACTIONS(2259), - [anon_sym_mut] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [sym_cmd_identifier] = ACTIONS(2259), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_def_DASHenv] = ACTIONS(2259), - [anon_sym_export_DASHenv] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_error] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_source] = ACTIONS(2259), - [anon_sym_source_DASHenv] = ACTIONS(2259), - [anon_sym_register] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_hide_DASHenv] = ACTIONS(2259), - [anon_sym_overlay] = ACTIONS(2259), - [anon_sym_where] = ACTIONS(2259), - [anon_sym_not] = ACTIONS(2259), - [anon_sym_DOT_DOT_LT] = ACTIONS(2259), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2259), - [sym_val_nothing] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [aux_sym_val_number_token1] = ACTIONS(2259), - [aux_sym_val_number_token2] = ACTIONS(2259), - [aux_sym_val_number_token3] = ACTIONS(2259), - [aux_sym_val_number_token4] = ACTIONS(2259), - [aux_sym_val_number_token5] = ACTIONS(2259), - [anon_sym_inf] = ACTIONS(2259), - [anon_sym_DASHinf] = ACTIONS(2259), - [anon_sym_NaN] = ACTIONS(2259), - [anon_sym_0b] = ACTIONS(2259), - [anon_sym_0o] = ACTIONS(2259), - [anon_sym_0x] = ACTIONS(2259), - [sym_val_date] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym__str_single_quotes] = ACTIONS(2259), - [sym__str_back_ticks] = ACTIONS(2259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), + [633] = { + [sym__command_name] = STATE(1064), + [sym_scope_pattern] = STATE(1061), + [sym_wild_card] = STATE(1059), + [sym_command_list] = STATE(1056), + [sym_val_string] = STATE(963), + [sym__str_double_quotes] = STATE(998), + [sym_comment] = STATE(633), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_alias] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_let_DASHenv] = ACTIONS(1231), + [anon_sym_mut] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_cmd_identifier] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1231), + [anon_sym_def_DASHenv] = ACTIONS(1231), + [anon_sym_export_DASHenv] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_error] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_loop] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_source] = ACTIONS(1231), + [anon_sym_source_DASHenv] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_hide_DASHenv] = ACTIONS(1231), + [anon_sym_overlay] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_where] = ACTIONS(1231), + [anon_sym_not] = ACTIONS(1231), + [anon_sym_DOT_DOT_LT] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [sym_val_nothing] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym_val_number_token1] = ACTIONS(1231), + [aux_sym_val_number_token2] = ACTIONS(1231), + [aux_sym_val_number_token3] = ACTIONS(1231), + [aux_sym_val_number_token4] = ACTIONS(1231), + [aux_sym_val_number_token5] = ACTIONS(1231), + [anon_sym_inf] = ACTIONS(1231), + [anon_sym_DASHinf] = ACTIONS(1231), + [anon_sym_NaN] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), [anon_sym_POUND] = ACTIONS(3), }, - [907] = { - [sym_comment] = STATE(907), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_cmd_identifier] = ACTIONS(2263), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_def_DASHenv] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_where] = ACTIONS(2263), - [anon_sym_not] = ACTIONS(2263), - [anon_sym_DOT_DOT_LT] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2263), - [sym_val_nothing] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [aux_sym_val_number_token1] = ACTIONS(2263), - [aux_sym_val_number_token2] = ACTIONS(2263), - [aux_sym_val_number_token3] = ACTIONS(2263), - [aux_sym_val_number_token4] = ACTIONS(2263), - [aux_sym_val_number_token5] = ACTIONS(2263), - [anon_sym_inf] = ACTIONS(2263), - [anon_sym_DASHinf] = ACTIONS(2263), - [anon_sym_NaN] = ACTIONS(2263), - [anon_sym_0b] = ACTIONS(2263), - [anon_sym_0o] = ACTIONS(2263), - [anon_sym_0x] = ACTIONS(2263), - [sym_val_date] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym__str_single_quotes] = ACTIONS(2263), - [sym__str_back_ticks] = ACTIONS(2263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2263), - [anon_sym_CARET] = ACTIONS(2263), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_in] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [sym_val_nothing] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(968), + [anon_sym_DASHinf] = ACTIONS(968), + [anon_sym_NaN] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [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_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [sym_short_flag] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), }, - [908] = { - [sym_comment] = STATE(908), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [sym_cmd_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_def_DASHenv] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_not] = ACTIONS(2267), - [anon_sym_DOT_DOT_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2267), - [sym_val_nothing] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [aux_sym_val_number_token1] = ACTIONS(2267), - [aux_sym_val_number_token2] = ACTIONS(2267), - [aux_sym_val_number_token3] = ACTIONS(2267), - [aux_sym_val_number_token4] = ACTIONS(2267), - [aux_sym_val_number_token5] = ACTIONS(2267), - [anon_sym_inf] = ACTIONS(2267), - [anon_sym_DASHinf] = ACTIONS(2267), - [anon_sym_NaN] = ACTIONS(2267), - [anon_sym_0b] = ACTIONS(2267), - [anon_sym_0o] = ACTIONS(2267), - [anon_sym_0x] = ACTIONS(2267), - [sym_val_date] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_in] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [sym_short_flag] = ACTIONS(1014), + [aux_sym_unquoted_token1] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [909] = { - [sym_comment] = STATE(909), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [sym_cmd_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_def_DASHenv] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_not] = ACTIONS(2267), - [anon_sym_DOT_DOT_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2267), - [sym_val_nothing] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [aux_sym_val_number_token1] = ACTIONS(2267), - [aux_sym_val_number_token2] = ACTIONS(2267), - [aux_sym_val_number_token3] = ACTIONS(2267), - [aux_sym_val_number_token4] = ACTIONS(2267), - [aux_sym_val_number_token5] = ACTIONS(2267), - [anon_sym_inf] = ACTIONS(2267), - [anon_sym_DASHinf] = ACTIONS(2267), - [anon_sym_NaN] = ACTIONS(2267), - [anon_sym_0b] = ACTIONS(2267), - [anon_sym_0o] = ACTIONS(2267), - [anon_sym_0x] = ACTIONS(2267), - [sym_val_date] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_in] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_STAR_STAR] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_bit_DASHshl] = ACTIONS(964), + [anon_sym_bit_DASHshr] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_not_DASHin] = ACTIONS(964), + [anon_sym_starts_DASHwith] = ACTIONS(964), + [anon_sym_ends_DASHwith] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_BANG_TILDE] = ACTIONS(964), + [anon_sym_bit_DASHand] = ACTIONS(964), + [anon_sym_bit_DASHxor] = ACTIONS(964), + [anon_sym_bit_DASHor] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [sym_val_nothing] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(964), + [anon_sym_DASHinf] = ACTIONS(964), + [anon_sym_NaN] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [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_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), + [sym_short_flag] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), }, - [910] = { - [sym_comment] = STATE(910), - [ts_builtin_sym_end] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [sym_cmd_identifier] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_def_DASHenv] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1979), - [anon_sym_not] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [sym_val_nothing] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1979), - [anon_sym_DASHinf] = ACTIONS(1979), - [anon_sym_NaN] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [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_CARET] = ACTIONS(1979), + [637] = { + [sym_comment] = STATE(637), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_bit_DASHshl] = ACTIONS(960), + [anon_sym_bit_DASHshr] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_not_DASHin] = ACTIONS(960), + [anon_sym_starts_DASHwith] = ACTIONS(960), + [anon_sym_ends_DASHwith] = ACTIONS(960), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_BANG_TILDE] = ACTIONS(960), + [anon_sym_bit_DASHand] = ACTIONS(960), + [anon_sym_bit_DASHxor] = ACTIONS(960), + [anon_sym_bit_DASHor] = ACTIONS(960), + [anon_sym_and] = ACTIONS(960), + [anon_sym_xor] = ACTIONS(960), + [anon_sym_or] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [sym_val_nothing] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(960), + [anon_sym_DASHinf] = ACTIONS(960), + [anon_sym_NaN] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [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_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [sym_short_flag] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), }, - [911] = { - [sym_comment] = STATE(911), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [sym_cmd_identifier] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_def_DASHenv] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(2271), - [anon_sym_DOT_DOT_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2271), - [sym_val_nothing] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [aux_sym_val_number_token1] = ACTIONS(2271), - [aux_sym_val_number_token2] = ACTIONS(2271), - [aux_sym_val_number_token3] = ACTIONS(2271), - [aux_sym_val_number_token4] = ACTIONS(2271), - [aux_sym_val_number_token5] = ACTIONS(2271), - [anon_sym_inf] = ACTIONS(2271), - [anon_sym_DASHinf] = ACTIONS(2271), - [anon_sym_NaN] = ACTIONS(2271), - [anon_sym_0b] = ACTIONS(2271), - [anon_sym_0o] = ACTIONS(2271), - [anon_sym_0x] = ACTIONS(2271), - [sym_val_date] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(3), + [638] = { + [sym__ctrl_expression] = STATE(3819), + [sym_ctrl_do] = STATE(873), + [sym_ctrl_if] = STATE(873), + [sym_ctrl_match] = STATE(873), + [sym_ctrl_try] = STATE(873), + [sym_ctrl_return] = STATE(873), + [sym_pipe_element] = STATE(2027), + [sym_where_command] = STATE(3833), + [sym__expression] = STATE(2884), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_command] = STATE(3833), + [sym_comment] = STATE(638), + [aux_sym_pipeline_repeat1] = STATE(638), + [sym_cmd_identifier] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_where] = ACTIONS(1435), + [anon_sym_not] = ACTIONS(1438), + [anon_sym_DOT_DOT_LT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [sym_val_nothing] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [aux_sym_val_number_token1] = ACTIONS(1453), + [aux_sym_val_number_token2] = ACTIONS(1453), + [aux_sym_val_number_token3] = ACTIONS(1456), + [aux_sym_val_number_token4] = ACTIONS(1456), + [aux_sym_val_number_token5] = ACTIONS(1456), + [anon_sym_inf] = ACTIONS(1453), + [anon_sym_DASHinf] = ACTIONS(1456), + [anon_sym_NaN] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1459), + [anon_sym_0o] = ACTIONS(1459), + [anon_sym_0x] = ACTIONS(1459), + [sym_val_date] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym__str_single_quotes] = ACTIONS(1468), + [sym__str_back_ticks] = ACTIONS(1468), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(157), }, - [912] = { - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [sym_cmd_identifier] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_def_DASHenv] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(2271), - [anon_sym_DOT_DOT_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2271), - [sym_val_nothing] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [aux_sym_val_number_token1] = ACTIONS(2271), - [aux_sym_val_number_token2] = ACTIONS(2271), - [aux_sym_val_number_token3] = ACTIONS(2271), - [aux_sym_val_number_token4] = ACTIONS(2271), - [aux_sym_val_number_token5] = ACTIONS(2271), - [anon_sym_inf] = ACTIONS(2271), - [anon_sym_DASHinf] = ACTIONS(2271), - [anon_sym_NaN] = ACTIONS(2271), - [anon_sym_0b] = ACTIONS(2271), - [anon_sym_0o] = ACTIONS(2271), - [anon_sym_0x] = ACTIONS(2271), - [sym_val_date] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), + [639] = { + [sym_comment] = STATE(639), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_in] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_STAR_STAR] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_bit_DASHshl] = ACTIONS(956), + [anon_sym_bit_DASHshr] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_not_DASHin] = ACTIONS(956), + [anon_sym_starts_DASHwith] = ACTIONS(956), + [anon_sym_ends_DASHwith] = ACTIONS(956), + [anon_sym_EQ_TILDE] = ACTIONS(956), + [anon_sym_BANG_TILDE] = ACTIONS(956), + [anon_sym_bit_DASHand] = ACTIONS(956), + [anon_sym_bit_DASHxor] = ACTIONS(956), + [anon_sym_bit_DASHor] = ACTIONS(956), + [anon_sym_and] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(956), + [anon_sym_or] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [sym_val_nothing] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(956), + [anon_sym_DASHinf] = ACTIONS(956), + [anon_sym_NaN] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [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_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [sym_short_flag] = ACTIONS(956), + [aux_sym_unquoted_token1] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(3), }, - [913] = { - [sym_comment] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_cmd_identifier] = ACTIONS(1983), - [anon_sym_LF] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_def_DASHenv] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [sym_val_nothing] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = 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(1983), - [aux_sym_val_number_token5] = ACTIONS(1983), - [anon_sym_inf] = ACTIONS(1983), - [anon_sym_DASHinf] = ACTIONS(1983), - [anon_sym_NaN] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1983), - [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_CARET] = ACTIONS(1983), + [640] = { + [sym_path] = STATE(756), + [sym_comment] = STATE(640), + [aux_sym_cell_path_repeat1] = STATE(618), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [914] = { - [sym_block] = STATE(1014), - [sym_comment] = STATE(914), - [ts_builtin_sym_end] = ACTIONS(1975), - [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), - [anon_sym_SEMI] = ACTIONS(1973), - [sym_cmd_identifier] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_where] = ACTIONS(1973), - [anon_sym_not] = ACTIONS(1973), - [anon_sym_DOT_DOT_LT] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [sym_val_nothing] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1973), - [anon_sym_DASHinf] = ACTIONS(1973), - [anon_sym_NaN] = ACTIONS(1973), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = 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_CARET] = ACTIONS(1973), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(946), + [aux_sym_unquoted_token1] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), }, - [915] = { - [sym_block] = STATE(1015), - [sym_comment] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(1975), - [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), - [anon_sym_SEMI] = ACTIONS(1973), - [sym_cmd_identifier] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_where] = ACTIONS(1973), - [anon_sym_not] = ACTIONS(1973), - [anon_sym_DOT_DOT_LT] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), - [sym_val_nothing] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1973), - [anon_sym_DASHinf] = ACTIONS(1973), - [anon_sym_NaN] = ACTIONS(1973), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = 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_CARET] = ACTIONS(1973), + [642] = { + [sym_comment] = STATE(642), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(942), + [aux_sym_unquoted_token1] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(3), }, - [916] = { - [sym_comment] = STATE(916), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [sym_cmd_identifier] = ACTIONS(2275), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_def_DASHenv] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_where] = ACTIONS(2275), - [anon_sym_not] = ACTIONS(2275), - [anon_sym_DOT_DOT_LT] = ACTIONS(2275), - [anon_sym_DOT_DOT] = ACTIONS(2275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2275), - [sym_val_nothing] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [aux_sym_val_number_token1] = ACTIONS(2275), - [aux_sym_val_number_token2] = ACTIONS(2275), - [aux_sym_val_number_token3] = ACTIONS(2275), - [aux_sym_val_number_token4] = ACTIONS(2275), - [aux_sym_val_number_token5] = ACTIONS(2275), - [anon_sym_inf] = ACTIONS(2275), - [anon_sym_DASHinf] = ACTIONS(2275), - [anon_sym_NaN] = ACTIONS(2275), - [anon_sym_0b] = ACTIONS(2275), - [anon_sym_0o] = ACTIONS(2275), - [anon_sym_0x] = ACTIONS(2275), - [sym_val_date] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), - [anon_sym_CARET] = ACTIONS(2275), + [643] = { + [sym__flag] = STATE(785), + [sym_long_flag] = STATE(799), + [sym_comment] = STATE(643), + [aux_sym_overlay_use_repeat1] = STATE(621), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_alias] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_let_DASHenv] = ACTIONS(1480), + [anon_sym_mut] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_cmd_identifier] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_def_DASHenv] = ACTIONS(1480), + [anon_sym_export_DASHenv] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_error] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_source] = ACTIONS(1480), + [anon_sym_source_DASHenv] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_hide] = ACTIONS(1480), + [anon_sym_hide_DASHenv] = ACTIONS(1480), + [anon_sym_overlay] = ACTIONS(1480), + [anon_sym_as] = ACTIONS(1484), + [anon_sym_where] = ACTIONS(1480), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [sym_val_nothing] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [aux_sym_val_number_token1] = ACTIONS(1480), + [aux_sym_val_number_token2] = ACTIONS(1480), + [aux_sym_val_number_token3] = ACTIONS(1480), + [aux_sym_val_number_token4] = ACTIONS(1480), + [aux_sym_val_number_token5] = ACTIONS(1480), + [anon_sym_inf] = ACTIONS(1480), + [anon_sym_DASHinf] = ACTIONS(1480), + [anon_sym_NaN] = ACTIONS(1480), + [anon_sym_0b] = ACTIONS(1480), + [anon_sym_0o] = ACTIONS(1480), + [anon_sym_0x] = ACTIONS(1480), + [sym_val_date] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym__str_single_quotes] = ACTIONS(1480), + [sym__str_back_ticks] = ACTIONS(1480), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1480), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [sym_short_flag] = ACTIONS(1369), [anon_sym_POUND] = ACTIONS(3), }, - [917] = { - [sym_comment] = STATE(917), - [ts_builtin_sym_end] = ACTIONS(1989), - [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), - [anon_sym_SEMI] = ACTIONS(1987), - [sym_cmd_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1987), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_do] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_source] = ACTIONS(1987), - [anon_sym_source_DASHenv] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_hide_DASHenv] = ACTIONS(1987), - [anon_sym_overlay] = ACTIONS(1987), - [anon_sym_where] = ACTIONS(1987), - [anon_sym_not] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [sym_val_nothing] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1987), - [anon_sym_DASHinf] = ACTIONS(1987), - [anon_sym_NaN] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1987), - [anon_sym_0o] = ACTIONS(1987), - [anon_sym_0x] = ACTIONS(1987), - [sym_val_date] = 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_CARET] = ACTIONS(1987), + [644] = { + [sym_comment] = STATE(644), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [918] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(946), - [anon_sym_export] = ACTIONS(944), - [anon_sym_alias] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_let_DASHenv] = ACTIONS(944), - [anon_sym_mut] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [sym_cmd_identifier] = ACTIONS(944), - [anon_sym_LF] = ACTIONS(946), - [anon_sym_def] = ACTIONS(944), - [anon_sym_def_DASHenv] = ACTIONS(944), - [anon_sym_export_DASHenv] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_module] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_error] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_source] = ACTIONS(944), - [anon_sym_source_DASHenv] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_hide_DASHenv] = ACTIONS(944), - [anon_sym_overlay] = ACTIONS(944), - [anon_sym_where] = ACTIONS(944), - [anon_sym_not] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [sym_val_nothing] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(944), - [anon_sym_DASHinf] = ACTIONS(944), - [anon_sym_NaN] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(944), - [anon_sym_0o] = ACTIONS(944), - [anon_sym_0x] = ACTIONS(944), - [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_CARET] = ACTIONS(944), + [645] = { + [sym_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_in] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_STAR_STAR] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_bit_DASHshl] = ACTIONS(956), + [anon_sym_bit_DASHshr] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_not_DASHin] = ACTIONS(956), + [anon_sym_starts_DASHwith] = ACTIONS(956), + [anon_sym_ends_DASHwith] = ACTIONS(956), + [anon_sym_EQ_TILDE] = ACTIONS(956), + [anon_sym_BANG_TILDE] = ACTIONS(956), + [anon_sym_bit_DASHand] = ACTIONS(956), + [anon_sym_bit_DASHxor] = ACTIONS(956), + [anon_sym_bit_DASHor] = ACTIONS(956), + [anon_sym_and] = ACTIONS(956), + [anon_sym_xor] = ACTIONS(956), + [anon_sym_or] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [sym_val_nothing] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(956), + [anon_sym_DASHinf] = ACTIONS(956), + [anon_sym_NaN] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [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_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [sym_short_flag] = ACTIONS(956), + [aux_sym_unquoted_token1] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(3), }, - [919] = { - [sym_comment] = STATE(919), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_alias] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_let_DASHenv] = ACTIONS(2279), - [anon_sym_mut] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [sym_cmd_identifier] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2279), - [anon_sym_def_DASHenv] = ACTIONS(2279), - [anon_sym_export_DASHenv] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_error] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_source] = ACTIONS(2279), - [anon_sym_source_DASHenv] = ACTIONS(2279), - [anon_sym_register] = ACTIONS(2279), - [anon_sym_hide] = ACTIONS(2279), - [anon_sym_hide_DASHenv] = ACTIONS(2279), - [anon_sym_overlay] = ACTIONS(2279), - [anon_sym_where] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2279), - [anon_sym_DOT_DOT_LT] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2279), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), - [sym_val_nothing] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [aux_sym_val_number_token1] = ACTIONS(2279), - [aux_sym_val_number_token2] = ACTIONS(2279), - [aux_sym_val_number_token3] = ACTIONS(2279), - [aux_sym_val_number_token4] = ACTIONS(2279), - [aux_sym_val_number_token5] = ACTIONS(2279), - [anon_sym_inf] = ACTIONS(2279), - [anon_sym_DASHinf] = ACTIONS(2279), - [anon_sym_NaN] = ACTIONS(2279), - [anon_sym_0b] = ACTIONS(2279), - [anon_sym_0o] = ACTIONS(2279), - [anon_sym_0x] = ACTIONS(2279), - [sym_val_date] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), + [646] = { + [sym_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [sym_val_nothing] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym_val_number_token1] = ACTIONS(1037), + [aux_sym_val_number_token2] = ACTIONS(1037), + [aux_sym_val_number_token3] = ACTIONS(1037), + [aux_sym_val_number_token4] = ACTIONS(1037), + [aux_sym_val_number_token5] = ACTIONS(1037), + [anon_sym_inf] = ACTIONS(1037), + [anon_sym_DASHinf] = ACTIONS(1037), + [anon_sym_NaN] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_err_GT] = ACTIONS(1037), + [anon_sym_out_GT] = ACTIONS(1037), + [anon_sym_e_GT] = ACTIONS(1037), + [anon_sym_o_GT] = ACTIONS(1037), + [anon_sym_err_PLUSout_GT] = ACTIONS(1037), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1037), + [anon_sym_o_PLUSe_GT] = ACTIONS(1037), + [anon_sym_e_PLUSo_GT] = ACTIONS(1037), + [sym_short_flag] = ACTIONS(1037), + [aux_sym_unquoted_token1] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [920] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(852), + [647] = { + [sym_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_STAR_STAR] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_bit_DASHshl] = ACTIONS(972), + [anon_sym_bit_DASHshr] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_not_DASHin] = ACTIONS(972), + [anon_sym_starts_DASHwith] = ACTIONS(972), + [anon_sym_ends_DASHwith] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_BANG_TILDE] = ACTIONS(972), + [anon_sym_bit_DASHand] = ACTIONS(972), + [anon_sym_bit_DASHxor] = ACTIONS(972), + [anon_sym_bit_DASHor] = ACTIONS(972), + [anon_sym_and] = ACTIONS(972), + [anon_sym_xor] = ACTIONS(972), + [anon_sym_or] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [sym_val_nothing] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = 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(972), + [aux_sym_val_number_token5] = ACTIONS(972), + [anon_sym_inf] = ACTIONS(972), + [anon_sym_DASHinf] = ACTIONS(972), + [anon_sym_NaN] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(972), + [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_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [sym_short_flag] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(3), + }, + [648] = { + [sym_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_in] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [sym_val_nothing] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(968), + [anon_sym_DASHinf] = ACTIONS(968), + [anon_sym_NaN] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [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_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [sym_short_flag] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(3), + }, + [649] = { + [sym_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [650] = { + [sym__flag] = STATE(670), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [651] = { + [sym__flag] = STATE(669), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [652] = { + [sym__flag] = STATE(882), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(3), + }, + [653] = { + [sym_path] = STATE(782), + [sym_comment] = STATE(653), + [aux_sym_cell_path_repeat1] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [sym_short_flag] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(3), + }, + [654] = { + [sym_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_in] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_STAR_STAR] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_bit_DASHshl] = ACTIONS(964), + [anon_sym_bit_DASHshr] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_not_DASHin] = ACTIONS(964), + [anon_sym_starts_DASHwith] = ACTIONS(964), + [anon_sym_ends_DASHwith] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_BANG_TILDE] = ACTIONS(964), + [anon_sym_bit_DASHand] = ACTIONS(964), + [anon_sym_bit_DASHxor] = ACTIONS(964), + [anon_sym_bit_DASHor] = ACTIONS(964), + [anon_sym_and] = ACTIONS(964), + [anon_sym_xor] = ACTIONS(964), + [anon_sym_or] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [sym_val_nothing] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(964), + [anon_sym_DASHinf] = ACTIONS(964), + [anon_sym_NaN] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [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_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), + [sym_short_flag] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(3), + }, + [655] = { + [sym_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_LF] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_bit_DASHshl] = ACTIONS(960), + [anon_sym_bit_DASHshr] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_not_DASHin] = ACTIONS(960), + [anon_sym_starts_DASHwith] = ACTIONS(960), + [anon_sym_ends_DASHwith] = ACTIONS(960), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_BANG_TILDE] = ACTIONS(960), + [anon_sym_bit_DASHand] = ACTIONS(960), + [anon_sym_bit_DASHxor] = ACTIONS(960), + [anon_sym_bit_DASHor] = ACTIONS(960), + [anon_sym_and] = ACTIONS(960), + [anon_sym_xor] = ACTIONS(960), + [anon_sym_or] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [sym_val_nothing] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(960), + [anon_sym_DASHinf] = ACTIONS(960), + [anon_sym_NaN] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [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_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [sym_short_flag] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(3), + }, + [656] = { + [sym_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [657] = { + [sym__flag] = STATE(651), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(657), [anon_sym_export] = ACTIONS(850), [anon_sym_alias] = ACTIONS(850), [anon_sym_let] = ACTIONS(850), @@ -130056,9 +113317,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_PIPE] = ACTIONS(850), [anon_sym_DOLLAR] = ACTIONS(850), [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(794), [anon_sym_DASH] = ACTIONS(850), [anon_sym_break] = ACTIONS(850), [anon_sym_continue] = ACTIONS(850), @@ -130069,6 +113332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(850), [anon_sym_match] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_try] = ACTIONS(850), [anon_sym_return] = ACTIONS(850), [anon_sym_source] = ACTIONS(850), @@ -130103,2105 +113367,3600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [921] = { - [sym_comment] = STATE(921), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_alias] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_let_DASHenv] = ACTIONS(2283), - [anon_sym_mut] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [sym_cmd_identifier] = ACTIONS(2283), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_def] = ACTIONS(2283), - [anon_sym_def_DASHenv] = ACTIONS(2283), - [anon_sym_export_DASHenv] = ACTIONS(2283), - [anon_sym_extern] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_error] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_do] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_source] = ACTIONS(2283), - [anon_sym_source_DASHenv] = ACTIONS(2283), - [anon_sym_register] = ACTIONS(2283), - [anon_sym_hide] = ACTIONS(2283), - [anon_sym_hide_DASHenv] = ACTIONS(2283), - [anon_sym_overlay] = ACTIONS(2283), - [anon_sym_where] = ACTIONS(2283), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_DOT_DOT_LT] = ACTIONS(2283), - [anon_sym_DOT_DOT] = ACTIONS(2283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2283), - [sym_val_nothing] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [aux_sym_val_number_token1] = ACTIONS(2283), - [aux_sym_val_number_token2] = ACTIONS(2283), - [aux_sym_val_number_token3] = ACTIONS(2283), - [aux_sym_val_number_token4] = ACTIONS(2283), - [aux_sym_val_number_token5] = ACTIONS(2283), - [anon_sym_inf] = ACTIONS(2283), - [anon_sym_DASHinf] = ACTIONS(2283), - [anon_sym_NaN] = ACTIONS(2283), - [anon_sym_0b] = ACTIONS(2283), - [anon_sym_0o] = ACTIONS(2283), - [anon_sym_0x] = ACTIONS(2283), - [sym_val_date] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(2283), - [sym__str_single_quotes] = ACTIONS(2283), - [sym__str_back_ticks] = ACTIONS(2283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2283), - [anon_sym_CARET] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(3), - }, - [922] = { - [sym_comment] = STATE(922), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [sym_cmd_identifier] = ACTIONS(2287), - [anon_sym_LF] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_def_DASHenv] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_where] = ACTIONS(2287), - [anon_sym_not] = ACTIONS(2287), - [anon_sym_DOT_DOT_LT] = ACTIONS(2287), - [anon_sym_DOT_DOT] = ACTIONS(2287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2287), - [sym_val_nothing] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [aux_sym_val_number_token1] = ACTIONS(2287), - [aux_sym_val_number_token2] = ACTIONS(2287), - [aux_sym_val_number_token3] = ACTIONS(2287), - [aux_sym_val_number_token4] = ACTIONS(2287), - [aux_sym_val_number_token5] = ACTIONS(2287), - [anon_sym_inf] = ACTIONS(2287), - [anon_sym_DASHinf] = ACTIONS(2287), - [anon_sym_NaN] = ACTIONS(2287), - [anon_sym_0b] = ACTIONS(2287), - [anon_sym_0o] = ACTIONS(2287), - [anon_sym_0x] = ACTIONS(2287), - [sym_val_date] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [923] = { - [sym_comment] = STATE(923), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_alias] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_let_DASHenv] = ACTIONS(2291), - [anon_sym_mut] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [sym_cmd_identifier] = ACTIONS(2291), - [anon_sym_LF] = ACTIONS(2296), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_def_DASHenv] = ACTIONS(2291), - [anon_sym_export_DASHenv] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_error] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_source] = ACTIONS(2291), - [anon_sym_source_DASHenv] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_hide_DASHenv] = ACTIONS(2291), - [anon_sym_overlay] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2291), - [anon_sym_DOT_DOT_LT] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), - [sym_val_nothing] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [aux_sym_val_number_token1] = ACTIONS(2291), - [aux_sym_val_number_token2] = ACTIONS(2291), - [aux_sym_val_number_token3] = ACTIONS(2291), - [aux_sym_val_number_token4] = ACTIONS(2291), - [aux_sym_val_number_token5] = ACTIONS(2291), - [anon_sym_inf] = ACTIONS(2291), - [anon_sym_DASHinf] = ACTIONS(2291), - [anon_sym_NaN] = ACTIONS(2291), - [anon_sym_0b] = ACTIONS(2291), - [anon_sym_0o] = ACTIONS(2291), - [anon_sym_0x] = ACTIONS(2291), - [sym_val_date] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2291), + [658] = { + [sym__flag] = STATE(652), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [924] = { - [sym_comment] = STATE(924), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_alias] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_let_DASHenv] = ACTIONS(2301), - [anon_sym_mut] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2301), - [sym_cmd_identifier] = ACTIONS(2301), - [anon_sym_LF] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2301), - [anon_sym_def_DASHenv] = ACTIONS(2301), - [anon_sym_export_DASHenv] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_RPAREN] = ACTIONS(2301), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_error] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_source] = ACTIONS(2301), - [anon_sym_source_DASHenv] = ACTIONS(2301), - [anon_sym_register] = ACTIONS(2301), - [anon_sym_hide] = ACTIONS(2301), - [anon_sym_hide_DASHenv] = ACTIONS(2301), - [anon_sym_overlay] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_not] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2301), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [sym_val_nothing] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [aux_sym_val_number_token1] = ACTIONS(2301), - [aux_sym_val_number_token2] = ACTIONS(2301), - [aux_sym_val_number_token3] = ACTIONS(2301), - [aux_sym_val_number_token4] = ACTIONS(2301), - [aux_sym_val_number_token5] = ACTIONS(2301), - [anon_sym_inf] = ACTIONS(2301), - [anon_sym_DASHinf] = ACTIONS(2301), - [anon_sym_NaN] = ACTIONS(2301), - [anon_sym_0b] = ACTIONS(2301), - [anon_sym_0o] = ACTIONS(2301), - [anon_sym_0x] = ACTIONS(2301), - [sym_val_date] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym__str_single_quotes] = ACTIONS(2301), - [sym__str_back_ticks] = ACTIONS(2301), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), - [anon_sym_CARET] = ACTIONS(2301), + [659] = { + [sym__flag] = STATE(893), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [925] = { - [sym_comment] = STATE(925), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2305), - [sym_cmd_identifier] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_def_DASHenv] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_DOT_DOT_LT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2305), - [sym_val_nothing] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [aux_sym_val_number_token1] = ACTIONS(2305), - [aux_sym_val_number_token2] = ACTIONS(2305), - [aux_sym_val_number_token3] = ACTIONS(2305), - [aux_sym_val_number_token4] = ACTIONS(2305), - [aux_sym_val_number_token5] = ACTIONS(2305), - [anon_sym_inf] = ACTIONS(2305), - [anon_sym_DASHinf] = ACTIONS(2305), - [anon_sym_NaN] = ACTIONS(2305), - [anon_sym_0b] = ACTIONS(2305), - [anon_sym_0o] = ACTIONS(2305), - [anon_sym_0x] = ACTIONS(2305), - [sym_val_date] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), + [660] = { + [sym_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [sym_short_flag] = ACTIONS(994), + [aux_sym_unquoted_token1] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, - [926] = { - [sym_comment] = STATE(926), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [sym_cmd_identifier] = ACTIONS(2309), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_def_DASHenv] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_where] = ACTIONS(2309), - [anon_sym_not] = ACTIONS(2309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2309), - [anon_sym_DOT_DOT] = ACTIONS(2309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2309), - [sym_val_nothing] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [aux_sym_val_number_token1] = ACTIONS(2309), - [aux_sym_val_number_token2] = ACTIONS(2309), - [aux_sym_val_number_token3] = ACTIONS(2309), - [aux_sym_val_number_token4] = ACTIONS(2309), - [aux_sym_val_number_token5] = ACTIONS(2309), - [anon_sym_inf] = ACTIONS(2309), - [anon_sym_DASHinf] = ACTIONS(2309), - [anon_sym_NaN] = ACTIONS(2309), - [anon_sym_0b] = ACTIONS(2309), - [anon_sym_0o] = ACTIONS(2309), - [anon_sym_0x] = ACTIONS(2309), - [sym_val_date] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym__str_single_quotes] = ACTIONS(2309), - [sym__str_back_ticks] = ACTIONS(2309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), + [661] = { + [sym_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_in] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_STAR_STAR] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_bit_DASHshl] = ACTIONS(946), + [anon_sym_bit_DASHshr] = ACTIONS(946), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_not_DASHin] = ACTIONS(946), + [anon_sym_starts_DASHwith] = ACTIONS(946), + [anon_sym_ends_DASHwith] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(946), + [anon_sym_BANG_TILDE] = ACTIONS(946), + [anon_sym_bit_DASHand] = ACTIONS(946), + [anon_sym_bit_DASHxor] = ACTIONS(946), + [anon_sym_bit_DASHor] = ACTIONS(946), + [anon_sym_and] = ACTIONS(946), + [anon_sym_xor] = ACTIONS(946), + [anon_sym_or] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [sym_val_nothing] = ACTIONS(946), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(946), + [anon_sym_DASHinf] = ACTIONS(946), + [anon_sym_NaN] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(946), + [aux_sym_unquoted_token1] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), }, - [927] = { - [sym_comment] = STATE(927), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [sym_cmd_identifier] = ACTIONS(2313), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_def_DASHenv] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_DOT_DOT_LT] = ACTIONS(2313), - [anon_sym_DOT_DOT] = ACTIONS(2313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), - [sym_val_nothing] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [aux_sym_val_number_token1] = ACTIONS(2313), - [aux_sym_val_number_token2] = ACTIONS(2313), - [aux_sym_val_number_token3] = ACTIONS(2313), - [aux_sym_val_number_token4] = ACTIONS(2313), - [aux_sym_val_number_token5] = ACTIONS(2313), - [anon_sym_inf] = ACTIONS(2313), - [anon_sym_DASHinf] = ACTIONS(2313), - [anon_sym_NaN] = ACTIONS(2313), - [anon_sym_0b] = ACTIONS(2313), - [anon_sym_0o] = ACTIONS(2313), - [anon_sym_0x] = ACTIONS(2313), - [sym_val_date] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2313), - [anon_sym_CARET] = ACTIONS(2313), + [662] = { + [sym_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PLUS_PLUS] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(780), + [anon_sym_BANG_TILDE] = ACTIONS(780), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_err_GT] = ACTIONS(780), + [anon_sym_out_GT] = ACTIONS(780), + [anon_sym_e_GT] = ACTIONS(780), + [anon_sym_o_GT] = ACTIONS(780), + [anon_sym_err_PLUSout_GT] = ACTIONS(780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(780), + [anon_sym_o_PLUSe_GT] = ACTIONS(780), + [anon_sym_e_PLUSo_GT] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), + [aux_sym_unquoted_token1] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [928] = { - [sym_comment] = STATE(928), - [anon_sym_export] = ACTIONS(2317), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_let_DASHenv] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_SEMI] = ACTIONS(2317), - [sym_cmd_identifier] = ACTIONS(2317), - [anon_sym_LF] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_def_DASHenv] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_source] = ACTIONS(2317), - [anon_sym_source_DASHenv] = ACTIONS(2317), - [anon_sym_register] = ACTIONS(2317), - [anon_sym_hide] = ACTIONS(2317), - [anon_sym_hide_DASHenv] = ACTIONS(2317), - [anon_sym_overlay] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_not] = ACTIONS(2317), - [anon_sym_DOT_DOT_LT] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), - [sym_val_nothing] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [aux_sym_val_number_token1] = ACTIONS(2317), - [aux_sym_val_number_token2] = ACTIONS(2317), - [aux_sym_val_number_token3] = ACTIONS(2317), - [aux_sym_val_number_token4] = ACTIONS(2317), - [aux_sym_val_number_token5] = ACTIONS(2317), - [anon_sym_inf] = ACTIONS(2317), - [anon_sym_DASHinf] = ACTIONS(2317), - [anon_sym_NaN] = ACTIONS(2317), - [anon_sym_0b] = ACTIONS(2317), - [anon_sym_0o] = ACTIONS(2317), - [anon_sym_0x] = ACTIONS(2317), - [sym_val_date] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2317), + [663] = { + [sym_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [sym_val_nothing] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(942), + [anon_sym_DASHinf] = ACTIONS(942), + [anon_sym_NaN] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(942), + [aux_sym_unquoted_token1] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(3), }, - [929] = { - [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(916), - [anon_sym_export] = ACTIONS(914), - [anon_sym_alias] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_let_DASHenv] = ACTIONS(914), - [anon_sym_mut] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [sym_cmd_identifier] = ACTIONS(914), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_def] = ACTIONS(914), - [anon_sym_def_DASHenv] = ACTIONS(914), - [anon_sym_export_DASHenv] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_use] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_loop] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_source] = ACTIONS(914), - [anon_sym_source_DASHenv] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_hide_DASHenv] = ACTIONS(914), - [anon_sym_overlay] = ACTIONS(914), - [anon_sym_where] = ACTIONS(914), - [anon_sym_not] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [sym_val_nothing] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [aux_sym_val_number_token1] = ACTIONS(914), - [aux_sym_val_number_token2] = ACTIONS(914), - [aux_sym_val_number_token3] = ACTIONS(914), - [aux_sym_val_number_token4] = ACTIONS(914), - [aux_sym_val_number_token5] = ACTIONS(914), - [anon_sym_inf] = ACTIONS(914), - [anon_sym_DASHinf] = ACTIONS(914), - [anon_sym_NaN] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(914), - [anon_sym_0o] = ACTIONS(914), - [anon_sym_0x] = ACTIONS(914), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), + [664] = { + [sym_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_in] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_STAR_STAR] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_bit_DASHshl] = ACTIONS(918), + [anon_sym_bit_DASHshr] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT2] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_not_DASHin] = ACTIONS(918), + [anon_sym_starts_DASHwith] = ACTIONS(918), + [anon_sym_ends_DASHwith] = ACTIONS(918), + [anon_sym_EQ_TILDE] = ACTIONS(918), + [anon_sym_BANG_TILDE] = ACTIONS(918), + [anon_sym_bit_DASHand] = ACTIONS(918), + [anon_sym_bit_DASHxor] = ACTIONS(918), + [anon_sym_bit_DASHor] = ACTIONS(918), + [anon_sym_and] = ACTIONS(918), + [anon_sym_xor] = ACTIONS(918), + [anon_sym_or] = ACTIONS(918), + [anon_sym_DOT_DOT_LT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [sym_val_nothing] = ACTIONS(918), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_val_number_token1] = ACTIONS(918), + [aux_sym_val_number_token2] = ACTIONS(918), + [aux_sym_val_number_token3] = ACTIONS(918), + [aux_sym_val_number_token4] = ACTIONS(918), + [aux_sym_val_number_token5] = ACTIONS(918), + [anon_sym_inf] = ACTIONS(918), + [anon_sym_DASHinf] = ACTIONS(918), + [anon_sym_NaN] = ACTIONS(918), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(918), + [anon_sym_0x] = ACTIONS(918), + [sym_val_date] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym__str_single_quotes] = ACTIONS(918), + [sym__str_back_ticks] = ACTIONS(918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), + [anon_sym_err_GT] = ACTIONS(918), + [anon_sym_out_GT] = ACTIONS(918), + [anon_sym_e_GT] = ACTIONS(918), + [anon_sym_o_GT] = ACTIONS(918), + [anon_sym_err_PLUSout_GT] = ACTIONS(918), + [anon_sym_out_PLUSerr_GT] = ACTIONS(918), + [anon_sym_o_PLUSe_GT] = ACTIONS(918), + [anon_sym_e_PLUSo_GT] = ACTIONS(918), + [sym_short_flag] = ACTIONS(918), + [aux_sym_unquoted_token1] = ACTIONS(918), [anon_sym_POUND] = ACTIONS(3), }, - [930] = { - [sym_comment] = STATE(930), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_alias] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_let_DASHenv] = ACTIONS(2321), - [anon_sym_mut] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2321), - [sym_cmd_identifier] = ACTIONS(2321), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_def_DASHenv] = ACTIONS(2321), - [anon_sym_export_DASHenv] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_error] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_source] = ACTIONS(2321), - [anon_sym_source_DASHenv] = ACTIONS(2321), - [anon_sym_register] = ACTIONS(2321), - [anon_sym_hide] = ACTIONS(2321), - [anon_sym_hide_DASHenv] = ACTIONS(2321), - [anon_sym_overlay] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_not] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2321), - [sym_val_nothing] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [aux_sym_val_number_token1] = ACTIONS(2321), - [aux_sym_val_number_token2] = ACTIONS(2321), - [aux_sym_val_number_token3] = ACTIONS(2321), - [aux_sym_val_number_token4] = ACTIONS(2321), - [aux_sym_val_number_token5] = ACTIONS(2321), - [anon_sym_inf] = ACTIONS(2321), - [anon_sym_DASHinf] = ACTIONS(2321), - [anon_sym_NaN] = ACTIONS(2321), - [anon_sym_0b] = ACTIONS(2321), - [anon_sym_0o] = ACTIONS(2321), - [anon_sym_0x] = ACTIONS(2321), - [sym_val_date] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym__str_single_quotes] = ACTIONS(2321), - [sym__str_back_ticks] = ACTIONS(2321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2321), + [665] = { + [sym_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [931] = { - [sym__terminator] = STATE(846), - [sym_comment] = STATE(931), - [aux_sym__block_body_repeat1] = STATE(905), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_alias] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_let_DASHenv] = ACTIONS(2325), - [anon_sym_mut] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2069), - [sym_cmd_identifier] = ACTIONS(2325), - [anon_sym_LF] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2325), - [anon_sym_def_DASHenv] = ACTIONS(2325), - [anon_sym_export_DASHenv] = ACTIONS(2325), - [anon_sym_extern] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_error] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_loop] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_source] = ACTIONS(2325), - [anon_sym_source_DASHenv] = ACTIONS(2325), - [anon_sym_register] = ACTIONS(2325), - [anon_sym_hide] = ACTIONS(2325), - [anon_sym_hide_DASHenv] = ACTIONS(2325), - [anon_sym_overlay] = ACTIONS(2325), - [anon_sym_where] = ACTIONS(2325), - [anon_sym_not] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [anon_sym_DOT_DOT] = ACTIONS(2325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [sym_val_nothing] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [aux_sym_val_number_token1] = ACTIONS(2325), - [aux_sym_val_number_token2] = ACTIONS(2325), - [aux_sym_val_number_token3] = ACTIONS(2325), - [aux_sym_val_number_token4] = ACTIONS(2325), - [aux_sym_val_number_token5] = ACTIONS(2325), - [anon_sym_inf] = ACTIONS(2325), - [anon_sym_DASHinf] = ACTIONS(2325), - [anon_sym_NaN] = ACTIONS(2325), - [anon_sym_0b] = ACTIONS(2325), - [anon_sym_0o] = ACTIONS(2325), - [anon_sym_0x] = ACTIONS(2325), - [sym_val_date] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2325), - [sym__str_single_quotes] = ACTIONS(2325), - [sym__str_back_ticks] = ACTIONS(2325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2325), - [anon_sym_CARET] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(3), + [666] = { + [sym__flag] = STATE(658), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), }, - [932] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(830), - [anon_sym_export] = ACTIONS(828), - [anon_sym_alias] = ACTIONS(828), - [anon_sym_let] = ACTIONS(828), - [anon_sym_let_DASHenv] = ACTIONS(828), - [anon_sym_mut] = ACTIONS(828), - [anon_sym_const] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [sym_cmd_identifier] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_def] = ACTIONS(828), - [anon_sym_def_DASHenv] = ACTIONS(828), - [anon_sym_export_DASHenv] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(828), - [anon_sym_use] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_error] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_loop] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_if] = ACTIONS(828), - [anon_sym_match] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_source] = ACTIONS(828), - [anon_sym_source_DASHenv] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_hide] = ACTIONS(828), - [anon_sym_hide_DASHenv] = ACTIONS(828), - [anon_sym_overlay] = ACTIONS(828), - [anon_sym_where] = ACTIONS(828), - [anon_sym_not] = ACTIONS(828), - [anon_sym_DOT_DOT_LT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(828), - [sym_val_nothing] = ACTIONS(828), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_val_number_token1] = ACTIONS(828), - [aux_sym_val_number_token2] = ACTIONS(828), - [aux_sym_val_number_token3] = ACTIONS(828), - [aux_sym_val_number_token4] = ACTIONS(828), - [aux_sym_val_number_token5] = ACTIONS(828), - [anon_sym_inf] = ACTIONS(828), - [anon_sym_DASHinf] = ACTIONS(828), - [anon_sym_NaN] = ACTIONS(828), - [anon_sym_0b] = ACTIONS(828), - [anon_sym_0o] = ACTIONS(828), - [anon_sym_0x] = ACTIONS(828), - [sym_val_date] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(828), - [sym__str_back_ticks] = ACTIONS(828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), + [667] = { + [sym__flag] = STATE(659), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [933] = { - [sym_comment] = STATE(933), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_alias] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_let_DASHenv] = ACTIONS(2327), - [anon_sym_mut] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [sym_cmd_identifier] = ACTIONS(2327), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2327), - [anon_sym_def_DASHenv] = ACTIONS(2327), - [anon_sym_export_DASHenv] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_error] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_source] = ACTIONS(2327), - [anon_sym_source_DASHenv] = ACTIONS(2327), - [anon_sym_register] = ACTIONS(2327), - [anon_sym_hide] = ACTIONS(2327), - [anon_sym_hide_DASHenv] = ACTIONS(2327), - [anon_sym_overlay] = ACTIONS(2327), - [anon_sym_where] = ACTIONS(2327), - [anon_sym_not] = ACTIONS(2327), - [anon_sym_DOT_DOT_LT] = ACTIONS(2327), - [anon_sym_DOT_DOT] = ACTIONS(2327), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2327), - [sym_val_nothing] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [aux_sym_val_number_token1] = ACTIONS(2327), - [aux_sym_val_number_token2] = ACTIONS(2327), - [aux_sym_val_number_token3] = ACTIONS(2327), - [aux_sym_val_number_token4] = ACTIONS(2327), - [aux_sym_val_number_token5] = ACTIONS(2327), - [anon_sym_inf] = ACTIONS(2327), - [anon_sym_DASHinf] = ACTIONS(2327), - [anon_sym_NaN] = ACTIONS(2327), - [anon_sym_0b] = ACTIONS(2327), - [anon_sym_0o] = ACTIONS(2327), - [anon_sym_0x] = ACTIONS(2327), - [sym_val_date] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym__str_single_quotes] = ACTIONS(2327), - [sym__str_back_ticks] = ACTIONS(2327), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2327), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), - [anon_sym_CARET] = ACTIONS(2327), + [668] = { + [sym__flag] = STATE(898), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [934] = { - [sym_comment] = STATE(934), - [anon_sym_export] = ACTIONS(2331), - [anon_sym_alias] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_let_DASHenv] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [sym_cmd_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2333), - [anon_sym_def] = ACTIONS(2331), - [anon_sym_def_DASHenv] = ACTIONS(2331), - [anon_sym_export_DASHenv] = ACTIONS(2331), - [anon_sym_extern] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_error] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_do] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_source] = ACTIONS(2331), - [anon_sym_source_DASHenv] = ACTIONS(2331), - [anon_sym_register] = ACTIONS(2331), - [anon_sym_hide] = ACTIONS(2331), - [anon_sym_hide_DASHenv] = ACTIONS(2331), - [anon_sym_overlay] = ACTIONS(2331), - [anon_sym_where] = ACTIONS(2331), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_DOT_DOT_LT] = ACTIONS(2331), - [anon_sym_DOT_DOT] = ACTIONS(2331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2331), - [sym_val_nothing] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [aux_sym_val_number_token1] = ACTIONS(2331), - [aux_sym_val_number_token2] = ACTIONS(2331), - [aux_sym_val_number_token3] = ACTIONS(2331), - [aux_sym_val_number_token4] = ACTIONS(2331), - [aux_sym_val_number_token5] = ACTIONS(2331), - [anon_sym_inf] = ACTIONS(2331), - [anon_sym_DASHinf] = ACTIONS(2331), - [anon_sym_NaN] = ACTIONS(2331), - [anon_sym_0b] = ACTIONS(2331), - [anon_sym_0o] = ACTIONS(2331), - [anon_sym_0x] = ACTIONS(2331), - [sym_val_date] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym__str_single_quotes] = ACTIONS(2331), - [sym__str_back_ticks] = ACTIONS(2331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2331), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), + [669] = { + [sym__flag] = STATE(872), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [935] = { - [sym_comment] = STATE(935), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_let_DASHenv] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [sym_cmd_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2335), - [anon_sym_def_DASHenv] = ACTIONS(2335), - [anon_sym_export_DASHenv] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_error] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_source] = ACTIONS(2335), - [anon_sym_source_DASHenv] = ACTIONS(2335), - [anon_sym_register] = ACTIONS(2335), - [anon_sym_hide] = ACTIONS(2335), - [anon_sym_hide_DASHenv] = ACTIONS(2335), - [anon_sym_overlay] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(2335), - [anon_sym_not] = ACTIONS(2335), - [anon_sym_DOT_DOT_LT] = ACTIONS(2335), - [anon_sym_DOT_DOT] = ACTIONS(2335), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), - [sym_val_nothing] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [aux_sym_val_number_token1] = ACTIONS(2335), - [aux_sym_val_number_token2] = ACTIONS(2335), - [aux_sym_val_number_token3] = ACTIONS(2335), - [aux_sym_val_number_token4] = ACTIONS(2335), - [aux_sym_val_number_token5] = ACTIONS(2335), - [anon_sym_inf] = ACTIONS(2335), - [anon_sym_DASHinf] = ACTIONS(2335), - [anon_sym_NaN] = ACTIONS(2335), - [anon_sym_0b] = ACTIONS(2335), - [anon_sym_0o] = ACTIONS(2335), - [anon_sym_0x] = ACTIONS(2335), - [sym_val_date] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), + [670] = { + [sym__flag] = STATE(674), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [936] = { - [sym_comment] = STATE(936), - [ts_builtin_sym_end] = ACTIONS(2111), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_alias] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_let_DASHenv] = ACTIONS(2109), - [anon_sym_mut] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [sym_cmd_identifier] = ACTIONS(2109), - [anon_sym_LF] = ACTIONS(2111), - [anon_sym_def] = ACTIONS(2109), - [anon_sym_def_DASHenv] = ACTIONS(2109), - [anon_sym_export_DASHenv] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_error] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_source] = ACTIONS(2109), - [anon_sym_source_DASHenv] = ACTIONS(2109), - [anon_sym_register] = ACTIONS(2109), - [anon_sym_hide] = ACTIONS(2109), - [anon_sym_hide_DASHenv] = ACTIONS(2109), - [anon_sym_overlay] = ACTIONS(2109), - [anon_sym_where] = ACTIONS(2109), - [anon_sym_not] = ACTIONS(2109), - [anon_sym_DOT_DOT_LT] = ACTIONS(2109), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), - [sym_val_nothing] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [aux_sym_val_number_token1] = ACTIONS(2109), - [aux_sym_val_number_token2] = ACTIONS(2109), - [aux_sym_val_number_token3] = ACTIONS(2109), - [aux_sym_val_number_token4] = ACTIONS(2109), - [aux_sym_val_number_token5] = ACTIONS(2109), - [anon_sym_inf] = ACTIONS(2109), - [anon_sym_DASHinf] = ACTIONS(2109), - [anon_sym_NaN] = ACTIONS(2109), - [anon_sym_0b] = ACTIONS(2109), - [anon_sym_0o] = ACTIONS(2109), - [anon_sym_0x] = ACTIONS(2109), - [sym_val_date] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [sym__str_single_quotes] = ACTIONS(2109), - [sym__str_back_ticks] = ACTIONS(2109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), + [671] = { + [sym__flag] = STATE(675), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [937] = { - [sym_comment] = STATE(937), - [ts_builtin_sym_end] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_def_DASHenv] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_DOT_DOT_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), - [sym_val_nothing] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym_val_number_token1] = ACTIONS(2175), - [aux_sym_val_number_token2] = ACTIONS(2175), - [aux_sym_val_number_token3] = ACTIONS(2175), - [aux_sym_val_number_token4] = ACTIONS(2175), - [aux_sym_val_number_token5] = ACTIONS(2175), - [anon_sym_inf] = ACTIONS(2175), - [anon_sym_DASHinf] = ACTIONS(2175), - [anon_sym_NaN] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), + [672] = { + [sym_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_LF] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_STAR_STAR] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_mod] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_bit_DASHshl] = ACTIONS(976), + [anon_sym_bit_DASHshr] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_not_DASHin] = ACTIONS(976), + [anon_sym_starts_DASHwith] = ACTIONS(976), + [anon_sym_ends_DASHwith] = ACTIONS(976), + [anon_sym_EQ_TILDE] = ACTIONS(976), + [anon_sym_BANG_TILDE] = ACTIONS(976), + [anon_sym_bit_DASHand] = ACTIONS(976), + [anon_sym_bit_DASHxor] = ACTIONS(976), + [anon_sym_bit_DASHor] = ACTIONS(976), + [anon_sym_and] = ACTIONS(976), + [anon_sym_xor] = ACTIONS(976), + [anon_sym_or] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [sym_val_nothing] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = 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(976), + [aux_sym_val_number_token5] = ACTIONS(976), + [anon_sym_inf] = ACTIONS(976), + [anon_sym_DASHinf] = ACTIONS(976), + [anon_sym_NaN] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(976), + [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_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [sym_short_flag] = ACTIONS(976), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, - [938] = { - [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [sym_cmd_identifier] = ACTIONS(1018), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_def_DASHenv] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_where] = ACTIONS(1018), - [anon_sym_not] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [sym_val_nothing] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [aux_sym_val_number_token1] = ACTIONS(1018), - [aux_sym_val_number_token2] = ACTIONS(1018), - [aux_sym_val_number_token3] = ACTIONS(1018), - [aux_sym_val_number_token4] = ACTIONS(1018), - [aux_sym_val_number_token5] = ACTIONS(1018), - [anon_sym_inf] = ACTIONS(1018), - [anon_sym_DASHinf] = ACTIONS(1018), - [anon_sym_NaN] = ACTIONS(1018), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), + [673] = { + [sym_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [939] = { - [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_def_DASHenv] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2101), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [sym_val_nothing] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym_val_number_token1] = ACTIONS(2101), - [aux_sym_val_number_token2] = ACTIONS(2101), - [aux_sym_val_number_token3] = ACTIONS(2101), - [aux_sym_val_number_token4] = ACTIONS(2101), - [aux_sym_val_number_token5] = ACTIONS(2101), - [anon_sym_inf] = ACTIONS(2101), - [anon_sym_DASHinf] = ACTIONS(2101), - [anon_sym_NaN] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), + [674] = { + [sym__flag] = STATE(870), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [940] = { - [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(2315), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [sym_cmd_identifier] = ACTIONS(2313), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_def_DASHenv] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_DOT_DOT_LT] = ACTIONS(2313), - [anon_sym_DOT_DOT] = ACTIONS(2313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), - [sym_val_nothing] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [aux_sym_val_number_token1] = ACTIONS(2313), - [aux_sym_val_number_token2] = ACTIONS(2313), - [aux_sym_val_number_token3] = ACTIONS(2313), - [aux_sym_val_number_token4] = ACTIONS(2313), - [aux_sym_val_number_token5] = ACTIONS(2313), - [anon_sym_inf] = ACTIONS(2313), - [anon_sym_DASHinf] = ACTIONS(2313), - [anon_sym_NaN] = ACTIONS(2313), - [anon_sym_0b] = ACTIONS(2313), - [anon_sym_0o] = ACTIONS(2313), - [anon_sym_0x] = ACTIONS(2313), - [sym_val_date] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2313), - [anon_sym_CARET] = ACTIONS(2313), + [675] = { + [sym__flag] = STATE(681), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [941] = { - [sym_comment] = STATE(941), - [ts_builtin_sym_end] = ACTIONS(2115), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [sym_cmd_identifier] = ACTIONS(2113), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_def_DASHenv] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_where] = ACTIONS(2113), - [anon_sym_not] = ACTIONS(2113), - [anon_sym_DOT_DOT_LT] = ACTIONS(2113), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), - [sym_val_nothing] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [aux_sym_val_number_token1] = ACTIONS(2113), - [aux_sym_val_number_token2] = ACTIONS(2113), - [aux_sym_val_number_token3] = ACTIONS(2113), - [aux_sym_val_number_token4] = ACTIONS(2113), - [aux_sym_val_number_token5] = ACTIONS(2113), - [anon_sym_inf] = ACTIONS(2113), - [anon_sym_DASHinf] = ACTIONS(2113), - [anon_sym_NaN] = ACTIONS(2113), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2113), - [anon_sym_0x] = ACTIONS(2113), - [sym_val_date] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [sym__str_single_quotes] = ACTIONS(2113), - [sym__str_back_ticks] = ACTIONS(2113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2113), + [676] = { + [sym__flag] = STATE(667), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [942] = { - [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(2119), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_def_DASHenv] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_DOT_DOT_LT] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), - [sym_val_nothing] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym_val_number_token1] = ACTIONS(2117), - [aux_sym_val_number_token2] = ACTIONS(2117), - [aux_sym_val_number_token3] = ACTIONS(2117), - [aux_sym_val_number_token4] = ACTIONS(2117), - [aux_sym_val_number_token5] = ACTIONS(2117), - [anon_sym_inf] = ACTIONS(2117), - [anon_sym_DASHinf] = ACTIONS(2117), - [anon_sym_NaN] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), + [677] = { + [sym__flag] = STATE(668), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [943] = { - [sym_comment] = STATE(943), - [ts_builtin_sym_end] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_alias] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_let_DASHenv] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [sym_cmd_identifier] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_def] = ACTIONS(2203), - [anon_sym_def_DASHenv] = ACTIONS(2203), - [anon_sym_export_DASHenv] = ACTIONS(2203), - [anon_sym_extern] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_source] = ACTIONS(2203), - [anon_sym_source_DASHenv] = ACTIONS(2203), - [anon_sym_register] = ACTIONS(2203), - [anon_sym_hide] = ACTIONS(2203), - [anon_sym_hide_DASHenv] = ACTIONS(2203), - [anon_sym_overlay] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_not] = ACTIONS(2203), - [anon_sym_DOT_DOT_LT] = ACTIONS(2203), - [anon_sym_DOT_DOT] = ACTIONS(2203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2203), - [sym_val_nothing] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2203), - [anon_sym_false] = ACTIONS(2203), - [aux_sym_val_number_token1] = ACTIONS(2203), - [aux_sym_val_number_token2] = ACTIONS(2203), - [aux_sym_val_number_token3] = ACTIONS(2203), - [aux_sym_val_number_token4] = ACTIONS(2203), - [aux_sym_val_number_token5] = ACTIONS(2203), - [anon_sym_inf] = ACTIONS(2203), - [anon_sym_DASHinf] = ACTIONS(2203), - [anon_sym_NaN] = ACTIONS(2203), - [anon_sym_0b] = ACTIONS(2203), - [anon_sym_0o] = ACTIONS(2203), - [anon_sym_0x] = ACTIONS(2203), - [sym_val_date] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), + [678] = { + [sym__flag] = STATE(682), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [944] = { - [sym_comment] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_alias] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_let_DASHenv] = ACTIONS(2195), - [anon_sym_mut] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [sym_cmd_identifier] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2195), - [anon_sym_def_DASHenv] = ACTIONS(2195), - [anon_sym_export_DASHenv] = ACTIONS(2195), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_error] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_source] = ACTIONS(2195), - [anon_sym_source_DASHenv] = ACTIONS(2195), - [anon_sym_register] = ACTIONS(2195), - [anon_sym_hide] = ACTIONS(2195), - [anon_sym_hide_DASHenv] = ACTIONS(2195), - [anon_sym_overlay] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_not] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2195), - [sym_val_nothing] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym_val_number_token1] = ACTIONS(2195), - [aux_sym_val_number_token2] = ACTIONS(2195), - [aux_sym_val_number_token3] = ACTIONS(2195), - [aux_sym_val_number_token4] = ACTIONS(2195), - [aux_sym_val_number_token5] = ACTIONS(2195), - [anon_sym_inf] = ACTIONS(2195), - [anon_sym_DASHinf] = ACTIONS(2195), - [anon_sym_NaN] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2195), - [anon_sym_0o] = ACTIONS(2195), - [anon_sym_0x] = ACTIONS(2195), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), + [679] = { + [sym_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LF] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_in] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_bit_DASHshl] = ACTIONS(984), + [anon_sym_bit_DASHshr] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_not_DASHin] = ACTIONS(984), + [anon_sym_starts_DASHwith] = ACTIONS(984), + [anon_sym_ends_DASHwith] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_BANG_TILDE] = ACTIONS(984), + [anon_sym_bit_DASHand] = ACTIONS(984), + [anon_sym_bit_DASHxor] = ACTIONS(984), + [anon_sym_bit_DASHor] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_xor] = ACTIONS(984), + [anon_sym_or] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [sym_val_nothing] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(984), + [anon_sym_DASHinf] = ACTIONS(984), + [anon_sym_NaN] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [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(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [sym_short_flag] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), }, - [945] = { - [sym_comment] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [sym_cmd_identifier] = ACTIONS(992), - [anon_sym_LF] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_def_DASHenv] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_where] = ACTIONS(992), - [anon_sym_not] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [sym_val_nothing] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_val_number_token1] = ACTIONS(992), - [aux_sym_val_number_token2] = ACTIONS(992), - [aux_sym_val_number_token3] = ACTIONS(992), - [aux_sym_val_number_token4] = ACTIONS(992), - [aux_sym_val_number_token5] = ACTIONS(992), - [anon_sym_inf] = ACTIONS(992), - [anon_sym_DASHinf] = ACTIONS(992), - [anon_sym_NaN] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), + [680] = { + [sym__flag] = STATE(835), + [sym_long_flag] = STATE(823), + [sym_comment] = STATE(680), + [aux_sym_overlay_use_repeat1] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_def_DASHenv] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_DOT_DOT_LT] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), + [sym_val_nothing] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym_val_number_token1] = ACTIONS(1374), + [aux_sym_val_number_token2] = ACTIONS(1374), + [aux_sym_val_number_token3] = ACTIONS(1374), + [aux_sym_val_number_token4] = ACTIONS(1374), + [aux_sym_val_number_token5] = ACTIONS(1374), + [anon_sym_inf] = ACTIONS(1374), + [anon_sym_DASHinf] = ACTIONS(1374), + [anon_sym_NaN] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [sym_short_flag] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(3), }, - [946] = { - [sym_comment] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_alias] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_let_DASHenv] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [sym_cmd_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_def] = ACTIONS(2249), - [anon_sym_def_DASHenv] = ACTIONS(2249), - [anon_sym_export_DASHenv] = ACTIONS(2249), - [anon_sym_extern] = ACTIONS(2249), - [anon_sym_module] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_error] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_source] = ACTIONS(2249), - [anon_sym_source_DASHenv] = ACTIONS(2249), - [anon_sym_register] = ACTIONS(2249), - [anon_sym_hide] = ACTIONS(2249), - [anon_sym_hide_DASHenv] = ACTIONS(2249), - [anon_sym_overlay] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_not] = ACTIONS(2249), - [anon_sym_DOT_DOT_LT] = ACTIONS(2249), - [anon_sym_DOT_DOT] = ACTIONS(2249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), - [sym_val_nothing] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [aux_sym_val_number_token1] = ACTIONS(2249), - [aux_sym_val_number_token2] = ACTIONS(2249), - [aux_sym_val_number_token3] = ACTIONS(2249), - [aux_sym_val_number_token4] = ACTIONS(2249), - [aux_sym_val_number_token5] = ACTIONS(2249), - [anon_sym_inf] = ACTIONS(2249), - [anon_sym_DASHinf] = ACTIONS(2249), - [anon_sym_NaN] = ACTIONS(2249), - [anon_sym_0b] = ACTIONS(2249), - [anon_sym_0o] = ACTIONS(2249), - [anon_sym_0x] = ACTIONS(2249), - [sym_val_date] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), + [681] = { + [sym__flag] = STATE(866), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [947] = { - [sym_comment] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(2193), - [anon_sym_export] = ACTIONS(2191), - [anon_sym_alias] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2191), - [anon_sym_let_DASHenv] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [sym_cmd_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2191), - [anon_sym_def_DASHenv] = ACTIONS(2191), - [anon_sym_export_DASHenv] = ACTIONS(2191), - [anon_sym_extern] = ACTIONS(2191), - [anon_sym_module] = ACTIONS(2191), - [anon_sym_use] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_error] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_loop] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_do] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_source] = ACTIONS(2191), - [anon_sym_source_DASHenv] = ACTIONS(2191), - [anon_sym_register] = ACTIONS(2191), - [anon_sym_hide] = ACTIONS(2191), - [anon_sym_hide_DASHenv] = ACTIONS(2191), - [anon_sym_overlay] = ACTIONS(2191), - [anon_sym_where] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2191), - [anon_sym_DOT_DOT_LT] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2191), - [sym_val_nothing] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [aux_sym_val_number_token1] = ACTIONS(2191), - [aux_sym_val_number_token2] = ACTIONS(2191), - [aux_sym_val_number_token3] = ACTIONS(2191), - [aux_sym_val_number_token4] = ACTIONS(2191), - [aux_sym_val_number_token5] = ACTIONS(2191), - [anon_sym_inf] = ACTIONS(2191), - [anon_sym_DASHinf] = ACTIONS(2191), - [anon_sym_NaN] = ACTIONS(2191), - [anon_sym_0b] = ACTIONS(2191), - [anon_sym_0o] = ACTIONS(2191), - [anon_sym_0x] = ACTIONS(2191), - [sym_val_date] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [sym__str_single_quotes] = ACTIONS(2191), - [sym__str_back_ticks] = ACTIONS(2191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), + [682] = { + [sym__flag] = STATE(684), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [948] = { - [sym_comment] = STATE(948), - [ts_builtin_sym_end] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [sym_cmd_identifier] = ACTIONS(2187), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_def_DASHenv] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_DOT_DOT_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2187), - [sym_val_nothing] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym_val_number_token1] = ACTIONS(2187), - [aux_sym_val_number_token2] = ACTIONS(2187), - [aux_sym_val_number_token3] = ACTIONS(2187), - [aux_sym_val_number_token4] = ACTIONS(2187), - [aux_sym_val_number_token5] = ACTIONS(2187), - [anon_sym_inf] = ACTIONS(2187), - [anon_sym_DASHinf] = ACTIONS(2187), - [anon_sym_NaN] = ACTIONS(2187), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2187), + [683] = { + [sym__flag] = STATE(685), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [949] = { - [sym_comment] = STATE(949), - [ts_builtin_sym_end] = ACTIONS(2189), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [sym_cmd_identifier] = ACTIONS(2187), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_def_DASHenv] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_DOT_DOT_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2187), - [sym_val_nothing] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym_val_number_token1] = ACTIONS(2187), - [aux_sym_val_number_token2] = ACTIONS(2187), - [aux_sym_val_number_token3] = ACTIONS(2187), - [aux_sym_val_number_token4] = ACTIONS(2187), - [aux_sym_val_number_token5] = ACTIONS(2187), - [anon_sym_inf] = ACTIONS(2187), - [anon_sym_DASHinf] = ACTIONS(2187), - [anon_sym_NaN] = ACTIONS(2187), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2187), + [684] = { + [sym__flag] = STATE(865), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(1488), [anon_sym_POUND] = ACTIONS(3), }, - [950] = { - [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_alias] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_let_DASHenv] = ACTIONS(2195), - [anon_sym_mut] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [sym_cmd_identifier] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2195), - [anon_sym_def_DASHenv] = ACTIONS(2195), - [anon_sym_export_DASHenv] = ACTIONS(2195), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_error] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_source] = ACTIONS(2195), - [anon_sym_source_DASHenv] = ACTIONS(2195), - [anon_sym_register] = ACTIONS(2195), - [anon_sym_hide] = ACTIONS(2195), - [anon_sym_hide_DASHenv] = ACTIONS(2195), - [anon_sym_overlay] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_not] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2195), - [sym_val_nothing] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym_val_number_token1] = ACTIONS(2195), - [aux_sym_val_number_token2] = ACTIONS(2195), - [aux_sym_val_number_token3] = ACTIONS(2195), - [aux_sym_val_number_token4] = ACTIONS(2195), - [aux_sym_val_number_token5] = ACTIONS(2195), - [anon_sym_inf] = ACTIONS(2195), - [anon_sym_DASHinf] = ACTIONS(2195), - [anon_sym_NaN] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2195), - [anon_sym_0o] = ACTIONS(2195), - [anon_sym_0x] = ACTIONS(2195), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), + [685] = { + [sym__flag] = STATE(689), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(820), [anon_sym_POUND] = ACTIONS(3), }, - [951] = { - [sym_comment] = STATE(951), + [686] = { + [sym_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_LF] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1522), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1526), + [anon_sym_DOT_DOT_LT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1347), + [sym_val_nothing] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [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(1347), + [aux_sym_val_number_token5] = ACTIONS(1347), + [anon_sym_inf] = ACTIONS(1347), + [anon_sym_DASHinf] = ACTIONS(1347), + [anon_sym_NaN] = ACTIONS(1347), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym__str_single_quotes] = ACTIONS(1347), + [sym__str_back_ticks] = ACTIONS(1347), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1347), + [anon_sym_err_GT] = ACTIONS(1347), + [anon_sym_out_GT] = ACTIONS(1347), + [anon_sym_e_GT] = ACTIONS(1347), + [anon_sym_o_GT] = ACTIONS(1347), + [anon_sym_err_PLUSout_GT] = ACTIONS(1347), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1347), + [anon_sym_o_PLUSe_GT] = ACTIONS(1347), + [anon_sym_e_PLUSo_GT] = ACTIONS(1347), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(3), + }, + [687] = { + [sym__flag] = STATE(677), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [688] = { + [sym__flag] = STATE(690), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [689] = { + [sym__flag] = STATE(864), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [sym_short_flag] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(3), + }, + [690] = { + [sym__flag] = STATE(691), + [sym_long_flag] = STATE(798), + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [sym_short_flag] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(3), + }, + [691] = { + [sym__flag] = STATE(863), + [sym_long_flag] = STATE(889), + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_def_DASHenv] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [sym_val_nothing] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym_val_number_token1] = ACTIONS(1532), + [aux_sym_val_number_token2] = ACTIONS(1532), + [aux_sym_val_number_token3] = ACTIONS(1532), + [aux_sym_val_number_token4] = ACTIONS(1532), + [aux_sym_val_number_token5] = ACTIONS(1532), + [anon_sym_inf] = ACTIONS(1532), + [anon_sym_DASHinf] = ACTIONS(1532), + [anon_sym_NaN] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [sym_short_flag] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(3), + }, + [692] = { + [sym_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [sym_short_flag] = ACTIONS(1022), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), + }, + [693] = { + [sym_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [694] = { + [sym_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(784), + [anon_sym_BANG_TILDE] = ACTIONS(784), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_err_GT] = ACTIONS(784), + [anon_sym_out_GT] = ACTIONS(784), + [anon_sym_e_GT] = ACTIONS(784), + [anon_sym_o_GT] = ACTIONS(784), + [anon_sym_err_PLUSout_GT] = ACTIONS(784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(784), + [anon_sym_o_PLUSe_GT] = ACTIONS(784), + [anon_sym_e_PLUSo_GT] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), + [aux_sym_unquoted_token1] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(3), + }, + [695] = { + [sym_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_LF] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_in] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_bit_DASHshl] = ACTIONS(988), + [anon_sym_bit_DASHshr] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_not_DASHin] = ACTIONS(988), + [anon_sym_starts_DASHwith] = ACTIONS(988), + [anon_sym_ends_DASHwith] = ACTIONS(988), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_BANG_TILDE] = ACTIONS(988), + [anon_sym_bit_DASHand] = ACTIONS(988), + [anon_sym_bit_DASHxor] = ACTIONS(988), + [anon_sym_bit_DASHor] = ACTIONS(988), + [anon_sym_and] = ACTIONS(988), + [anon_sym_xor] = ACTIONS(988), + [anon_sym_or] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [sym_val_nothing] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym_val_number_token1] = ACTIONS(988), + [aux_sym_val_number_token2] = ACTIONS(988), + [aux_sym_val_number_token3] = ACTIONS(988), + [aux_sym_val_number_token4] = ACTIONS(988), + [aux_sym_val_number_token5] = ACTIONS(988), + [anon_sym_inf] = ACTIONS(988), + [anon_sym_DASHinf] = ACTIONS(988), + [anon_sym_NaN] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [sym_short_flag] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), + }, + [696] = { + [sym_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [sym_val_nothing] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(938), + [anon_sym_DASHinf] = ACTIONS(938), + [anon_sym_NaN] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = 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_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), + [sym_short_flag] = ACTIONS(938), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [697] = { + [sym_path] = STATE(782), + [sym_comment] = STATE(697), + [aux_sym_cell_path_repeat1] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [698] = { + [sym_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [sym_val_nothing] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_val_number_token1] = ACTIONS(934), + [aux_sym_val_number_token2] = ACTIONS(934), + [aux_sym_val_number_token3] = ACTIONS(934), + [aux_sym_val_number_token4] = ACTIONS(934), + [aux_sym_val_number_token5] = ACTIONS(934), + [anon_sym_inf] = ACTIONS(934), + [anon_sym_DASHinf] = ACTIONS(934), + [anon_sym_NaN] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_err_GT] = ACTIONS(934), + [anon_sym_out_GT] = ACTIONS(934), + [anon_sym_e_GT] = ACTIONS(934), + [anon_sym_o_GT] = ACTIONS(934), + [anon_sym_err_PLUSout_GT] = ACTIONS(934), + [anon_sym_out_PLUSerr_GT] = ACTIONS(934), + [anon_sym_o_PLUSe_GT] = ACTIONS(934), + [anon_sym_e_PLUSo_GT] = ACTIONS(934), + [sym_short_flag] = ACTIONS(934), + [aux_sym_unquoted_token1] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [699] = { + [sym_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_in] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_STAR_STAR] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_bit_DASHshl] = ACTIONS(930), + [anon_sym_bit_DASHshr] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_LT2] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_not_DASHin] = ACTIONS(930), + [anon_sym_starts_DASHwith] = ACTIONS(930), + [anon_sym_ends_DASHwith] = ACTIONS(930), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_BANG_TILDE] = ACTIONS(930), + [anon_sym_bit_DASHand] = ACTIONS(930), + [anon_sym_bit_DASHxor] = ACTIONS(930), + [anon_sym_bit_DASHor] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_xor] = ACTIONS(930), + [anon_sym_or] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [sym_val_nothing] = ACTIONS(930), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_val_number_token1] = ACTIONS(930), + [aux_sym_val_number_token2] = ACTIONS(930), + [aux_sym_val_number_token3] = ACTIONS(930), + [aux_sym_val_number_token4] = ACTIONS(930), + [aux_sym_val_number_token5] = ACTIONS(930), + [anon_sym_inf] = ACTIONS(930), + [anon_sym_DASHinf] = ACTIONS(930), + [anon_sym_NaN] = ACTIONS(930), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(930), + [anon_sym_0x] = ACTIONS(930), + [sym_val_date] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), + [anon_sym_err_GT] = ACTIONS(930), + [anon_sym_out_GT] = ACTIONS(930), + [anon_sym_e_GT] = ACTIONS(930), + [anon_sym_o_GT] = ACTIONS(930), + [anon_sym_err_PLUSout_GT] = ACTIONS(930), + [anon_sym_out_PLUSerr_GT] = ACTIONS(930), + [anon_sym_o_PLUSe_GT] = ACTIONS(930), + [anon_sym_e_PLUSo_GT] = ACTIONS(930), + [sym_short_flag] = ACTIONS(930), + [aux_sym_unquoted_token1] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(3), + }, + [700] = { + [sym_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_bit_DASHshl] = ACTIONS(980), + [anon_sym_bit_DASHshr] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_not_DASHin] = ACTIONS(980), + [anon_sym_starts_DASHwith] = ACTIONS(980), + [anon_sym_ends_DASHwith] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_BANG_TILDE] = ACTIONS(980), + [anon_sym_bit_DASHand] = ACTIONS(980), + [anon_sym_bit_DASHxor] = ACTIONS(980), + [anon_sym_bit_DASHor] = ACTIONS(980), + [anon_sym_and] = ACTIONS(980), + [anon_sym_xor] = ACTIONS(980), + [anon_sym_or] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [sym_short_flag] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + }, + [701] = { + [sym_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [sym_val_nothing] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(998), + [anon_sym_DASHinf] = ACTIONS(998), + [anon_sym_NaN] = 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(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_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), + [sym_short_flag] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(3), + }, + [702] = { + [sym_path] = STATE(782), + [sym_comment] = STATE(702), + [aux_sym_cell_path_repeat1] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(725), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [sym_short_flag] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(3), + }, + [703] = { + [sym_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_in] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [sym_val_nothing] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_val_number_token1] = ACTIONS(922), + [aux_sym_val_number_token2] = ACTIONS(922), + [aux_sym_val_number_token3] = ACTIONS(922), + [aux_sym_val_number_token4] = ACTIONS(922), + [aux_sym_val_number_token5] = ACTIONS(922), + [anon_sym_inf] = ACTIONS(922), + [anon_sym_DASHinf] = ACTIONS(922), + [anon_sym_NaN] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(922), + [anon_sym_0o] = ACTIONS(922), + [anon_sym_0x] = ACTIONS(922), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [sym_short_flag] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(3), + }, + [704] = { + [sym_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [sym_val_nothing] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1018), + [anon_sym_false] = ACTIONS(1018), + [aux_sym_val_number_token1] = ACTIONS(1018), + [aux_sym_val_number_token2] = ACTIONS(1018), + [aux_sym_val_number_token3] = ACTIONS(1018), + [aux_sym_val_number_token4] = ACTIONS(1018), + [aux_sym_val_number_token5] = ACTIONS(1018), + [anon_sym_inf] = ACTIONS(1018), + [anon_sym_DASHinf] = ACTIONS(1018), + [anon_sym_NaN] = ACTIONS(1018), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [sym_short_flag] = ACTIONS(1018), + [aux_sym_unquoted_token1] = ACTIONS(1018), + [anon_sym_POUND] = ACTIONS(3), + }, + [705] = { + [sym_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [706] = { + [sym_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(1004), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), [anon_sym_SEMI] = ACTIONS(1002), - [sym_cmd_identifier] = ACTIONS(1002), [anon_sym_LF] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_def_DASHenv] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_where] = ACTIONS(1002), - [anon_sym_not] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), [anon_sym_DOT_DOT_LT] = ACTIONS(1002), [anon_sym_DOT_DOT] = ACTIONS(1002), [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), @@ -132225,7061 +116984,35630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [952] = { - [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2119), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [sym_cmd_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_def_DASHenv] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_where] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_DOT_DOT_LT] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), - [sym_val_nothing] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [aux_sym_val_number_token1] = ACTIONS(2117), - [aux_sym_val_number_token2] = ACTIONS(2117), - [aux_sym_val_number_token3] = ACTIONS(2117), - [aux_sym_val_number_token4] = ACTIONS(2117), - [aux_sym_val_number_token5] = ACTIONS(2117), - [anon_sym_inf] = ACTIONS(2117), - [anon_sym_DASHinf] = ACTIONS(2117), - [anon_sym_NaN] = ACTIONS(2117), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), + [707] = { + [sym_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [sym_short_flag] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [953] = { - [sym_comment] = STATE(953), - [ts_builtin_sym_end] = ACTIONS(2339), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_alias] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_let_DASHenv] = ACTIONS(2291), - [anon_sym_mut] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [sym_cmd_identifier] = ACTIONS(2291), - [anon_sym_LF] = ACTIONS(2296), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_def_DASHenv] = ACTIONS(2291), - [anon_sym_export_DASHenv] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_error] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_source] = ACTIONS(2291), - [anon_sym_source_DASHenv] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_hide_DASHenv] = ACTIONS(2291), - [anon_sym_overlay] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2291), - [anon_sym_DOT_DOT_LT] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), - [sym_val_nothing] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [aux_sym_val_number_token1] = ACTIONS(2291), - [aux_sym_val_number_token2] = ACTIONS(2291), - [aux_sym_val_number_token3] = ACTIONS(2291), - [aux_sym_val_number_token4] = ACTIONS(2291), - [aux_sym_val_number_token5] = ACTIONS(2291), - [anon_sym_inf] = ACTIONS(2291), - [anon_sym_DASHinf] = ACTIONS(2291), - [anon_sym_NaN] = ACTIONS(2291), - [anon_sym_0b] = ACTIONS(2291), - [anon_sym_0o] = ACTIONS(2291), - [anon_sym_0x] = ACTIONS(2291), - [sym_val_date] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2291), + [708] = { + [sym__flag] = STATE(835), + [sym_long_flag] = STATE(823), + [sym_comment] = STATE(708), + [aux_sym_overlay_use_repeat1] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(1363), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_def_DASHenv] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_DOT_DOT_LT] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [sym_val_nothing] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym_val_number_token1] = ACTIONS(1361), + [aux_sym_val_number_token2] = ACTIONS(1361), + [aux_sym_val_number_token3] = ACTIONS(1361), + [aux_sym_val_number_token4] = ACTIONS(1361), + [aux_sym_val_number_token5] = ACTIONS(1361), + [anon_sym_inf] = ACTIONS(1361), + [anon_sym_DASHinf] = ACTIONS(1361), + [anon_sym_NaN] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), + [sym_short_flag] = ACTIONS(1543), [anon_sym_POUND] = ACTIONS(3), }, - [954] = { - [sym_comment] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_alias] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_let_DASHenv] = ACTIONS(2259), - [anon_sym_mut] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [sym_cmd_identifier] = ACTIONS(2259), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_def_DASHenv] = ACTIONS(2259), - [anon_sym_export_DASHenv] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_error] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_source] = ACTIONS(2259), - [anon_sym_source_DASHenv] = ACTIONS(2259), - [anon_sym_register] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_hide_DASHenv] = ACTIONS(2259), - [anon_sym_overlay] = ACTIONS(2259), - [anon_sym_where] = ACTIONS(2259), - [anon_sym_not] = ACTIONS(2259), - [anon_sym_DOT_DOT_LT] = ACTIONS(2259), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2259), - [sym_val_nothing] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [aux_sym_val_number_token1] = ACTIONS(2259), - [aux_sym_val_number_token2] = ACTIONS(2259), - [aux_sym_val_number_token3] = ACTIONS(2259), - [aux_sym_val_number_token4] = ACTIONS(2259), - [aux_sym_val_number_token5] = ACTIONS(2259), - [anon_sym_inf] = ACTIONS(2259), - [anon_sym_DASHinf] = ACTIONS(2259), - [anon_sym_NaN] = ACTIONS(2259), - [anon_sym_0b] = ACTIONS(2259), - [anon_sym_0o] = ACTIONS(2259), - [anon_sym_0x] = ACTIONS(2259), - [sym_val_date] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym__str_single_quotes] = ACTIONS(2259), - [sym__str_back_ticks] = ACTIONS(2259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), + [709] = { + [sym_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [955] = { - [sym_comment] = STATE(955), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2343), - [sym_cmd_identifier] = ACTIONS(2341), - [anon_sym_LF] = ACTIONS(2346), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_def_DASHenv] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_DOT_DOT_LT] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2341), - [sym_val_nothing] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [aux_sym_val_number_token1] = ACTIONS(2341), - [aux_sym_val_number_token2] = ACTIONS(2341), - [aux_sym_val_number_token3] = ACTIONS(2341), - [aux_sym_val_number_token4] = ACTIONS(2341), - [aux_sym_val_number_token5] = ACTIONS(2341), - [anon_sym_inf] = ACTIONS(2341), - [anon_sym_DASHinf] = ACTIONS(2341), - [anon_sym_NaN] = ACTIONS(2341), - [anon_sym_0b] = ACTIONS(2341), - [anon_sym_0o] = ACTIONS(2341), - [anon_sym_0x] = ACTIONS(2341), - [sym_val_date] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), - [anon_sym_CARET] = ACTIONS(2341), + [710] = { + [sym_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1522), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [956] = { - [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_def_DASHenv] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), - [anon_sym_DOT_DOT_LT] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2147), - [sym_val_nothing] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym_val_number_token1] = ACTIONS(2147), - [aux_sym_val_number_token2] = ACTIONS(2147), - [aux_sym_val_number_token3] = ACTIONS(2147), - [aux_sym_val_number_token4] = ACTIONS(2147), - [aux_sym_val_number_token5] = ACTIONS(2147), - [anon_sym_inf] = ACTIONS(2147), - [anon_sym_DASHinf] = ACTIONS(2147), - [anon_sym_NaN] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), + [711] = { + [sym_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [957] = { - [sym_comment] = STATE(957), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(842), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_in] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_QMARK2] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_mod] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_bit_DASHshl] = ACTIONS(842), - [anon_sym_bit_DASHshr] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(842), - [anon_sym_starts_DASHwith] = ACTIONS(842), - [anon_sym_ends_DASHwith] = ACTIONS(842), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(842), - [anon_sym_bit_DASHxor] = ACTIONS(842), - [anon_sym_bit_DASHor] = ACTIONS(842), - [anon_sym_and] = ACTIONS(842), - [anon_sym_xor] = ACTIONS(842), - [anon_sym_or] = ACTIONS(842), - [anon_sym_not] = ACTIONS(842), - [anon_sym_DOT_DOT_LT] = ACTIONS(844), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(844), - [sym_val_nothing] = ACTIONS(842), - [anon_sym_true] = ACTIONS(842), - [anon_sym_false] = ACTIONS(842), - [aux_sym_val_number_token1] = ACTIONS(842), - [aux_sym_val_number_token2] = ACTIONS(842), - [aux_sym_val_number_token3] = ACTIONS(844), - [aux_sym_val_number_token4] = ACTIONS(844), - [aux_sym_val_number_token5] = ACTIONS(844), - [anon_sym_inf] = ACTIONS(842), - [anon_sym_DASHinf] = ACTIONS(844), - [anon_sym_NaN] = ACTIONS(842), - [anon_sym_0b] = ACTIONS(842), - [anon_sym_0o] = ACTIONS(842), - [anon_sym_0x] = ACTIONS(842), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(147), + [712] = { + [sym_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1522), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), }, - [958] = { - [sym_comment] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(2049), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [sym_cmd_identifier] = ACTIONS(2047), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_def_DASHenv] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_where] = ACTIONS(2047), - [anon_sym_not] = ACTIONS(2047), - [anon_sym_DOT_DOT_LT] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), - [sym_val_nothing] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [aux_sym_val_number_token1] = ACTIONS(2047), - [aux_sym_val_number_token2] = ACTIONS(2047), - [aux_sym_val_number_token3] = ACTIONS(2047), - [aux_sym_val_number_token4] = ACTIONS(2047), - [aux_sym_val_number_token5] = ACTIONS(2047), - [anon_sym_inf] = ACTIONS(2047), - [anon_sym_DASHinf] = ACTIONS(2047), - [anon_sym_NaN] = ACTIONS(2047), - [anon_sym_0b] = ACTIONS(2047), - [anon_sym_0o] = ACTIONS(2047), - [anon_sym_0x] = ACTIONS(2047), - [sym_val_date] = ACTIONS(2047), - [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_CARET] = ACTIONS(2047), + [713] = { + [sym_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [959] = { - [sym_comment] = STATE(959), - [ts_builtin_sym_end] = ACTIONS(2319), - [anon_sym_export] = ACTIONS(2317), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_let_DASHenv] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_SEMI] = ACTIONS(2317), - [sym_cmd_identifier] = ACTIONS(2317), - [anon_sym_LF] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_def_DASHenv] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_source] = ACTIONS(2317), - [anon_sym_source_DASHenv] = ACTIONS(2317), - [anon_sym_register] = ACTIONS(2317), - [anon_sym_hide] = ACTIONS(2317), - [anon_sym_hide_DASHenv] = ACTIONS(2317), - [anon_sym_overlay] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_not] = ACTIONS(2317), - [anon_sym_DOT_DOT_LT] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), - [sym_val_nothing] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [aux_sym_val_number_token1] = ACTIONS(2317), - [aux_sym_val_number_token2] = ACTIONS(2317), - [aux_sym_val_number_token3] = ACTIONS(2317), - [aux_sym_val_number_token4] = ACTIONS(2317), - [aux_sym_val_number_token5] = ACTIONS(2317), - [anon_sym_inf] = ACTIONS(2317), - [anon_sym_DASHinf] = ACTIONS(2317), - [anon_sym_NaN] = ACTIONS(2317), - [anon_sym_0b] = ACTIONS(2317), - [anon_sym_0o] = ACTIONS(2317), - [anon_sym_0x] = ACTIONS(2317), - [sym_val_date] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2317), + [714] = { + [sym_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1508), + [anon_sym_bit_DASHor] = ACTIONS(1520), + [anon_sym_and] = ACTIONS(1522), + [anon_sym_xor] = ACTIONS(1524), + [anon_sym_or] = ACTIONS(1526), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [960] = { - [sym_comment] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(2331), - [anon_sym_alias] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_let_DASHenv] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [sym_cmd_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2333), - [anon_sym_def] = ACTIONS(2331), - [anon_sym_def_DASHenv] = ACTIONS(2331), - [anon_sym_export_DASHenv] = ACTIONS(2331), - [anon_sym_extern] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_error] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_do] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_source] = ACTIONS(2331), - [anon_sym_source_DASHenv] = ACTIONS(2331), - [anon_sym_register] = ACTIONS(2331), - [anon_sym_hide] = ACTIONS(2331), - [anon_sym_hide_DASHenv] = ACTIONS(2331), - [anon_sym_overlay] = ACTIONS(2331), - [anon_sym_where] = ACTIONS(2331), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_DOT_DOT_LT] = ACTIONS(2331), - [anon_sym_DOT_DOT] = ACTIONS(2331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2331), - [sym_val_nothing] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [aux_sym_val_number_token1] = ACTIONS(2331), - [aux_sym_val_number_token2] = ACTIONS(2331), - [aux_sym_val_number_token3] = ACTIONS(2331), - [aux_sym_val_number_token4] = ACTIONS(2331), - [aux_sym_val_number_token5] = ACTIONS(2331), - [anon_sym_inf] = ACTIONS(2331), - [anon_sym_DASHinf] = ACTIONS(2331), - [anon_sym_NaN] = ACTIONS(2331), - [anon_sym_0b] = ACTIONS(2331), - [anon_sym_0o] = ACTIONS(2331), - [anon_sym_0x] = ACTIONS(2331), - [sym_val_date] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym__str_single_quotes] = ACTIONS(2331), - [sym__str_back_ticks] = ACTIONS(2331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2331), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), + [715] = { + [sym_comment] = STATE(715), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [961] = { - [sym_comment] = STATE(961), - [ts_builtin_sym_end] = ACTIONS(2075), - [anon_sym_export] = ACTIONS(2073), - [anon_sym_alias] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_let_DASHenv] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [sym_cmd_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2075), - [anon_sym_def] = ACTIONS(2073), - [anon_sym_def_DASHenv] = ACTIONS(2073), - [anon_sym_export_DASHenv] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_module] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_source] = ACTIONS(2073), - [anon_sym_source_DASHenv] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_hide] = ACTIONS(2073), - [anon_sym_hide_DASHenv] = ACTIONS(2073), - [anon_sym_overlay] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_not] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [sym_val_nothing] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = 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(2073), - [aux_sym_val_number_token5] = ACTIONS(2073), - [anon_sym_inf] = ACTIONS(2073), - [anon_sym_DASHinf] = ACTIONS(2073), - [anon_sym_NaN] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2073), - [anon_sym_0o] = ACTIONS(2073), - [anon_sym_0x] = ACTIONS(2073), - [sym_val_date] = ACTIONS(2073), - [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_CARET] = ACTIONS(2073), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [962] = { - [sym_comment] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(2045), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [sym_cmd_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_def_DASHenv] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_where] = ACTIONS(2043), - [anon_sym_not] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [sym_val_nothing] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2043), - [anon_sym_DASHinf] = ACTIONS(2043), - [anon_sym_NaN] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [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_CARET] = ACTIONS(2043), + [717] = { + [sym_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [963] = { - [sym_comment] = STATE(963), - [ts_builtin_sym_end] = ACTIONS(2045), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [sym_cmd_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_def_DASHenv] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_where] = ACTIONS(2043), - [anon_sym_not] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [sym_val_nothing] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2043), - [anon_sym_DASHinf] = ACTIONS(2043), - [anon_sym_NaN] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [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_CARET] = ACTIONS(2043), + [718] = { + [sym_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [964] = { - [sym_comment] = STATE(964), - [ts_builtin_sym_end] = ACTIONS(2065), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [sym_cmd_identifier] = ACTIONS(2063), - [anon_sym_LF] = ACTIONS(2065), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_def_DASHenv] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2063), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_where] = ACTIONS(2063), - [anon_sym_not] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [sym_val_nothing] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2063), - [anon_sym_DASHinf] = ACTIONS(2063), - [anon_sym_NaN] = ACTIONS(2063), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2063), - [anon_sym_0x] = ACTIONS(2063), - [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_CARET] = ACTIONS(2063), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [965] = { - [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_alias] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_let_DASHenv] = ACTIONS(2351), - [anon_sym_mut] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [sym_cmd_identifier] = ACTIONS(2351), - [anon_sym_LF] = ACTIONS(2356), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_def_DASHenv] = ACTIONS(2351), - [anon_sym_export_DASHenv] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_error] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_source] = ACTIONS(2351), - [anon_sym_source_DASHenv] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_hide_DASHenv] = ACTIONS(2351), - [anon_sym_overlay] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(2351), - [anon_sym_not] = ACTIONS(2351), - [anon_sym_DOT_DOT_LT] = ACTIONS(2351), - [anon_sym_DOT_DOT] = ACTIONS(2351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2351), - [sym_val_nothing] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [aux_sym_val_number_token1] = ACTIONS(2351), - [aux_sym_val_number_token2] = ACTIONS(2351), - [aux_sym_val_number_token3] = ACTIONS(2351), - [aux_sym_val_number_token4] = ACTIONS(2351), - [aux_sym_val_number_token5] = ACTIONS(2351), - [anon_sym_inf] = ACTIONS(2351), - [anon_sym_DASHinf] = ACTIONS(2351), - [anon_sym_NaN] = ACTIONS(2351), - [anon_sym_0b] = ACTIONS(2351), - [anon_sym_0o] = ACTIONS(2351), - [anon_sym_0x] = ACTIONS(2351), - [sym_val_date] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2351), - [anon_sym_CARET] = ACTIONS(2351), + [720] = { + [sym_comment] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [966] = { - [sym_comment] = STATE(966), - [ts_builtin_sym_end] = ACTIONS(2329), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_alias] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_let_DASHenv] = ACTIONS(2327), - [anon_sym_mut] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [sym_cmd_identifier] = ACTIONS(2327), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2327), - [anon_sym_def_DASHenv] = ACTIONS(2327), - [anon_sym_export_DASHenv] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_error] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_source] = ACTIONS(2327), - [anon_sym_source_DASHenv] = ACTIONS(2327), - [anon_sym_register] = ACTIONS(2327), - [anon_sym_hide] = ACTIONS(2327), - [anon_sym_hide_DASHenv] = ACTIONS(2327), - [anon_sym_overlay] = ACTIONS(2327), - [anon_sym_where] = ACTIONS(2327), - [anon_sym_not] = ACTIONS(2327), - [anon_sym_DOT_DOT_LT] = ACTIONS(2327), - [anon_sym_DOT_DOT] = ACTIONS(2327), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2327), - [sym_val_nothing] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [aux_sym_val_number_token1] = ACTIONS(2327), - [aux_sym_val_number_token2] = ACTIONS(2327), - [aux_sym_val_number_token3] = ACTIONS(2327), - [aux_sym_val_number_token4] = ACTIONS(2327), - [aux_sym_val_number_token5] = ACTIONS(2327), - [anon_sym_inf] = ACTIONS(2327), - [anon_sym_DASHinf] = ACTIONS(2327), - [anon_sym_NaN] = ACTIONS(2327), - [anon_sym_0b] = ACTIONS(2327), - [anon_sym_0o] = ACTIONS(2327), - [anon_sym_0x] = ACTIONS(2327), - [sym_val_date] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym__str_single_quotes] = ACTIONS(2327), - [sym__str_back_ticks] = ACTIONS(2327), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2327), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), - [anon_sym_CARET] = ACTIONS(2327), + [721] = { + [sym_comment] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [967] = { - [sym_comment] = STATE(967), - [ts_builtin_sym_end] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_alias] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_let_DASHenv] = ACTIONS(2321), - [anon_sym_mut] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2321), - [sym_cmd_identifier] = ACTIONS(2321), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_def_DASHenv] = ACTIONS(2321), - [anon_sym_export_DASHenv] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_error] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_source] = ACTIONS(2321), - [anon_sym_source_DASHenv] = ACTIONS(2321), - [anon_sym_register] = ACTIONS(2321), - [anon_sym_hide] = ACTIONS(2321), - [anon_sym_hide_DASHenv] = ACTIONS(2321), - [anon_sym_overlay] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_not] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2321), - [sym_val_nothing] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [aux_sym_val_number_token1] = ACTIONS(2321), - [aux_sym_val_number_token2] = ACTIONS(2321), - [aux_sym_val_number_token3] = ACTIONS(2321), - [aux_sym_val_number_token4] = ACTIONS(2321), - [aux_sym_val_number_token5] = ACTIONS(2321), - [anon_sym_inf] = ACTIONS(2321), - [anon_sym_DASHinf] = ACTIONS(2321), - [anon_sym_NaN] = ACTIONS(2321), - [anon_sym_0b] = ACTIONS(2321), - [anon_sym_0o] = ACTIONS(2321), - [anon_sym_0x] = ACTIONS(2321), - [sym_val_date] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym__str_single_quotes] = ACTIONS(2321), - [sym__str_back_ticks] = ACTIONS(2321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2321), + [722] = { + [sym_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [968] = { - [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [sym_cmd_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_def_DASHenv] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_where] = ACTIONS(2055), - [anon_sym_not] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [sym_val_nothing] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [aux_sym_val_number_token1] = ACTIONS(2055), - [aux_sym_val_number_token2] = ACTIONS(2055), - [aux_sym_val_number_token3] = ACTIONS(2055), - [aux_sym_val_number_token4] = ACTIONS(2055), - [aux_sym_val_number_token5] = ACTIONS(2055), - [anon_sym_inf] = ACTIONS(2055), - [anon_sym_DASHinf] = ACTIONS(2055), - [anon_sym_NaN] = ACTIONS(2055), - [anon_sym_0b] = ACTIONS(2055), - [anon_sym_0o] = ACTIONS(2055), - [anon_sym_0x] = ACTIONS(2055), - [sym_val_date] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), + [723] = { + [sym_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [969] = { - [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2311), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [sym_cmd_identifier] = ACTIONS(2309), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_def_DASHenv] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_where] = ACTIONS(2309), - [anon_sym_not] = ACTIONS(2309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2309), - [anon_sym_DOT_DOT] = ACTIONS(2309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2309), - [sym_val_nothing] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [aux_sym_val_number_token1] = ACTIONS(2309), - [aux_sym_val_number_token2] = ACTIONS(2309), - [aux_sym_val_number_token3] = ACTIONS(2309), - [aux_sym_val_number_token4] = ACTIONS(2309), - [aux_sym_val_number_token5] = ACTIONS(2309), - [anon_sym_inf] = ACTIONS(2309), - [anon_sym_DASHinf] = ACTIONS(2309), - [anon_sym_NaN] = ACTIONS(2309), - [anon_sym_0b] = ACTIONS(2309), - [anon_sym_0o] = ACTIONS(2309), - [anon_sym_0x] = ACTIONS(2309), - [sym_val_date] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym__str_single_quotes] = ACTIONS(2309), - [sym__str_back_ticks] = ACTIONS(2309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), + [724] = { + [sym__flag] = STATE(835), + [sym_long_flag] = STATE(823), + [sym_comment] = STATE(724), + [aux_sym_overlay_use_repeat1] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1392), + [anon_sym_export] = ACTIONS(1390), + [anon_sym_alias] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_let_DASHenv] = ACTIONS(1390), + [anon_sym_mut] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [sym_cmd_identifier] = ACTIONS(1390), + [anon_sym_LF] = ACTIONS(1392), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_def_DASHenv] = ACTIONS(1390), + [anon_sym_export_DASHenv] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_module] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_error] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_source] = ACTIONS(1390), + [anon_sym_source_DASHenv] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_hide] = ACTIONS(1390), + [anon_sym_hide_DASHenv] = ACTIONS(1390), + [anon_sym_overlay] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_where] = ACTIONS(1390), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_DOT_DOT_LT] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), + [sym_val_nothing] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [aux_sym_val_number_token1] = ACTIONS(1390), + [aux_sym_val_number_token2] = ACTIONS(1390), + [aux_sym_val_number_token3] = ACTIONS(1390), + [aux_sym_val_number_token4] = ACTIONS(1390), + [aux_sym_val_number_token5] = ACTIONS(1390), + [anon_sym_inf] = ACTIONS(1390), + [anon_sym_DASHinf] = ACTIONS(1390), + [anon_sym_NaN] = ACTIONS(1390), + [anon_sym_0b] = ACTIONS(1390), + [anon_sym_0o] = ACTIONS(1390), + [anon_sym_0x] = ACTIONS(1390), + [sym_val_date] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym__str_single_quotes] = ACTIONS(1390), + [sym__str_back_ticks] = ACTIONS(1390), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [sym_short_flag] = ACTIONS(1543), [anon_sym_POUND] = ACTIONS(3), }, - [970] = { - [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(2061), - [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), - [anon_sym_SEMI] = ACTIONS(2059), - [sym_cmd_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_where] = ACTIONS(2059), - [anon_sym_not] = ACTIONS(2059), - [anon_sym_DOT_DOT_LT] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), - [sym_val_nothing] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2059), - [anon_sym_DASHinf] = ACTIONS(2059), - [anon_sym_NaN] = ACTIONS(2059), - [anon_sym_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = 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_CARET] = ACTIONS(2059), + [725] = { + [sym__flag] = STATE(835), + [sym_long_flag] = STATE(823), + [sym_comment] = STATE(725), + [aux_sym_overlay_use_repeat1] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(1386), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_alias] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_let_DASHenv] = ACTIONS(1384), + [anon_sym_mut] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [sym_cmd_identifier] = ACTIONS(1384), + [anon_sym_LF] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1384), + [anon_sym_def_DASHenv] = ACTIONS(1384), + [anon_sym_export_DASHenv] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_error] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_source] = ACTIONS(1384), + [anon_sym_source_DASHenv] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_hide] = ACTIONS(1384), + [anon_sym_hide_DASHenv] = ACTIONS(1384), + [anon_sym_overlay] = ACTIONS(1384), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_where] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1384), + [anon_sym_DOT_DOT_LT] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1384), + [sym_val_nothing] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [aux_sym_val_number_token1] = ACTIONS(1384), + [aux_sym_val_number_token2] = ACTIONS(1384), + [aux_sym_val_number_token3] = ACTIONS(1384), + [aux_sym_val_number_token4] = ACTIONS(1384), + [aux_sym_val_number_token5] = ACTIONS(1384), + [anon_sym_inf] = ACTIONS(1384), + [anon_sym_DASHinf] = ACTIONS(1384), + [anon_sym_NaN] = ACTIONS(1384), + [anon_sym_0b] = ACTIONS(1384), + [anon_sym_0o] = ACTIONS(1384), + [anon_sym_0x] = ACTIONS(1384), + [sym_val_date] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym__str_single_quotes] = ACTIONS(1384), + [sym__str_back_ticks] = ACTIONS(1384), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [sym_short_flag] = ACTIONS(1543), [anon_sym_POUND] = ACTIONS(3), }, - [971] = { - [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2179), - [anon_sym_alias] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_let_DASHenv] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [sym_cmd_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2179), - [anon_sym_def_DASHenv] = ACTIONS(2179), - [anon_sym_export_DASHenv] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2179), - [anon_sym_module] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(2179), - [anon_sym_error] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_do] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_source] = ACTIONS(2179), - [anon_sym_source_DASHenv] = ACTIONS(2179), - [anon_sym_register] = ACTIONS(2179), - [anon_sym_hide] = ACTIONS(2179), - [anon_sym_hide_DASHenv] = ACTIONS(2179), - [anon_sym_overlay] = ACTIONS(2179), - [anon_sym_where] = ACTIONS(2179), - [anon_sym_not] = ACTIONS(2179), - [anon_sym_DOT_DOT_LT] = ACTIONS(2179), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2179), - [sym_val_nothing] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2179), - [anon_sym_false] = ACTIONS(2179), - [aux_sym_val_number_token1] = ACTIONS(2179), - [aux_sym_val_number_token2] = ACTIONS(2179), - [aux_sym_val_number_token3] = ACTIONS(2179), - [aux_sym_val_number_token4] = ACTIONS(2179), - [aux_sym_val_number_token5] = ACTIONS(2179), - [anon_sym_inf] = ACTIONS(2179), - [anon_sym_DASHinf] = ACTIONS(2179), - [anon_sym_NaN] = ACTIONS(2179), - [anon_sym_0b] = ACTIONS(2179), - [anon_sym_0o] = ACTIONS(2179), - [anon_sym_0x] = ACTIONS(2179), - [sym_val_date] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [sym__str_single_quotes] = ACTIONS(2179), - [sym__str_back_ticks] = ACTIONS(2179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(2179), + [726] = { + [sym_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [972] = { - [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2201), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_alias] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_let_DASHenv] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [sym_cmd_identifier] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2199), - [anon_sym_def_DASHenv] = ACTIONS(2199), - [anon_sym_export_DASHenv] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_source] = ACTIONS(2199), - [anon_sym_source_DASHenv] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_hide] = ACTIONS(2199), - [anon_sym_hide_DASHenv] = ACTIONS(2199), - [anon_sym_overlay] = ACTIONS(2199), - [anon_sym_where] = ACTIONS(2199), - [anon_sym_not] = ACTIONS(2199), - [anon_sym_DOT_DOT_LT] = ACTIONS(2199), - [anon_sym_DOT_DOT] = ACTIONS(2199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2199), - [sym_val_nothing] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2199), - [anon_sym_false] = ACTIONS(2199), - [aux_sym_val_number_token1] = ACTIONS(2199), - [aux_sym_val_number_token2] = ACTIONS(2199), - [aux_sym_val_number_token3] = ACTIONS(2199), - [aux_sym_val_number_token4] = ACTIONS(2199), - [aux_sym_val_number_token5] = ACTIONS(2199), - [anon_sym_inf] = ACTIONS(2199), - [anon_sym_DASHinf] = ACTIONS(2199), - [anon_sym_NaN] = ACTIONS(2199), - [anon_sym_0b] = ACTIONS(2199), - [anon_sym_0o] = ACTIONS(2199), - [anon_sym_0x] = ACTIONS(2199), - [sym_val_date] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), + [727] = { + [sym_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [973] = { - [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2143), - [anon_sym_alias] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2143), - [anon_sym_let_DASHenv] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [sym_cmd_identifier] = ACTIONS(2143), - [anon_sym_LF] = ACTIONS(2145), - [anon_sym_def] = ACTIONS(2143), - [anon_sym_def_DASHenv] = ACTIONS(2143), - [anon_sym_export_DASHenv] = ACTIONS(2143), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym_module] = ACTIONS(2143), - [anon_sym_use] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2143), - [anon_sym_error] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_loop] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [anon_sym_do] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_source] = ACTIONS(2143), - [anon_sym_source_DASHenv] = ACTIONS(2143), - [anon_sym_register] = ACTIONS(2143), - [anon_sym_hide] = ACTIONS(2143), - [anon_sym_hide_DASHenv] = ACTIONS(2143), - [anon_sym_overlay] = ACTIONS(2143), - [anon_sym_where] = ACTIONS(2143), - [anon_sym_not] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), - [sym_val_nothing] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [aux_sym_val_number_token1] = ACTIONS(2143), - [aux_sym_val_number_token2] = ACTIONS(2143), - [aux_sym_val_number_token3] = ACTIONS(2143), - [aux_sym_val_number_token4] = ACTIONS(2143), - [aux_sym_val_number_token5] = ACTIONS(2143), - [anon_sym_inf] = ACTIONS(2143), - [anon_sym_DASHinf] = ACTIONS(2143), - [anon_sym_NaN] = ACTIONS(2143), - [anon_sym_0b] = ACTIONS(2143), - [anon_sym_0o] = ACTIONS(2143), - [anon_sym_0x] = ACTIONS(2143), - [sym_val_date] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), - [anon_sym_CARET] = ACTIONS(2143), + [728] = { + [sym_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [974] = { - [sym_comment] = STATE(974), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [sym_cmd_identifier] = ACTIONS(2361), - [anon_sym_LF] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_def_DASHenv] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_where] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_DOT_DOT_LT] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), - [sym_val_nothing] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [aux_sym_val_number_token1] = ACTIONS(2361), - [aux_sym_val_number_token2] = ACTIONS(2361), - [aux_sym_val_number_token3] = ACTIONS(2361), - [aux_sym_val_number_token4] = ACTIONS(2361), - [aux_sym_val_number_token5] = ACTIONS(2361), - [anon_sym_inf] = ACTIONS(2361), - [anon_sym_DASHinf] = ACTIONS(2361), - [anon_sym_NaN] = ACTIONS(2361), - [anon_sym_0b] = ACTIONS(2361), - [anon_sym_0o] = ACTIONS(2361), - [anon_sym_0x] = ACTIONS(2361), - [sym_val_date] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2361), - [anon_sym_CARET] = ACTIONS(2361), + [729] = { + [sym_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [975] = { - [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [sym_cmd_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_def_DASHenv] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_where] = ACTIONS(2183), - [anon_sym_not] = ACTIONS(2183), - [anon_sym_DOT_DOT_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), - [sym_val_nothing] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [aux_sym_val_number_token1] = ACTIONS(2183), - [aux_sym_val_number_token2] = ACTIONS(2183), - [aux_sym_val_number_token3] = ACTIONS(2183), - [aux_sym_val_number_token4] = ACTIONS(2183), - [aux_sym_val_number_token5] = ACTIONS(2183), - [anon_sym_inf] = ACTIONS(2183), - [anon_sym_DASHinf] = ACTIONS(2183), - [anon_sym_NaN] = ACTIONS(2183), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2183), - [anon_sym_0x] = ACTIONS(2183), - [sym_val_date] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2183), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), + [730] = { + [sym_comment] = STATE(730), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1549), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [976] = { - [sym_comment] = STATE(976), - [ts_builtin_sym_end] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_alias] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_let_DASHenv] = ACTIONS(2279), - [anon_sym_mut] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [sym_cmd_identifier] = ACTIONS(2279), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2279), - [anon_sym_def_DASHenv] = ACTIONS(2279), - [anon_sym_export_DASHenv] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_error] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_source] = ACTIONS(2279), - [anon_sym_source_DASHenv] = ACTIONS(2279), - [anon_sym_register] = ACTIONS(2279), - [anon_sym_hide] = ACTIONS(2279), - [anon_sym_hide_DASHenv] = ACTIONS(2279), - [anon_sym_overlay] = ACTIONS(2279), - [anon_sym_where] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2279), - [anon_sym_DOT_DOT_LT] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2279), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), - [sym_val_nothing] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [aux_sym_val_number_token1] = ACTIONS(2279), - [aux_sym_val_number_token2] = ACTIONS(2279), - [aux_sym_val_number_token3] = ACTIONS(2279), - [aux_sym_val_number_token4] = ACTIONS(2279), - [aux_sym_val_number_token5] = ACTIONS(2279), - [anon_sym_inf] = ACTIONS(2279), - [anon_sym_DASHinf] = ACTIONS(2279), - [anon_sym_NaN] = ACTIONS(2279), - [anon_sym_0b] = ACTIONS(2279), - [anon_sym_0o] = ACTIONS(2279), - [anon_sym_0x] = ACTIONS(2279), - [sym_val_date] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), + [731] = { + [sym__flag] = STATE(835), + [sym_long_flag] = STATE(823), + [sym_comment] = STATE(731), + [aux_sym_overlay_use_repeat1] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_alias] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_let_DASHenv] = ACTIONS(1480), + [anon_sym_mut] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_cmd_identifier] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_def_DASHenv] = ACTIONS(1480), + [anon_sym_export_DASHenv] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_error] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_source] = ACTIONS(1480), + [anon_sym_source_DASHenv] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_hide] = ACTIONS(1480), + [anon_sym_hide_DASHenv] = ACTIONS(1480), + [anon_sym_overlay] = ACTIONS(1480), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_where] = ACTIONS(1480), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [sym_val_nothing] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [aux_sym_val_number_token1] = ACTIONS(1480), + [aux_sym_val_number_token2] = ACTIONS(1480), + [aux_sym_val_number_token3] = ACTIONS(1480), + [aux_sym_val_number_token4] = ACTIONS(1480), + [aux_sym_val_number_token5] = ACTIONS(1480), + [anon_sym_inf] = ACTIONS(1480), + [anon_sym_DASHinf] = ACTIONS(1480), + [anon_sym_NaN] = ACTIONS(1480), + [anon_sym_0b] = ACTIONS(1480), + [anon_sym_0o] = ACTIONS(1480), + [anon_sym_0x] = ACTIONS(1480), + [sym_val_date] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym__str_single_quotes] = ACTIONS(1480), + [sym__str_back_ticks] = ACTIONS(1480), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1480), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [sym_short_flag] = ACTIONS(1543), [anon_sym_POUND] = ACTIONS(3), }, - [977] = { - [sym_comment] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [sym_cmd_identifier] = ACTIONS(2275), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_def_DASHenv] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_where] = ACTIONS(2275), - [anon_sym_not] = ACTIONS(2275), - [anon_sym_DOT_DOT_LT] = ACTIONS(2275), - [anon_sym_DOT_DOT] = ACTIONS(2275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2275), - [sym_val_nothing] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [aux_sym_val_number_token1] = ACTIONS(2275), - [aux_sym_val_number_token2] = ACTIONS(2275), - [aux_sym_val_number_token3] = ACTIONS(2275), - [aux_sym_val_number_token4] = ACTIONS(2275), - [aux_sym_val_number_token5] = ACTIONS(2275), - [anon_sym_inf] = ACTIONS(2275), - [anon_sym_DASHinf] = ACTIONS(2275), - [anon_sym_NaN] = ACTIONS(2275), - [anon_sym_0b] = ACTIONS(2275), - [anon_sym_0o] = ACTIONS(2275), - [anon_sym_0x] = ACTIONS(2275), - [sym_val_date] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), - [anon_sym_CARET] = ACTIONS(2275), + [732] = { + [sym_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [978] = { - [sym_comment] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(2053), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [sym_cmd_identifier] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(2053), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_def_DASHenv] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_where] = ACTIONS(2051), - [anon_sym_not] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [sym_val_nothing] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [aux_sym_val_number_token1] = ACTIONS(2051), - [aux_sym_val_number_token2] = ACTIONS(2051), - [aux_sym_val_number_token3] = ACTIONS(2051), - [aux_sym_val_number_token4] = ACTIONS(2051), - [aux_sym_val_number_token5] = ACTIONS(2051), - [anon_sym_inf] = ACTIONS(2051), - [anon_sym_DASHinf] = ACTIONS(2051), - [anon_sym_NaN] = ACTIONS(2051), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), - [anon_sym_CARET] = ACTIONS(2051), + [733] = { + [sym_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_err_GT] = ACTIONS(926), + [anon_sym_out_GT] = ACTIONS(926), + [anon_sym_e_GT] = ACTIONS(926), + [anon_sym_o_GT] = ACTIONS(926), + [anon_sym_err_PLUSout_GT] = ACTIONS(926), + [anon_sym_out_PLUSerr_GT] = ACTIONS(926), + [anon_sym_o_PLUSe_GT] = ACTIONS(926), + [anon_sym_e_PLUSo_GT] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [aux_sym_unquoted_token1] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [979] = { - [sym_comment] = STATE(979), - [ts_builtin_sym_end] = ACTIONS(2079), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_alias] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_let_DASHenv] = ACTIONS(2077), - [anon_sym_mut] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [sym_cmd_identifier] = ACTIONS(2077), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2077), - [anon_sym_def_DASHenv] = ACTIONS(2077), - [anon_sym_export_DASHenv] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_error] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_source] = ACTIONS(2077), - [anon_sym_source_DASHenv] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2077), - [anon_sym_hide] = ACTIONS(2077), - [anon_sym_hide_DASHenv] = ACTIONS(2077), - [anon_sym_overlay] = ACTIONS(2077), - [anon_sym_where] = ACTIONS(2077), - [anon_sym_not] = ACTIONS(2077), - [anon_sym_DOT_DOT_LT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), - [sym_val_nothing] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = 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(2077), - [aux_sym_val_number_token5] = ACTIONS(2077), - [anon_sym_inf] = ACTIONS(2077), - [anon_sym_DASHinf] = ACTIONS(2077), - [anon_sym_NaN] = ACTIONS(2077), - [anon_sym_0b] = ACTIONS(2077), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2077), - [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_CARET] = ACTIONS(2077), + [734] = { + [sym_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LF] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_in] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_STAR_STAR] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_bit_DASHshl] = ACTIONS(926), + [anon_sym_bit_DASHshr] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT2] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_not_DASHin] = ACTIONS(926), + [anon_sym_starts_DASHwith] = ACTIONS(926), + [anon_sym_ends_DASHwith] = ACTIONS(926), + [anon_sym_EQ_TILDE] = ACTIONS(926), + [anon_sym_BANG_TILDE] = ACTIONS(926), + [anon_sym_bit_DASHand] = ACTIONS(926), + [anon_sym_bit_DASHxor] = ACTIONS(926), + [anon_sym_bit_DASHor] = ACTIONS(926), + [anon_sym_and] = ACTIONS(926), + [anon_sym_xor] = ACTIONS(926), + [anon_sym_or] = ACTIONS(926), + [anon_sym_DOT_DOT_LT] = ACTIONS(141), + [anon_sym_DOT_DOT] = ACTIONS(141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(141), + [sym_val_nothing] = ACTIONS(926), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_val_number_token1] = ACTIONS(926), + [aux_sym_val_number_token2] = ACTIONS(926), + [aux_sym_val_number_token3] = ACTIONS(926), + [aux_sym_val_number_token4] = ACTIONS(926), + [aux_sym_val_number_token5] = ACTIONS(926), + [anon_sym_inf] = ACTIONS(926), + [anon_sym_DASHinf] = ACTIONS(926), + [anon_sym_NaN] = ACTIONS(926), + [anon_sym_0b] = ACTIONS(926), + [anon_sym_0o] = ACTIONS(926), + [anon_sym_0x] = ACTIONS(926), + [sym_val_date] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym__str_single_quotes] = ACTIONS(926), + [sym__str_back_ticks] = ACTIONS(926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), + [anon_sym_err_GT] = ACTIONS(926), + [anon_sym_out_GT] = ACTIONS(926), + [anon_sym_e_GT] = ACTIONS(926), + [anon_sym_o_GT] = ACTIONS(926), + [anon_sym_err_PLUSout_GT] = ACTIONS(926), + [anon_sym_out_PLUSerr_GT] = ACTIONS(926), + [anon_sym_o_PLUSe_GT] = ACTIONS(926), + [anon_sym_e_PLUSo_GT] = ACTIONS(926), + [sym_short_flag] = ACTIONS(926), + [aux_sym_unquoted_token1] = ACTIONS(926), [anon_sym_POUND] = ACTIONS(3), }, - [980] = { - [sym_comment] = STATE(980), - [ts_builtin_sym_end] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_let_DASHenv] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [sym_cmd_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2335), - [anon_sym_def_DASHenv] = ACTIONS(2335), - [anon_sym_export_DASHenv] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_error] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_source] = ACTIONS(2335), - [anon_sym_source_DASHenv] = ACTIONS(2335), - [anon_sym_register] = ACTIONS(2335), - [anon_sym_hide] = ACTIONS(2335), - [anon_sym_hide_DASHenv] = ACTIONS(2335), - [anon_sym_overlay] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(2335), - [anon_sym_not] = ACTIONS(2335), - [anon_sym_DOT_DOT_LT] = ACTIONS(2335), - [anon_sym_DOT_DOT] = ACTIONS(2335), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), - [sym_val_nothing] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [aux_sym_val_number_token1] = ACTIONS(2335), - [aux_sym_val_number_token2] = ACTIONS(2335), - [aux_sym_val_number_token3] = ACTIONS(2335), - [aux_sym_val_number_token4] = ACTIONS(2335), - [aux_sym_val_number_token5] = ACTIONS(2335), - [anon_sym_inf] = ACTIONS(2335), - [anon_sym_DASHinf] = ACTIONS(2335), - [anon_sym_NaN] = ACTIONS(2335), - [anon_sym_0b] = ACTIONS(2335), - [anon_sym_0o] = ACTIONS(2335), - [anon_sym_0x] = ACTIONS(2335), - [sym_val_date] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), + [735] = { + [sym_cell_path] = STATE(838), + [sym_path] = STATE(653), + [sym_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [sym_short_flag] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, - [981] = { - [sym_comment] = STATE(981), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2373), - [sym_cmd_identifier] = ACTIONS(2371), - [anon_sym_LF] = ACTIONS(2376), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_def_DASHenv] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_where] = ACTIONS(2371), - [anon_sym_not] = ACTIONS(2371), - [anon_sym_DOT_DOT_LT] = ACTIONS(2371), - [anon_sym_DOT_DOT] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2371), - [sym_val_nothing] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [aux_sym_val_number_token1] = ACTIONS(2371), - [aux_sym_val_number_token2] = ACTIONS(2371), - [aux_sym_val_number_token3] = ACTIONS(2371), - [aux_sym_val_number_token4] = ACTIONS(2371), - [aux_sym_val_number_token5] = ACTIONS(2371), - [anon_sym_inf] = ACTIONS(2371), - [anon_sym_DASHinf] = ACTIONS(2371), - [anon_sym_NaN] = ACTIONS(2371), - [anon_sym_0b] = ACTIONS(2371), - [anon_sym_0o] = ACTIONS(2371), - [anon_sym_0x] = ACTIONS(2371), - [sym_val_date] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(3), - }, - [982] = { - [sym_comment] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(2273), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [sym_cmd_identifier] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_def_DASHenv] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(2271), - [anon_sym_DOT_DOT_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2271), - [sym_val_nothing] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [aux_sym_val_number_token1] = ACTIONS(2271), - [aux_sym_val_number_token2] = ACTIONS(2271), - [aux_sym_val_number_token3] = ACTIONS(2271), - [aux_sym_val_number_token4] = ACTIONS(2271), - [aux_sym_val_number_token5] = ACTIONS(2271), - [anon_sym_inf] = ACTIONS(2271), - [anon_sym_DASHinf] = ACTIONS(2271), - [anon_sym_NaN] = ACTIONS(2271), - [anon_sym_0b] = ACTIONS(2271), - [anon_sym_0o] = ACTIONS(2271), - [anon_sym_0x] = ACTIONS(2271), - [sym_val_date] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), + [736] = { + [sym_comment] = STATE(736), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1549), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [983] = { - [sym_comment] = STATE(983), - [ts_builtin_sym_end] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_alias] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_let_DASHenv] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2221), - [sym_cmd_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2224), - [anon_sym_def] = ACTIONS(2219), - [anon_sym_def_DASHenv] = ACTIONS(2219), - [anon_sym_export_DASHenv] = ACTIONS(2219), - [anon_sym_extern] = ACTIONS(2219), - [anon_sym_module] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_error] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_do] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_source] = ACTIONS(2219), - [anon_sym_source_DASHenv] = ACTIONS(2219), - [anon_sym_register] = ACTIONS(2219), - [anon_sym_hide] = ACTIONS(2219), - [anon_sym_hide_DASHenv] = ACTIONS(2219), - [anon_sym_overlay] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_not] = ACTIONS(2219), - [anon_sym_DOT_DOT_LT] = ACTIONS(2219), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2219), - [sym_val_nothing] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym_val_number_token1] = ACTIONS(2219), - [aux_sym_val_number_token2] = ACTIONS(2219), - [aux_sym_val_number_token3] = ACTIONS(2219), - [aux_sym_val_number_token4] = ACTIONS(2219), - [aux_sym_val_number_token5] = ACTIONS(2219), - [anon_sym_inf] = ACTIONS(2219), - [anon_sym_DASHinf] = ACTIONS(2219), - [anon_sym_NaN] = ACTIONS(2219), - [anon_sym_0b] = ACTIONS(2219), - [anon_sym_0o] = ACTIONS(2219), - [anon_sym_0x] = ACTIONS(2219), - [sym_val_date] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym__str_single_quotes] = ACTIONS(2219), - [sym__str_back_ticks] = ACTIONS(2219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), + [737] = { + [sym_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_in] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_STAR_STAR] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_bit_DASHshl] = ACTIONS(1029), + [anon_sym_bit_DASHshr] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT2] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_not_DASHin] = ACTIONS(1029), + [anon_sym_starts_DASHwith] = ACTIONS(1029), + [anon_sym_ends_DASHwith] = ACTIONS(1029), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1029), + [anon_sym_bit_DASHxor] = ACTIONS(1029), + [anon_sym_bit_DASHor] = ACTIONS(1029), + [anon_sym_and] = ACTIONS(1029), + [anon_sym_xor] = ACTIONS(1029), + [anon_sym_or] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1029), + [anon_sym_out_GT] = ACTIONS(1029), + [anon_sym_e_GT] = ACTIONS(1029), + [anon_sym_o_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT] = ACTIONS(1029), + [sym_short_flag] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [984] = { - [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_alias] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_let_DASHenv] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2253), - [sym_cmd_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2255), - [anon_sym_def] = ACTIONS(2253), - [anon_sym_def_DASHenv] = ACTIONS(2253), - [anon_sym_export_DASHenv] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_module] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_error] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_source] = ACTIONS(2253), - [anon_sym_source_DASHenv] = ACTIONS(2253), - [anon_sym_register] = ACTIONS(2253), - [anon_sym_hide] = ACTIONS(2253), - [anon_sym_hide_DASHenv] = ACTIONS(2253), - [anon_sym_overlay] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_not] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT] = ACTIONS(2253), - [anon_sym_DOT_DOT] = ACTIONS(2253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), - [sym_val_nothing] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [aux_sym_val_number_token1] = ACTIONS(2253), - [aux_sym_val_number_token2] = ACTIONS(2253), - [aux_sym_val_number_token3] = ACTIONS(2253), - [aux_sym_val_number_token4] = ACTIONS(2253), - [aux_sym_val_number_token5] = ACTIONS(2253), - [anon_sym_inf] = ACTIONS(2253), - [anon_sym_DASHinf] = ACTIONS(2253), - [anon_sym_NaN] = ACTIONS(2253), - [anon_sym_0b] = ACTIONS(2253), - [anon_sym_0o] = ACTIONS(2253), - [anon_sym_0x] = ACTIONS(2253), - [sym_val_date] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), + [738] = { + [sym_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [985] = { - [sym_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(2083), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_alias] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_let_DASHenv] = ACTIONS(2081), - [anon_sym_mut] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [sym_cmd_identifier] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2081), - [anon_sym_def_DASHenv] = ACTIONS(2081), - [anon_sym_export_DASHenv] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_error] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_source] = ACTIONS(2081), - [anon_sym_source_DASHenv] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2081), - [anon_sym_hide] = ACTIONS(2081), - [anon_sym_hide_DASHenv] = ACTIONS(2081), - [anon_sym_overlay] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_not] = ACTIONS(2081), - [anon_sym_DOT_DOT_LT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), - [sym_val_nothing] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = 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(2081), - [aux_sym_val_number_token5] = ACTIONS(2081), - [anon_sym_inf] = ACTIONS(2081), - [anon_sym_DASHinf] = ACTIONS(2081), - [anon_sym_NaN] = ACTIONS(2081), - [anon_sym_0b] = ACTIONS(2081), - [anon_sym_0o] = ACTIONS(2081), - [anon_sym_0x] = ACTIONS(2081), - [sym_val_date] = ACTIONS(2081), - [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_CARET] = ACTIONS(2081), + [739] = { + [sym_comment] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [986] = { - [sym_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(2273), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [sym_cmd_identifier] = ACTIONS(2271), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_def_DASHenv] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(2271), - [anon_sym_DOT_DOT_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2271), - [sym_val_nothing] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [aux_sym_val_number_token1] = ACTIONS(2271), - [aux_sym_val_number_token2] = ACTIONS(2271), - [aux_sym_val_number_token3] = ACTIONS(2271), - [aux_sym_val_number_token4] = ACTIONS(2271), - [aux_sym_val_number_token5] = ACTIONS(2271), - [anon_sym_inf] = ACTIONS(2271), - [anon_sym_DASHinf] = ACTIONS(2271), - [anon_sym_NaN] = ACTIONS(2271), - [anon_sym_0b] = ACTIONS(2271), - [anon_sym_0o] = ACTIONS(2271), - [anon_sym_0x] = ACTIONS(2271), - [sym_val_date] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), + [740] = { + [sym_comment] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_in] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [sym_short_flag] = ACTIONS(1014), + [aux_sym_unquoted_token1] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [987] = { - [sym_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_alias] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_let_DASHenv] = ACTIONS(2135), - [anon_sym_mut] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [sym_cmd_identifier] = ACTIONS(2135), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2135), - [anon_sym_def_DASHenv] = ACTIONS(2135), - [anon_sym_export_DASHenv] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_error] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_source] = ACTIONS(2135), - [anon_sym_source_DASHenv] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2135), - [anon_sym_hide] = ACTIONS(2135), - [anon_sym_hide_DASHenv] = ACTIONS(2135), - [anon_sym_overlay] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_not] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), - [sym_val_nothing] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [aux_sym_val_number_token1] = ACTIONS(2135), - [aux_sym_val_number_token2] = ACTIONS(2135), - [aux_sym_val_number_token3] = ACTIONS(2135), - [aux_sym_val_number_token4] = ACTIONS(2135), - [aux_sym_val_number_token5] = ACTIONS(2135), - [anon_sym_inf] = ACTIONS(2135), - [anon_sym_DASHinf] = ACTIONS(2135), - [anon_sym_NaN] = ACTIONS(2135), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2135), - [anon_sym_0x] = ACTIONS(2135), - [sym_val_date] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), - [anon_sym_CARET] = ACTIONS(2135), + [741] = { + [sym_comment] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [sym_val_nothing] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym_val_number_token1] = ACTIONS(1010), + [aux_sym_val_number_token2] = ACTIONS(1010), + [aux_sym_val_number_token3] = ACTIONS(1010), + [aux_sym_val_number_token4] = ACTIONS(1010), + [aux_sym_val_number_token5] = ACTIONS(1010), + [anon_sym_inf] = ACTIONS(1010), + [anon_sym_DASHinf] = ACTIONS(1010), + [anon_sym_NaN] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [sym_short_flag] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [988] = { - [sym_comment] = STATE(988), - [ts_builtin_sym_end] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [sym_cmd_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_def_DASHenv] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_not] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), - [sym_val_nothing] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym_val_number_token1] = ACTIONS(2125), - [aux_sym_val_number_token2] = ACTIONS(2125), - [aux_sym_val_number_token3] = ACTIONS(2125), - [aux_sym_val_number_token4] = ACTIONS(2125), - [aux_sym_val_number_token5] = ACTIONS(2125), - [anon_sym_inf] = ACTIONS(2125), - [anon_sym_DASHinf] = ACTIONS(2125), - [anon_sym_NaN] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), + [742] = { + [sym_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_LF] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_in] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_STAR_STAR] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_mod] = ACTIONS(952), + [anon_sym_SLASH_SLASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_bit_DASHshl] = ACTIONS(952), + [anon_sym_bit_DASHshr] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_not_DASHin] = ACTIONS(952), + [anon_sym_starts_DASHwith] = ACTIONS(952), + [anon_sym_ends_DASHwith] = ACTIONS(952), + [anon_sym_EQ_TILDE] = ACTIONS(952), + [anon_sym_BANG_TILDE] = ACTIONS(952), + [anon_sym_bit_DASHand] = ACTIONS(952), + [anon_sym_bit_DASHxor] = ACTIONS(952), + [anon_sym_bit_DASHor] = ACTIONS(952), + [anon_sym_and] = ACTIONS(952), + [anon_sym_xor] = ACTIONS(952), + [anon_sym_or] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [sym_val_nothing] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(952), + [anon_sym_DASHinf] = ACTIONS(952), + [anon_sym_NaN] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [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_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [sym_short_flag] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(3), }, - [989] = { - [sym_comment] = STATE(989), - [ts_builtin_sym_end] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [sym_cmd_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_def_DASHenv] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_not] = ACTIONS(2267), - [anon_sym_DOT_DOT_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2267), - [sym_val_nothing] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [aux_sym_val_number_token1] = ACTIONS(2267), - [aux_sym_val_number_token2] = ACTIONS(2267), - [aux_sym_val_number_token3] = ACTIONS(2267), - [aux_sym_val_number_token4] = ACTIONS(2267), - [aux_sym_val_number_token5] = ACTIONS(2267), - [anon_sym_inf] = ACTIONS(2267), - [anon_sym_DASHinf] = ACTIONS(2267), - [anon_sym_NaN] = ACTIONS(2267), - [anon_sym_0b] = ACTIONS(2267), - [anon_sym_0o] = ACTIONS(2267), - [anon_sym_0x] = ACTIONS(2267), - [sym_val_date] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), + [743] = { + [sym_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_STAR_STAR] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_bit_DASHshl] = ACTIONS(1502), + [anon_sym_bit_DASHshr] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1492), + [anon_sym_BANG_EQ] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1492), + [anon_sym_not_DASHin] = ACTIONS(1496), + [anon_sym_starts_DASHwith] = ACTIONS(1496), + [anon_sym_ends_DASHwith] = ACTIONS(1496), + [anon_sym_EQ_TILDE] = ACTIONS(1504), + [anon_sym_BANG_TILDE] = ACTIONS(1504), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [sym_val_nothing] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym_val_number_token1] = ACTIONS(1002), + [aux_sym_val_number_token2] = ACTIONS(1002), + [aux_sym_val_number_token3] = ACTIONS(1002), + [aux_sym_val_number_token4] = ACTIONS(1002), + [aux_sym_val_number_token5] = ACTIONS(1002), + [anon_sym_inf] = ACTIONS(1002), + [anon_sym_DASHinf] = ACTIONS(1002), + [anon_sym_NaN] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [sym_short_flag] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [990] = { - [sym_comment] = STATE(990), - [ts_builtin_sym_end] = ACTIONS(2269), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [sym_cmd_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_def_DASHenv] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_not] = ACTIONS(2267), - [anon_sym_DOT_DOT_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2267), - [sym_val_nothing] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [aux_sym_val_number_token1] = ACTIONS(2267), - [aux_sym_val_number_token2] = ACTIONS(2267), - [aux_sym_val_number_token3] = ACTIONS(2267), - [aux_sym_val_number_token4] = ACTIONS(2267), - [aux_sym_val_number_token5] = ACTIONS(2267), - [anon_sym_inf] = ACTIONS(2267), - [anon_sym_DASHinf] = ACTIONS(2267), - [anon_sym_NaN] = ACTIONS(2267), - [anon_sym_0b] = ACTIONS(2267), - [anon_sym_0o] = ACTIONS(2267), - [anon_sym_0x] = ACTIONS(2267), - [sym_val_date] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), + [744] = { + [sym__flag] = STATE(760), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [991] = { - [sym_comment] = STATE(991), - [ts_builtin_sym_end] = ACTIONS(2231), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [sym_cmd_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2231), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_def_DASHenv] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [sym_val_nothing] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [aux_sym_val_number_token1] = ACTIONS(2229), - [aux_sym_val_number_token2] = ACTIONS(2229), - [aux_sym_val_number_token3] = ACTIONS(2229), - [aux_sym_val_number_token4] = ACTIONS(2229), - [aux_sym_val_number_token5] = ACTIONS(2229), - [anon_sym_inf] = ACTIONS(2229), - [anon_sym_DASHinf] = ACTIONS(2229), - [anon_sym_NaN] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [sym__str_single_quotes] = ACTIONS(2229), - [sym__str_back_ticks] = ACTIONS(2229), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [sym_short_flag] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(3), }, - [992] = { - [sym_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(2087), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [sym_cmd_identifier] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_def_DASHenv] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2085), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_where] = ACTIONS(2085), - [anon_sym_not] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [anon_sym_DOT_DOT] = ACTIONS(2085), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [sym_val_nothing] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [aux_sym_val_number_token1] = ACTIONS(2085), - [aux_sym_val_number_token2] = ACTIONS(2085), - [aux_sym_val_number_token3] = ACTIONS(2085), - [aux_sym_val_number_token4] = ACTIONS(2085), - [aux_sym_val_number_token5] = ACTIONS(2085), - [anon_sym_inf] = ACTIONS(2085), - [anon_sym_DASHinf] = ACTIONS(2085), - [anon_sym_NaN] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2085), - [anon_sym_0o] = ACTIONS(2085), - [anon_sym_0x] = ACTIONS(2085), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2085), + [746] = { + [sym__flag] = STATE(1016), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [993] = { - [sym_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2383), - [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), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [sym_val_nothing] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2089), - [anon_sym_DASHinf] = ACTIONS(2089), - [anon_sym_NaN] = 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(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_CARET] = ACTIONS(2089), + [747] = { + [sym__flag] = STATE(752), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [994] = { - [sym_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2123), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_alias] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_let_DASHenv] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [sym_cmd_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2121), - [anon_sym_def_DASHenv] = ACTIONS(2121), - [anon_sym_export_DASHenv] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2121), - [anon_sym_error] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_source] = ACTIONS(2121), - [anon_sym_source_DASHenv] = ACTIONS(2121), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_hide] = ACTIONS(2121), - [anon_sym_hide_DASHenv] = ACTIONS(2121), - [anon_sym_overlay] = ACTIONS(2121), - [anon_sym_where] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2121), - [anon_sym_DOT_DOT_LT] = ACTIONS(2121), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2121), - [sym_val_nothing] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [aux_sym_val_number_token1] = ACTIONS(2121), - [aux_sym_val_number_token2] = ACTIONS(2121), - [aux_sym_val_number_token3] = ACTIONS(2121), - [aux_sym_val_number_token4] = ACTIONS(2121), - [aux_sym_val_number_token5] = ACTIONS(2121), - [anon_sym_inf] = ACTIONS(2121), - [anon_sym_DASHinf] = ACTIONS(2121), - [anon_sym_NaN] = ACTIONS(2121), - [anon_sym_0b] = ACTIONS(2121), - [anon_sym_0o] = ACTIONS(2121), - [anon_sym_0x] = ACTIONS(2121), - [sym_val_date] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), + [748] = { + [sym__flag] = STATE(772), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [995] = { - [sym_comment] = STATE(995), - [ts_builtin_sym_end] = ACTIONS(2141), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_alias] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_let_DASHenv] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [sym_cmd_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2141), - [anon_sym_def] = ACTIONS(2139), - [anon_sym_def_DASHenv] = ACTIONS(2139), - [anon_sym_export_DASHenv] = ACTIONS(2139), - [anon_sym_extern] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_error] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_source] = ACTIONS(2139), - [anon_sym_source_DASHenv] = ACTIONS(2139), - [anon_sym_register] = ACTIONS(2139), - [anon_sym_hide] = ACTIONS(2139), - [anon_sym_hide_DASHenv] = ACTIONS(2139), - [anon_sym_overlay] = ACTIONS(2139), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_not] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2139), - [sym_val_nothing] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [aux_sym_val_number_token1] = ACTIONS(2139), - [aux_sym_val_number_token2] = ACTIONS(2139), - [aux_sym_val_number_token3] = ACTIONS(2139), - [aux_sym_val_number_token4] = ACTIONS(2139), - [aux_sym_val_number_token5] = ACTIONS(2139), - [anon_sym_inf] = ACTIONS(2139), - [anon_sym_DASHinf] = ACTIONS(2139), - [anon_sym_NaN] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2139), - [anon_sym_0o] = ACTIONS(2139), - [anon_sym_0x] = ACTIONS(2139), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), + [749] = { + [sym__flag] = STATE(768), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [996] = { - [sym_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2101), - [anon_sym_alias] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_let_DASHenv] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_cmd_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_def_DASHenv] = ACTIONS(2101), - [anon_sym_export_DASHenv] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2101), - [anon_sym_error] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_source] = ACTIONS(2101), - [anon_sym_source_DASHenv] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2101), - [anon_sym_hide] = ACTIONS(2101), - [anon_sym_hide_DASHenv] = ACTIONS(2101), - [anon_sym_overlay] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [sym_val_nothing] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [aux_sym_val_number_token1] = ACTIONS(2101), - [aux_sym_val_number_token2] = ACTIONS(2101), - [aux_sym_val_number_token3] = ACTIONS(2101), - [aux_sym_val_number_token4] = ACTIONS(2101), - [aux_sym_val_number_token5] = ACTIONS(2101), - [anon_sym_inf] = ACTIONS(2101), - [anon_sym_DASHinf] = ACTIONS(2101), - [anon_sym_NaN] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2101), - [anon_sym_0o] = ACTIONS(2101), - [anon_sym_0x] = ACTIONS(2101), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), + [750] = { + [sym__flag] = STATE(754), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(750), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [997] = { - [sym_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_cmd_identifier] = ACTIONS(2263), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_def_DASHenv] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_where] = ACTIONS(2263), - [anon_sym_not] = ACTIONS(2263), - [anon_sym_DOT_DOT_LT] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2263), - [sym_val_nothing] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [aux_sym_val_number_token1] = ACTIONS(2263), - [aux_sym_val_number_token2] = ACTIONS(2263), - [aux_sym_val_number_token3] = ACTIONS(2263), - [aux_sym_val_number_token4] = ACTIONS(2263), - [aux_sym_val_number_token5] = ACTIONS(2263), - [anon_sym_inf] = ACTIONS(2263), - [anon_sym_DASHinf] = ACTIONS(2263), - [anon_sym_NaN] = ACTIONS(2263), - [anon_sym_0b] = ACTIONS(2263), - [anon_sym_0o] = ACTIONS(2263), - [anon_sym_0x] = ACTIONS(2263), - [sym_val_date] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym__str_single_quotes] = ACTIONS(2263), - [sym__str_back_ticks] = ACTIONS(2263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2263), - [anon_sym_CARET] = ACTIONS(2263), + [751] = { + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [sym_short_flag] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(1563), [anon_sym_POUND] = ACTIONS(3), }, - [998] = { - [sym_comment] = STATE(998), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_alias] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_let_DASHenv] = ACTIONS(2385), - [anon_sym_mut] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2385), - [anon_sym_LF] = ACTIONS(2390), - [anon_sym_def] = ACTIONS(2385), - [anon_sym_def_DASHenv] = ACTIONS(2385), - [anon_sym_export_DASHenv] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_source] = ACTIONS(2385), - [anon_sym_source_DASHenv] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_hide] = ACTIONS(2385), - [anon_sym_hide_DASHenv] = ACTIONS(2385), - [anon_sym_overlay] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_DOT_DOT_LT] = ACTIONS(2385), - [anon_sym_DOT_DOT] = ACTIONS(2385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2385), - [sym_val_nothing] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [aux_sym_val_number_token1] = ACTIONS(2385), - [aux_sym_val_number_token2] = ACTIONS(2385), - [aux_sym_val_number_token3] = ACTIONS(2385), - [aux_sym_val_number_token4] = ACTIONS(2385), - [aux_sym_val_number_token5] = ACTIONS(2385), - [anon_sym_inf] = ACTIONS(2385), - [anon_sym_DASHinf] = ACTIONS(2385), - [anon_sym_NaN] = ACTIONS(2385), - [anon_sym_0b] = ACTIONS(2385), - [anon_sym_0o] = ACTIONS(2385), - [anon_sym_0x] = ACTIONS(2385), - [sym_val_date] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(2385), + [752] = { + [sym__flag] = STATE(1019), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(752), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [999] = { - [sym_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [sym_cmd_identifier] = ACTIONS(2211), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_def_DASHenv] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_not] = ACTIONS(2211), - [anon_sym_DOT_DOT_LT] = ACTIONS(2211), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2211), - [sym_val_nothing] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [aux_sym_val_number_token1] = ACTIONS(2211), - [aux_sym_val_number_token2] = ACTIONS(2211), - [aux_sym_val_number_token3] = ACTIONS(2211), - [aux_sym_val_number_token4] = ACTIONS(2211), - [aux_sym_val_number_token5] = ACTIONS(2211), - [anon_sym_inf] = ACTIONS(2211), - [anon_sym_DASHinf] = ACTIONS(2211), - [anon_sym_NaN] = ACTIONS(2211), - [anon_sym_0b] = ACTIONS(2211), - [anon_sym_0o] = ACTIONS(2211), - [anon_sym_0x] = ACTIONS(2211), - [sym_val_date] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym__str_single_quotes] = ACTIONS(2211), - [sym__str_back_ticks] = ACTIONS(2211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), + [753] = { + [sym_comment] = STATE(753), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [sym_short_flag] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [1000] = { - [sym_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2285), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_alias] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_let_DASHenv] = ACTIONS(2283), - [anon_sym_mut] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [sym_cmd_identifier] = ACTIONS(2283), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_def] = ACTIONS(2283), - [anon_sym_def_DASHenv] = ACTIONS(2283), - [anon_sym_export_DASHenv] = ACTIONS(2283), - [anon_sym_extern] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_error] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_do] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_source] = ACTIONS(2283), - [anon_sym_source_DASHenv] = ACTIONS(2283), - [anon_sym_register] = ACTIONS(2283), - [anon_sym_hide] = ACTIONS(2283), - [anon_sym_hide_DASHenv] = ACTIONS(2283), - [anon_sym_overlay] = ACTIONS(2283), - [anon_sym_where] = ACTIONS(2283), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_DOT_DOT_LT] = ACTIONS(2283), - [anon_sym_DOT_DOT] = ACTIONS(2283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2283), - [sym_val_nothing] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [aux_sym_val_number_token1] = ACTIONS(2283), - [aux_sym_val_number_token2] = ACTIONS(2283), - [aux_sym_val_number_token3] = ACTIONS(2283), - [aux_sym_val_number_token4] = ACTIONS(2283), - [aux_sym_val_number_token5] = ACTIONS(2283), - [anon_sym_inf] = ACTIONS(2283), - [anon_sym_DASHinf] = ACTIONS(2283), - [anon_sym_NaN] = ACTIONS(2283), - [anon_sym_0b] = ACTIONS(2283), - [anon_sym_0o] = ACTIONS(2283), - [anon_sym_0x] = ACTIONS(2283), - [sym_val_date] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(2283), - [sym__str_single_quotes] = ACTIONS(2283), - [sym__str_back_ticks] = ACTIONS(2283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2283), - [anon_sym_CARET] = ACTIONS(2283), + [754] = { + [sym__flag] = STATE(759), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(754), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1001] = { - [sym_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2153), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [sym_cmd_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_def_DASHenv] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_where] = ACTIONS(2151), - [anon_sym_not] = ACTIONS(2151), - [anon_sym_DOT_DOT_LT] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2151), - [sym_val_nothing] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [aux_sym_val_number_token1] = ACTIONS(2151), - [aux_sym_val_number_token2] = ACTIONS(2151), - [aux_sym_val_number_token3] = ACTIONS(2151), - [aux_sym_val_number_token4] = ACTIONS(2151), - [aux_sym_val_number_token5] = ACTIONS(2151), - [anon_sym_inf] = ACTIONS(2151), - [anon_sym_DASHinf] = ACTIONS(2151), - [anon_sym_NaN] = ACTIONS(2151), - [anon_sym_0b] = ACTIONS(2151), - [anon_sym_0o] = ACTIONS(2151), - [anon_sym_0x] = ACTIONS(2151), - [sym_val_date] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym__str_single_quotes] = ACTIONS(2151), - [sym__str_back_ticks] = ACTIONS(2151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), + [755] = { + [sym_comment] = STATE(755), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [1002] = { - [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2395), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2157), - [sym_cmd_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2160), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_def_DASHenv] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_where] = ACTIONS(2155), - [anon_sym_not] = ACTIONS(2155), - [anon_sym_DOT_DOT_LT] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2155), - [sym_val_nothing] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [aux_sym_val_number_token1] = ACTIONS(2155), - [aux_sym_val_number_token2] = ACTIONS(2155), - [aux_sym_val_number_token3] = ACTIONS(2155), - [aux_sym_val_number_token4] = ACTIONS(2155), - [aux_sym_val_number_token5] = ACTIONS(2155), - [anon_sym_inf] = ACTIONS(2155), - [anon_sym_DASHinf] = ACTIONS(2155), - [anon_sym_NaN] = ACTIONS(2155), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2155), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), + [756] = { + [sym_comment] = STATE(756), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), [anon_sym_POUND] = ACTIONS(3), }, - [1003] = { - [sym_comment] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(2217), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [sym_cmd_identifier] = ACTIONS(2215), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_def_DASHenv] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_not] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT] = ACTIONS(2215), - [anon_sym_DOT_DOT] = ACTIONS(2215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), - [sym_val_nothing] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [aux_sym_val_number_token1] = ACTIONS(2215), - [aux_sym_val_number_token2] = ACTIONS(2215), - [aux_sym_val_number_token3] = ACTIONS(2215), - [aux_sym_val_number_token4] = ACTIONS(2215), - [aux_sym_val_number_token5] = ACTIONS(2215), - [anon_sym_inf] = ACTIONS(2215), - [anon_sym_DASHinf] = ACTIONS(2215), - [anon_sym_NaN] = ACTIONS(2215), - [anon_sym_0b] = ACTIONS(2215), - [anon_sym_0o] = ACTIONS(2215), - [anon_sym_0x] = ACTIONS(2215), - [sym_val_date] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym__str_single_quotes] = ACTIONS(2215), - [sym__str_back_ticks] = ACTIONS(2215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), + [757] = { + [sym__flag] = STATE(744), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(757), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1004] = { - [sym_ctrl_do] = STATE(795), - [sym_ctrl_if] = STATE(795), - [sym_ctrl_match] = STATE(795), - [sym_ctrl_try] = STATE(795), - [sym__expression] = STATE(2418), - [sym_expr_unary] = STATE(2458), - [sym_expr_binary] = STATE(2458), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(2458), - [sym__value] = STATE(2458), - [sym_val_bool] = STATE(2423), - [sym_val_variable] = STATE(2423), - [sym__var] = STATE(2115), - [sym_val_number] = STATE(128), - [sym_val_duration] = STATE(2423), - [sym_val_filesize] = STATE(2423), - [sym_val_binary] = STATE(2423), - [sym_val_string] = STATE(2423), - [sym__str_double_quotes] = STATE(2305), - [sym_val_interpolated] = STATE(2423), - [sym__inter_single_quotes] = STATE(2420), - [sym__inter_double_quotes] = STATE(2419), - [sym_val_list] = STATE(2423), - [sym_val_record] = STATE(2423), - [sym_val_table] = STATE(2423), - [sym_val_closure] = STATE(2423), - [sym_comment] = STATE(1004), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_try] = ACTIONS(1171), - [anon_sym_not] = ACTIONS(239), - [anon_sym_DOT_DOT_LT] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [sym_val_nothing] = ACTIONS(245), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [aux_sym_val_number_token1] = ACTIONS(249), - [aux_sym_val_number_token2] = ACTIONS(249), - [aux_sym_val_number_token3] = ACTIONS(249), - [aux_sym_val_number_token4] = ACTIONS(249), - [aux_sym_val_number_token5] = ACTIONS(249), - [anon_sym_inf] = ACTIONS(249), - [anon_sym_DASHinf] = ACTIONS(249), - [anon_sym_NaN] = ACTIONS(249), - [anon_sym_0b] = ACTIONS(253), - [anon_sym_0o] = ACTIONS(253), - [anon_sym_0x] = ACTIONS(253), - [sym_val_date] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym__str_single_quotes] = ACTIONS(2405), - [sym__str_back_ticks] = ACTIONS(2405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [758] = { + [sym_comment] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_DASH_DASH] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [sym_short_flag] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [1005] = { - [sym_comment] = STATE(1005), - [ts_builtin_sym_end] = ACTIONS(2235), - [anon_sym_export] = ACTIONS(2233), - [anon_sym_alias] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_let_DASHenv] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [sym_cmd_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2235), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_def_DASHenv] = ACTIONS(2233), - [anon_sym_export_DASHenv] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_module] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_error] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_source] = ACTIONS(2233), - [anon_sym_source_DASHenv] = ACTIONS(2233), - [anon_sym_register] = ACTIONS(2233), - [anon_sym_hide] = ACTIONS(2233), - [anon_sym_hide_DASHenv] = ACTIONS(2233), - [anon_sym_overlay] = ACTIONS(2233), - [anon_sym_where] = ACTIONS(2233), - [anon_sym_not] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [sym_val_nothing] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [aux_sym_val_number_token1] = ACTIONS(2233), - [aux_sym_val_number_token2] = ACTIONS(2233), - [aux_sym_val_number_token3] = ACTIONS(2233), - [aux_sym_val_number_token4] = ACTIONS(2233), - [aux_sym_val_number_token5] = ACTIONS(2233), - [anon_sym_inf] = ACTIONS(2233), - [anon_sym_DASHinf] = ACTIONS(2233), - [anon_sym_NaN] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2233), - [anon_sym_0o] = ACTIONS(2233), - [anon_sym_0x] = ACTIONS(2233), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), + [759] = { + [sym__flag] = STATE(934), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(759), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1006] = { - [sym_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(2239), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [sym_cmd_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_def_DASHenv] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(2237), - [anon_sym_not] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [sym_val_nothing] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym_val_number_token1] = ACTIONS(2237), - [aux_sym_val_number_token2] = ACTIONS(2237), - [aux_sym_val_number_token3] = ACTIONS(2237), - [aux_sym_val_number_token4] = ACTIONS(2237), - [aux_sym_val_number_token5] = ACTIONS(2237), - [anon_sym_inf] = ACTIONS(2237), - [anon_sym_DASHinf] = ACTIONS(2237), - [anon_sym_NaN] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), + [760] = { + [sym__flag] = STATE(1007), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(760), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_def_DASHenv] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [sym_val_nothing] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym_val_number_token1] = ACTIONS(1532), + [aux_sym_val_number_token2] = ACTIONS(1532), + [aux_sym_val_number_token3] = ACTIONS(1532), + [aux_sym_val_number_token4] = ACTIONS(1532), + [aux_sym_val_number_token5] = ACTIONS(1532), + [anon_sym_inf] = ACTIONS(1532), + [anon_sym_DASHinf] = ACTIONS(1532), + [anon_sym_NaN] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1007] = { - [sym_comment] = STATE(1007), - [anon_sym_EQ] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(848), - [sym_cmd_identifier] = ACTIONS(846), - [anon_sym_COLON] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_QMARK2] = ACTIONS(848), - [anon_sym_STAR_STAR] = ACTIONS(848), - [anon_sym_PLUS_PLUS] = ACTIONS(848), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_mod] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_bit_DASHshl] = ACTIONS(846), - [anon_sym_bit_DASHshr] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(848), - [anon_sym_BANG_EQ] = ACTIONS(848), - [anon_sym_LT2] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(848), - [anon_sym_GT_EQ] = ACTIONS(848), - [anon_sym_not_DASHin] = ACTIONS(846), - [anon_sym_starts_DASHwith] = ACTIONS(846), - [anon_sym_ends_DASHwith] = ACTIONS(846), - [anon_sym_EQ_TILDE] = ACTIONS(848), - [anon_sym_BANG_TILDE] = ACTIONS(848), - [anon_sym_bit_DASHand] = ACTIONS(846), - [anon_sym_bit_DASHxor] = ACTIONS(846), - [anon_sym_bit_DASHor] = ACTIONS(846), - [anon_sym_and] = ACTIONS(846), - [anon_sym_xor] = ACTIONS(846), - [anon_sym_or] = ACTIONS(846), - [anon_sym_not] = ACTIONS(846), - [anon_sym_DOT_DOT_LT] = ACTIONS(848), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(848), - [sym_val_nothing] = ACTIONS(846), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [aux_sym_val_number_token1] = ACTIONS(846), - [aux_sym_val_number_token2] = ACTIONS(846), - [aux_sym_val_number_token3] = ACTIONS(848), - [aux_sym_val_number_token4] = ACTIONS(848), - [aux_sym_val_number_token5] = ACTIONS(848), - [anon_sym_inf] = ACTIONS(846), - [anon_sym_DASHinf] = ACTIONS(848), - [anon_sym_NaN] = ACTIONS(846), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(846), - [anon_sym_0x] = ACTIONS(846), - [sym_val_date] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(848), - [sym__str_single_quotes] = ACTIONS(848), - [sym__str_back_ticks] = ACTIONS(848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(848), - [anon_sym_POUND] = ACTIONS(147), + [761] = { + [sym__flag] = STATE(775), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(3), }, - [1008] = { - [sym_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2307), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2305), - [sym_cmd_identifier] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_def_DASHenv] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_DOT_DOT_LT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2305), - [sym_val_nothing] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [aux_sym_val_number_token1] = ACTIONS(2305), - [aux_sym_val_number_token2] = ACTIONS(2305), - [aux_sym_val_number_token3] = ACTIONS(2305), - [aux_sym_val_number_token4] = ACTIONS(2305), - [aux_sym_val_number_token5] = ACTIONS(2305), - [anon_sym_inf] = ACTIONS(2305), - [anon_sym_DASHinf] = ACTIONS(2305), - [anon_sym_NaN] = ACTIONS(2305), - [anon_sym_0b] = ACTIONS(2305), - [anon_sym_0o] = ACTIONS(2305), - [anon_sym_0x] = ACTIONS(2305), - [sym_val_date] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), + [762] = { + [sym__flag] = STATE(747), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(762), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1009] = { - [sym_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(2239), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [sym_cmd_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_def_DASHenv] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(2237), - [anon_sym_not] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [sym_val_nothing] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym_val_number_token1] = ACTIONS(2237), - [aux_sym_val_number_token2] = ACTIONS(2237), - [aux_sym_val_number_token3] = ACTIONS(2237), - [aux_sym_val_number_token4] = ACTIONS(2237), - [aux_sym_val_number_token5] = ACTIONS(2237), - [anon_sym_inf] = ACTIONS(2237), - [anon_sym_DASHinf] = ACTIONS(2237), - [anon_sym_NaN] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), + [763] = { + [sym_comment] = STATE(763), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), [anon_sym_POUND] = ACTIONS(3), }, - [1010] = { - [sym_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [sym_cmd_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_def_DASHenv] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_not] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [sym_val_nothing] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym_val_number_token1] = ACTIONS(2245), - [aux_sym_val_number_token2] = ACTIONS(2245), - [aux_sym_val_number_token3] = ACTIONS(2245), - [aux_sym_val_number_token4] = ACTIONS(2245), - [aux_sym_val_number_token5] = ACTIONS(2245), - [anon_sym_inf] = ACTIONS(2245), - [anon_sym_DASHinf] = ACTIONS(2245), - [anon_sym_NaN] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), + [764] = { + [sym__flag] = STATE(771), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1011] = { - [sym_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [sym_cmd_identifier] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_def_DASHenv] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_where] = ACTIONS(2207), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_DOT_DOT_LT] = ACTIONS(2207), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2207), - [sym_val_nothing] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2207), - [anon_sym_false] = ACTIONS(2207), - [aux_sym_val_number_token1] = ACTIONS(2207), - [aux_sym_val_number_token2] = ACTIONS(2207), - [aux_sym_val_number_token3] = ACTIONS(2207), - [aux_sym_val_number_token4] = ACTIONS(2207), - [aux_sym_val_number_token5] = ACTIONS(2207), - [anon_sym_inf] = ACTIONS(2207), - [anon_sym_DASHinf] = ACTIONS(2207), - [anon_sym_NaN] = ACTIONS(2207), - [anon_sym_0b] = ACTIONS(2207), - [anon_sym_0o] = ACTIONS(2207), - [anon_sym_0x] = ACTIONS(2207), - [sym_val_date] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym__str_single_quotes] = ACTIONS(2207), - [sym__str_back_ticks] = ACTIONS(2207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), + [765] = { + [sym__flag] = STATE(746), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(765), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1012] = { - [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2303), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_alias] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_let_DASHenv] = ACTIONS(2301), - [anon_sym_mut] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2301), - [sym_cmd_identifier] = ACTIONS(2301), - [anon_sym_LF] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2301), - [anon_sym_def_DASHenv] = ACTIONS(2301), - [anon_sym_export_DASHenv] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_error] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_source] = ACTIONS(2301), - [anon_sym_source_DASHenv] = ACTIONS(2301), - [anon_sym_register] = ACTIONS(2301), - [anon_sym_hide] = ACTIONS(2301), - [anon_sym_hide_DASHenv] = ACTIONS(2301), - [anon_sym_overlay] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_not] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2301), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [sym_val_nothing] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [aux_sym_val_number_token1] = ACTIONS(2301), - [aux_sym_val_number_token2] = ACTIONS(2301), - [aux_sym_val_number_token3] = ACTIONS(2301), - [aux_sym_val_number_token4] = ACTIONS(2301), - [aux_sym_val_number_token5] = ACTIONS(2301), - [anon_sym_inf] = ACTIONS(2301), - [anon_sym_DASHinf] = ACTIONS(2301), - [anon_sym_NaN] = ACTIONS(2301), - [anon_sym_0b] = ACTIONS(2301), - [anon_sym_0o] = ACTIONS(2301), - [anon_sym_0x] = ACTIONS(2301), - [sym_val_date] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym__str_single_quotes] = ACTIONS(2301), - [sym__str_back_ticks] = ACTIONS(2301), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), - [anon_sym_CARET] = ACTIONS(2301), + [766] = { + [sym__flag] = STATE(1009), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(766), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1013] = { - [sym_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(2289), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [sym_cmd_identifier] = ACTIONS(2287), - [anon_sym_LF] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_def_DASHenv] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_where] = ACTIONS(2287), - [anon_sym_not] = ACTIONS(2287), - [anon_sym_DOT_DOT_LT] = ACTIONS(2287), - [anon_sym_DOT_DOT] = ACTIONS(2287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2287), - [sym_val_nothing] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [aux_sym_val_number_token1] = ACTIONS(2287), - [aux_sym_val_number_token2] = ACTIONS(2287), - [aux_sym_val_number_token3] = ACTIONS(2287), - [aux_sym_val_number_token4] = ACTIONS(2287), - [aux_sym_val_number_token5] = ACTIONS(2287), - [anon_sym_inf] = ACTIONS(2287), - [anon_sym_DASHinf] = ACTIONS(2287), - [anon_sym_NaN] = ACTIONS(2287), - [anon_sym_0b] = ACTIONS(2287), - [anon_sym_0o] = ACTIONS(2287), - [anon_sym_0x] = ACTIONS(2287), - [sym_val_date] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), + [767] = { + [sym__flag] = STATE(765), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(767), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1014] = { - [sym_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2243), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [sym_cmd_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_def_DASHenv] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_not] = ACTIONS(2241), - [anon_sym_DOT_DOT_LT] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), - [sym_val_nothing] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [aux_sym_val_number_token1] = ACTIONS(2241), - [aux_sym_val_number_token2] = ACTIONS(2241), - [aux_sym_val_number_token3] = ACTIONS(2241), - [aux_sym_val_number_token4] = ACTIONS(2241), - [aux_sym_val_number_token5] = ACTIONS(2241), - [anon_sym_inf] = ACTIONS(2241), - [anon_sym_DASHinf] = ACTIONS(2241), - [anon_sym_NaN] = ACTIONS(2241), - [anon_sym_0b] = ACTIONS(2241), - [anon_sym_0o] = ACTIONS(2241), - [anon_sym_0x] = ACTIONS(2241), - [sym_val_date] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), + [768] = { + [sym__flag] = STATE(979), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(768), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1015] = { - [sym_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2243), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [sym_cmd_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_def_DASHenv] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_not] = ACTIONS(2241), - [anon_sym_DOT_DOT_LT] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), - [sym_val_nothing] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [aux_sym_val_number_token1] = ACTIONS(2241), - [aux_sym_val_number_token2] = ACTIONS(2241), - [aux_sym_val_number_token3] = ACTIONS(2241), - [aux_sym_val_number_token4] = ACTIONS(2241), - [aux_sym_val_number_token5] = ACTIONS(2241), - [anon_sym_inf] = ACTIONS(2241), - [anon_sym_DASHinf] = ACTIONS(2241), - [anon_sym_NaN] = ACTIONS(2241), - [anon_sym_0b] = ACTIONS(2241), - [anon_sym_0o] = ACTIONS(2241), - [anon_sym_0x] = ACTIONS(2241), - [sym_val_date] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), + [769] = { + [sym__flag] = STATE(766), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1016] = { - [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [sym_cmd_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_def_DASHenv] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_not] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [sym_val_nothing] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym_val_number_token1] = ACTIONS(2245), - [aux_sym_val_number_token2] = ACTIONS(2245), - [aux_sym_val_number_token3] = ACTIONS(2245), - [aux_sym_val_number_token4] = ACTIONS(2245), - [aux_sym_val_number_token5] = ACTIONS(2245), - [anon_sym_inf] = ACTIONS(2245), - [anon_sym_DASHinf] = ACTIONS(2245), - [anon_sym_NaN] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), + [770] = { + [sym__flag] = STATE(749), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(770), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_export] = ACTIONS(834), + [anon_sym_alias] = ACTIONS(834), + [anon_sym_let] = ACTIONS(834), + [anon_sym_let_DASHenv] = ACTIONS(834), + [anon_sym_mut] = ACTIONS(834), + [anon_sym_const] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [sym_cmd_identifier] = ACTIONS(834), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_def] = ACTIONS(834), + [anon_sym_def_DASHenv] = ACTIONS(834), + [anon_sym_export_DASHenv] = ACTIONS(834), + [anon_sym_extern] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_loop] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_match] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_source] = ACTIONS(834), + [anon_sym_source_DASHenv] = ACTIONS(834), + [anon_sym_register] = ACTIONS(834), + [anon_sym_hide] = ACTIONS(834), + [anon_sym_hide_DASHenv] = ACTIONS(834), + [anon_sym_overlay] = ACTIONS(834), + [anon_sym_where] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_DOT_DOT_LT] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(834), + [sym_val_nothing] = ACTIONS(834), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [aux_sym_val_number_token1] = ACTIONS(834), + [aux_sym_val_number_token2] = ACTIONS(834), + [aux_sym_val_number_token3] = ACTIONS(834), + [aux_sym_val_number_token4] = ACTIONS(834), + [aux_sym_val_number_token5] = ACTIONS(834), + [anon_sym_inf] = ACTIONS(834), + [anon_sym_DASHinf] = ACTIONS(834), + [anon_sym_NaN] = ACTIONS(834), + [anon_sym_0b] = ACTIONS(834), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym__str_single_quotes] = ACTIONS(834), + [sym__str_back_ticks] = ACTIONS(834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1017] = { - [sym_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(2411), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [sym_cmd_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_def_DASHenv] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_where] = ACTIONS(2165), - [anon_sym_not] = ACTIONS(2165), - [anon_sym_DOT_DOT_LT] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2165), - [sym_val_nothing] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym_val_number_token1] = ACTIONS(2165), - [aux_sym_val_number_token2] = ACTIONS(2165), - [aux_sym_val_number_token3] = ACTIONS(2165), - [aux_sym_val_number_token4] = ACTIONS(2165), - [aux_sym_val_number_token5] = ACTIONS(2165), - [anon_sym_inf] = ACTIONS(2165), - [anon_sym_DASHinf] = ACTIONS(2165), - [anon_sym_NaN] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2165), - [anon_sym_0o] = ACTIONS(2165), - [anon_sym_0x] = ACTIONS(2165), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), + [771] = { + [sym__flag] = STATE(955), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(771), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_export] = ACTIONS(842), + [anon_sym_alias] = ACTIONS(842), + [anon_sym_let] = ACTIONS(842), + [anon_sym_let_DASHenv] = ACTIONS(842), + [anon_sym_mut] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [sym_cmd_identifier] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_def] = ACTIONS(842), + [anon_sym_def_DASHenv] = ACTIONS(842), + [anon_sym_export_DASHenv] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_use] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_error] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_source] = ACTIONS(842), + [anon_sym_source_DASHenv] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_hide] = ACTIONS(842), + [anon_sym_hide_DASHenv] = ACTIONS(842), + [anon_sym_overlay] = ACTIONS(842), + [anon_sym_where] = ACTIONS(842), + [anon_sym_not] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [sym_val_nothing] = ACTIONS(842), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_val_number_token1] = ACTIONS(842), + [aux_sym_val_number_token2] = ACTIONS(842), + [aux_sym_val_number_token3] = ACTIONS(842), + [aux_sym_val_number_token4] = ACTIONS(842), + [aux_sym_val_number_token5] = ACTIONS(842), + [anon_sym_inf] = ACTIONS(842), + [anon_sym_DASHinf] = ACTIONS(842), + [anon_sym_NaN] = ACTIONS(842), + [anon_sym_0b] = ACTIONS(842), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(842), + [sym__str_single_quotes] = ACTIONS(842), + [sym__str_back_ticks] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1018] = { - [sym_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2133), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [sym_cmd_identifier] = ACTIONS(2131), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_def_DASHenv] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_where] = ACTIONS(2131), - [anon_sym_not] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [sym_val_nothing] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [aux_sym_val_number_token1] = ACTIONS(2131), - [aux_sym_val_number_token2] = ACTIONS(2131), - [aux_sym_val_number_token3] = ACTIONS(2131), - [aux_sym_val_number_token4] = ACTIONS(2131), - [aux_sym_val_number_token5] = ACTIONS(2131), - [anon_sym_inf] = ACTIONS(2131), - [anon_sym_DASHinf] = ACTIONS(2131), - [anon_sym_NaN] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), + [772] = { + [sym__flag] = STATE(779), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(772), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1019] = { - [sym_comment] = STATE(1019), - [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), - [anon_sym_SEMI] = ACTIONS(2413), - [sym_cmd_identifier] = ACTIONS(2413), - [anon_sym_LF] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2413), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_error] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_source] = ACTIONS(2413), - [anon_sym_source_DASHenv] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_hide] = ACTIONS(2413), - [anon_sym_hide_DASHenv] = ACTIONS(2413), - [anon_sym_overlay] = ACTIONS(2413), - [anon_sym_where] = ACTIONS(2413), - [anon_sym_not] = ACTIONS(2413), - [anon_sym_DOT_DOT_LT] = ACTIONS(2413), - [anon_sym_DOT_DOT] = ACTIONS(2413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2413), - [sym_val_nothing] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2413), - [anon_sym_DASHinf] = ACTIONS(2413), - [anon_sym_NaN] = ACTIONS(2413), - [anon_sym_0b] = ACTIONS(2413), - [anon_sym_0o] = ACTIONS(2413), - [anon_sym_0x] = ACTIONS(2413), - [sym_val_date] = 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_CARET] = ACTIONS(2413), + [773] = { + [sym__flag] = STATE(764), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_export] = ACTIONS(854), + [anon_sym_alias] = ACTIONS(854), + [anon_sym_let] = ACTIONS(854), + [anon_sym_let_DASHenv] = ACTIONS(854), + [anon_sym_mut] = ACTIONS(854), + [anon_sym_const] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [sym_cmd_identifier] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_def] = ACTIONS(854), + [anon_sym_def_DASHenv] = ACTIONS(854), + [anon_sym_export_DASHenv] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_use] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_error] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_loop] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(854), + [anon_sym_overlay] = ACTIONS(854), + [anon_sym_where] = ACTIONS(854), + [anon_sym_not] = ACTIONS(854), + [anon_sym_DOT_DOT_LT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [sym_val_nothing] = ACTIONS(854), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_val_number_token1] = ACTIONS(854), + [aux_sym_val_number_token2] = ACTIONS(854), + [aux_sym_val_number_token3] = ACTIONS(854), + [aux_sym_val_number_token4] = ACTIONS(854), + [aux_sym_val_number_token5] = ACTIONS(854), + [anon_sym_inf] = ACTIONS(854), + [anon_sym_DASHinf] = ACTIONS(854), + [anon_sym_NaN] = ACTIONS(854), + [anon_sym_0b] = ACTIONS(854), + [anon_sym_0o] = ACTIONS(854), + [anon_sym_0x] = ACTIONS(854), + [sym_val_date] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__str_single_quotes] = ACTIONS(854), + [sym__str_back_ticks] = ACTIONS(854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1020] = { - [sym_comment] = STATE(1020), - [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), - [anon_sym_SEMI] = ACTIONS(2417), - [sym_cmd_identifier] = ACTIONS(2417), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_loop] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_where] = ACTIONS(2417), - [anon_sym_not] = ACTIONS(2417), - [anon_sym_DOT_DOT_LT] = ACTIONS(2417), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2417), - [sym_val_nothing] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2417), - [anon_sym_DASHinf] = ACTIONS(2417), - [anon_sym_NaN] = ACTIONS(2417), - [anon_sym_0b] = ACTIONS(2417), - [anon_sym_0o] = ACTIONS(2417), - [anon_sym_0x] = ACTIONS(2417), - [sym_val_date] = 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_CARET] = ACTIONS(2417), + [774] = { + [sym__flag] = STATE(761), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(774), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1021] = { - [sym_comment] = STATE(1021), - [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), - [anon_sym_SEMI] = ACTIONS(2421), - [sym_cmd_identifier] = ACTIONS(2421), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_error] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_source] = ACTIONS(2421), - [anon_sym_source_DASHenv] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_hide] = ACTIONS(2421), - [anon_sym_hide_DASHenv] = ACTIONS(2421), - [anon_sym_overlay] = ACTIONS(2421), - [anon_sym_where] = ACTIONS(2421), - [anon_sym_not] = ACTIONS(2421), - [anon_sym_DOT_DOT_LT] = ACTIONS(2421), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2421), - [sym_val_nothing] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2421), - [anon_sym_DASHinf] = ACTIONS(2421), - [anon_sym_NaN] = ACTIONS(2421), - [anon_sym_0b] = ACTIONS(2421), - [anon_sym_0o] = ACTIONS(2421), - [anon_sym_0x] = ACTIONS(2421), - [sym_val_date] = 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_CARET] = ACTIONS(2421), + [775] = { + [sym__flag] = STATE(1001), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1022] = { - [sym_comment] = STATE(1022), - [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), - [anon_sym_SEMI] = ACTIONS(2425), - [sym_cmd_identifier] = ACTIONS(2425), - [anon_sym_LF] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_error] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_source] = ACTIONS(2425), - [anon_sym_source_DASHenv] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_hide] = ACTIONS(2425), - [anon_sym_hide_DASHenv] = ACTIONS(2425), - [anon_sym_overlay] = ACTIONS(2425), - [anon_sym_where] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2425), - [anon_sym_DOT_DOT_LT] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(2425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2425), - [sym_val_nothing] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2425), - [anon_sym_DASHinf] = ACTIONS(2425), - [anon_sym_NaN] = ACTIONS(2425), - [anon_sym_0b] = ACTIONS(2425), - [anon_sym_0o] = ACTIONS(2425), - [anon_sym_0x] = ACTIONS(2425), - [sym_val_date] = 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_CARET] = ACTIONS(2425), + [776] = { + [sym__flag] = STATE(769), + [sym_long_flag] = STATE(844), + [sym_comment] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(3), }, - [1023] = { - [sym_comment] = STATE(1023), - [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), - [anon_sym_SEMI] = ACTIONS(2429), - [sym_cmd_identifier] = ACTIONS(2429), - [anon_sym_LF] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_error] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_source] = ACTIONS(2429), - [anon_sym_source_DASHenv] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_hide] = ACTIONS(2429), - [anon_sym_hide_DASHenv] = ACTIONS(2429), - [anon_sym_overlay] = ACTIONS(2429), - [anon_sym_where] = ACTIONS(2429), - [anon_sym_not] = ACTIONS(2429), - [anon_sym_DOT_DOT_LT] = ACTIONS(2429), - [anon_sym_DOT_DOT] = ACTIONS(2429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2429), - [sym_val_nothing] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2429), - [anon_sym_DASHinf] = ACTIONS(2429), - [anon_sym_NaN] = ACTIONS(2429), - [anon_sym_0b] = ACTIONS(2429), - [anon_sym_0o] = ACTIONS(2429), - [anon_sym_0x] = ACTIONS(2429), - [sym_val_date] = 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_CARET] = ACTIONS(2429), + [777] = { + [sym_comment] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [1024] = { - [sym_comment] = STATE(1024), - [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), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_cmd_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [sym_val_nothing] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2089), - [anon_sym_DASHinf] = ACTIONS(2089), - [anon_sym_NaN] = 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(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_CARET] = ACTIONS(2089), + [778] = { + [sym_comment] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [sym_short_flag] = ACTIONS(772), [anon_sym_POUND] = ACTIONS(3), }, - [1025] = { - [sym_comment] = STATE(1025), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_let_DASHenv] = ACTIONS(2435), - [anon_sym_mut] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [sym_cmd_identifier] = ACTIONS(2435), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_def] = ACTIONS(2435), - [anon_sym_def_DASHenv] = ACTIONS(2435), - [anon_sym_export_DASHenv] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_error] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_source] = ACTIONS(2435), - [anon_sym_source_DASHenv] = ACTIONS(2435), - [anon_sym_register] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_hide_DASHenv] = ACTIONS(2435), - [anon_sym_overlay] = ACTIONS(2435), - [anon_sym_where] = ACTIONS(2435), - [anon_sym_not] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2435), - [sym_val_nothing] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [aux_sym_val_number_token1] = ACTIONS(2435), - [aux_sym_val_number_token2] = ACTIONS(2435), - [aux_sym_val_number_token3] = ACTIONS(2435), - [aux_sym_val_number_token4] = ACTIONS(2435), - [aux_sym_val_number_token5] = ACTIONS(2435), - [anon_sym_inf] = ACTIONS(2435), - [anon_sym_DASHinf] = ACTIONS(2435), - [anon_sym_NaN] = ACTIONS(2435), - [anon_sym_0b] = ACTIONS(2435), - [anon_sym_0o] = ACTIONS(2435), - [anon_sym_0x] = ACTIONS(2435), - [sym_val_date] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2435), + [779] = { + [sym__flag] = STATE(992), + [sym_long_flag] = STATE(907), + [sym_comment] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [sym_short_flag] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, - [1026] = { - [sym_comment] = STATE(1026), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2361), - [sym_cmd_identifier] = ACTIONS(2361), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_def_DASHenv] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_where] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_DOT_DOT_LT] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), - [sym_val_nothing] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [aux_sym_val_number_token1] = ACTIONS(2361), - [aux_sym_val_number_token2] = ACTIONS(2361), - [aux_sym_val_number_token3] = ACTIONS(2361), - [aux_sym_val_number_token4] = ACTIONS(2361), - [aux_sym_val_number_token5] = ACTIONS(2361), - [anon_sym_inf] = ACTIONS(2361), - [anon_sym_DASHinf] = ACTIONS(2361), - [anon_sym_NaN] = ACTIONS(2361), - [anon_sym_0b] = ACTIONS(2361), - [anon_sym_0o] = ACTIONS(2361), - [anon_sym_0x] = ACTIONS(2361), - [sym_val_date] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2361), - [anon_sym_CARET] = ACTIONS(2361), + [780] = { + [sym_cell_path] = STATE(918), + [sym_path] = STATE(804), + [sym_comment] = STATE(780), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), [anon_sym_POUND] = ACTIONS(3), }, - [1027] = { - [sym_cell_path] = STATE(1118), - [sym_path] = STATE(1042), - [sym_comment] = STATE(1027), - [anon_sym_SEMI] = ACTIONS(755), - [sym_cmd_identifier] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_STAR_STAR] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_LT2] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(755), - [anon_sym_BANG_TILDE] = ACTIONS(755), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_not] = ACTIONS(753), - [anon_sym_DOT_DOT_LT] = ACTIONS(755), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [sym_val_nothing] = ACTIONS(753), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [aux_sym_val_number_token1] = ACTIONS(753), - [aux_sym_val_number_token2] = ACTIONS(753), - [aux_sym_val_number_token3] = ACTIONS(755), - [aux_sym_val_number_token4] = ACTIONS(755), - [aux_sym_val_number_token5] = ACTIONS(755), - [anon_sym_inf] = ACTIONS(753), - [anon_sym_DASHinf] = ACTIONS(755), - [anon_sym_NaN] = ACTIONS(753), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(753), - [anon_sym_0x] = ACTIONS(753), - [sym_val_date] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym__str_single_quotes] = ACTIONS(755), - [sym__str_back_ticks] = ACTIONS(755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(147), + [781] = { + [sym_comment] = STATE(781), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [sym_cmd_identifier] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_def_DASHenv] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_where] = ACTIONS(1569), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [sym_val_nothing] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [aux_sym_val_number_token1] = ACTIONS(1569), + [aux_sym_val_number_token2] = ACTIONS(1569), + [aux_sym_val_number_token3] = ACTIONS(1569), + [aux_sym_val_number_token4] = ACTIONS(1569), + [aux_sym_val_number_token5] = ACTIONS(1569), + [anon_sym_inf] = ACTIONS(1569), + [anon_sym_DASHinf] = ACTIONS(1569), + [anon_sym_NaN] = ACTIONS(1569), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [sym_short_flag] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), }, - [1028] = { - [sym_cell_path] = STATE(1124), - [sym_path] = STATE(1042), - [sym_comment] = STATE(1028), - [anon_sym_SEMI] = ACTIONS(735), - [sym_cmd_identifier] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_in] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_STAR_STAR] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(733), - [anon_sym_mod] = ACTIONS(733), - [anon_sym_SLASH_SLASH] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_bit_DASHshl] = ACTIONS(733), - [anon_sym_bit_DASHshr] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_LT2] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(735), - [anon_sym_GT_EQ] = ACTIONS(735), - [anon_sym_not_DASHin] = ACTIONS(733), - [anon_sym_starts_DASHwith] = ACTIONS(733), - [anon_sym_ends_DASHwith] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_BANG_TILDE] = ACTIONS(735), - [anon_sym_bit_DASHand] = ACTIONS(733), - [anon_sym_bit_DASHxor] = ACTIONS(733), - [anon_sym_bit_DASHor] = ACTIONS(733), - [anon_sym_and] = ACTIONS(733), - [anon_sym_xor] = ACTIONS(733), - [anon_sym_or] = ACTIONS(733), - [anon_sym_not] = ACTIONS(733), - [anon_sym_DOT_DOT_LT] = ACTIONS(735), - [anon_sym_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(735), - [sym_val_nothing] = ACTIONS(733), - [anon_sym_true] = ACTIONS(733), - [anon_sym_false] = ACTIONS(733), - [aux_sym_val_number_token1] = ACTIONS(733), - [aux_sym_val_number_token2] = ACTIONS(733), - [aux_sym_val_number_token3] = ACTIONS(735), - [aux_sym_val_number_token4] = ACTIONS(735), - [aux_sym_val_number_token5] = ACTIONS(735), - [anon_sym_inf] = ACTIONS(733), - [anon_sym_DASHinf] = ACTIONS(735), - [anon_sym_NaN] = ACTIONS(733), - [anon_sym_0b] = ACTIONS(733), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [sym__str_single_quotes] = ACTIONS(735), - [sym__str_back_ticks] = ACTIONS(735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(147), + [782] = { + [sym_comment] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [sym_short_flag] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(3), }, - [1029] = { - [sym_comment] = STATE(1029), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [sym_cmd_identifier] = ACTIONS(2443), - [anon_sym_LF] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_def_DASHenv] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_where] = ACTIONS(2443), - [anon_sym_not] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2443), - [sym_val_nothing] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = 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(2443), - [aux_sym_val_number_token5] = ACTIONS(2443), - [anon_sym_inf] = ACTIONS(2443), - [anon_sym_DASHinf] = ACTIONS(2443), - [anon_sym_NaN] = ACTIONS(2443), - [anon_sym_0b] = ACTIONS(2443), - [anon_sym_0o] = ACTIONS(2443), - [anon_sym_0x] = ACTIONS(2443), - [sym_val_date] = ACTIONS(2443), - [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_CARET] = ACTIONS(2443), + [783] = { + [sym_comment] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [sym_short_flag] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [1030] = { - [sym_comment] = STATE(1030), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_alias] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_let_DASHenv] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [sym_cmd_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_def] = ACTIONS(2219), - [anon_sym_def_DASHenv] = ACTIONS(2219), - [anon_sym_export_DASHenv] = ACTIONS(2219), - [anon_sym_extern] = ACTIONS(2219), - [anon_sym_module] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_error] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_do] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_source] = ACTIONS(2219), - [anon_sym_source_DASHenv] = ACTIONS(2219), - [anon_sym_register] = ACTIONS(2219), - [anon_sym_hide] = ACTIONS(2219), - [anon_sym_hide_DASHenv] = ACTIONS(2219), - [anon_sym_overlay] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_not] = ACTIONS(2219), - [anon_sym_DOT_DOT_LT] = ACTIONS(2219), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2219), - [sym_val_nothing] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym_val_number_token1] = ACTIONS(2219), - [aux_sym_val_number_token2] = ACTIONS(2219), - [aux_sym_val_number_token3] = ACTIONS(2219), - [aux_sym_val_number_token4] = ACTIONS(2219), - [aux_sym_val_number_token5] = ACTIONS(2219), - [anon_sym_inf] = ACTIONS(2219), - [anon_sym_DASHinf] = ACTIONS(2219), - [anon_sym_NaN] = ACTIONS(2219), - [anon_sym_0b] = ACTIONS(2219), - [anon_sym_0o] = ACTIONS(2219), - [anon_sym_0x] = ACTIONS(2219), - [sym_val_date] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym__str_single_quotes] = ACTIONS(2219), - [sym__str_back_ticks] = ACTIONS(2219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), + [784] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1865), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(784), + [aux_sym_command_repeat1] = STATE(791), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3), }, - [1031] = { - [sym_comment] = STATE(1031), - [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), - [anon_sym_SEMI] = ACTIONS(2449), - [sym_cmd_identifier] = ACTIONS(2449), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_source] = ACTIONS(2449), - [anon_sym_source_DASHenv] = ACTIONS(2449), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_hide] = ACTIONS(2449), - [anon_sym_hide_DASHenv] = ACTIONS(2449), - [anon_sym_overlay] = ACTIONS(2449), - [anon_sym_where] = ACTIONS(2449), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_DOT_DOT_LT] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2449), - [sym_val_nothing] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2449), - [anon_sym_DASHinf] = ACTIONS(2449), - [anon_sym_NaN] = ACTIONS(2449), - [anon_sym_0b] = ACTIONS(2449), - [anon_sym_0o] = ACTIONS(2449), - [anon_sym_0x] = ACTIONS(2449), - [sym_val_date] = 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_CARET] = ACTIONS(2449), + [785] = { + [sym_comment] = STATE(785), + [anon_sym_export] = ACTIONS(1611), + [anon_sym_alias] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_let_DASHenv] = ACTIONS(1611), + [anon_sym_mut] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1611), + [sym_cmd_identifier] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_def_DASHenv] = ACTIONS(1611), + [anon_sym_export_DASHenv] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_module] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_error] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_source] = ACTIONS(1611), + [anon_sym_source_DASHenv] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_hide] = ACTIONS(1611), + [anon_sym_hide_DASHenv] = ACTIONS(1611), + [anon_sym_overlay] = ACTIONS(1611), + [anon_sym_as] = ACTIONS(1611), + [anon_sym_where] = ACTIONS(1611), + [anon_sym_not] = ACTIONS(1611), + [anon_sym_DOT_DOT_LT] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1611), + [sym_val_nothing] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym_val_number_token1] = ACTIONS(1611), + [aux_sym_val_number_token2] = ACTIONS(1611), + [aux_sym_val_number_token3] = ACTIONS(1611), + [aux_sym_val_number_token4] = ACTIONS(1611), + [aux_sym_val_number_token5] = ACTIONS(1611), + [anon_sym_inf] = ACTIONS(1611), + [anon_sym_DASHinf] = ACTIONS(1611), + [anon_sym_NaN] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [sym_short_flag] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(3), }, - [1032] = { - [sym_comment] = STATE(1032), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [sym_cmd_identifier] = ACTIONS(2371), - [anon_sym_LF] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_def_DASHenv] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_where] = ACTIONS(2371), - [anon_sym_not] = ACTIONS(2371), - [anon_sym_DOT_DOT_LT] = ACTIONS(2371), - [anon_sym_DOT_DOT] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2371), - [sym_val_nothing] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [aux_sym_val_number_token1] = ACTIONS(2371), - [aux_sym_val_number_token2] = ACTIONS(2371), - [aux_sym_val_number_token3] = ACTIONS(2371), - [aux_sym_val_number_token4] = ACTIONS(2371), - [aux_sym_val_number_token5] = ACTIONS(2371), - [anon_sym_inf] = ACTIONS(2371), - [anon_sym_DASHinf] = ACTIONS(2371), - [anon_sym_NaN] = ACTIONS(2371), - [anon_sym_0b] = ACTIONS(2371), - [anon_sym_0o] = ACTIONS(2371), - [anon_sym_0x] = ACTIONS(2371), - [sym_val_date] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2371), + [786] = { + [sym_comment] = STATE(786), + [ts_builtin_sym_end] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [sym_short_flag] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, - [1033] = { - [sym_comment] = STATE(1033), - [anon_sym_export] = ACTIONS(2455), - [anon_sym_alias] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_let_DASHenv] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [sym_cmd_identifier] = ACTIONS(2455), - [anon_sym_LF] = ACTIONS(2457), - [anon_sym_def] = ACTIONS(2455), - [anon_sym_def_DASHenv] = ACTIONS(2455), - [anon_sym_export_DASHenv] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_module] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_error] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_source] = ACTIONS(2455), - [anon_sym_source_DASHenv] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_hide] = ACTIONS(2455), - [anon_sym_hide_DASHenv] = ACTIONS(2455), - [anon_sym_overlay] = ACTIONS(2455), - [anon_sym_where] = ACTIONS(2455), - [anon_sym_not] = ACTIONS(2455), - [anon_sym_DOT_DOT_LT] = ACTIONS(2455), - [anon_sym_DOT_DOT] = ACTIONS(2455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2455), - [sym_val_nothing] = ACTIONS(2455), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = 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(2455), - [aux_sym_val_number_token5] = ACTIONS(2455), - [anon_sym_inf] = ACTIONS(2455), - [anon_sym_DASHinf] = ACTIONS(2455), - [anon_sym_NaN] = ACTIONS(2455), - [anon_sym_0b] = ACTIONS(2455), - [anon_sym_0o] = ACTIONS(2455), - [anon_sym_0x] = ACTIONS(2455), - [sym_val_date] = ACTIONS(2455), - [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_CARET] = ACTIONS(2455), + [787] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1865), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(787), + [aux_sym_command_repeat1] = STATE(806), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3), }, - [1034] = { - [sym_ctrl_do] = STATE(903), - [sym_ctrl_if] = STATE(903), - [sym_ctrl_match] = STATE(903), - [sym_ctrl_try] = STATE(903), - [sym__expression] = STATE(2640), - [sym_expr_unary] = STATE(2579), - [sym_expr_binary] = STATE(2579), - [sym_expr_parenthesized] = STATE(2178), - [sym_val_range] = STATE(2579), - [sym__value] = STATE(2579), - [sym_val_bool] = STATE(2575), - [sym_val_variable] = STATE(2575), - [sym__var] = STATE(2175), - [sym_val_number] = STATE(129), - [sym_val_duration] = STATE(2575), - [sym_val_filesize] = STATE(2575), - [sym_val_binary] = STATE(2575), - [sym_val_string] = STATE(2575), - [sym__str_double_quotes] = STATE(2578), - [sym_val_interpolated] = STATE(2575), - [sym__inter_single_quotes] = STATE(2581), - [sym__inter_double_quotes] = STATE(2583), - [sym_val_list] = STATE(2575), - [sym_val_record] = STATE(2575), - [sym_val_table] = STATE(2575), - [sym_val_closure] = STATE(2575), - [sym_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(85), - [aux_sym_val_number_token4] = ACTIONS(85), - [aux_sym_val_number_token5] = ACTIONS(85), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(85), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2469), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2471), + [788] = { + [sym_comment] = STATE(788), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [sym_short_flag] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(3), }, - [1035] = { - [sym_comment] = STATE(1035), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [sym_cmd_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_def_DASHenv] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_where] = ACTIONS(2473), - [anon_sym_not] = ACTIONS(2473), - [anon_sym_DOT_DOT_LT] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2473), - [sym_val_nothing] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [aux_sym_val_number_token1] = ACTIONS(2473), - [aux_sym_val_number_token2] = ACTIONS(2473), - [aux_sym_val_number_token3] = ACTIONS(2473), - [aux_sym_val_number_token4] = ACTIONS(2473), - [aux_sym_val_number_token5] = ACTIONS(2473), - [anon_sym_inf] = ACTIONS(2473), - [anon_sym_DASHinf] = ACTIONS(2473), - [anon_sym_NaN] = ACTIONS(2473), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym__str_single_quotes] = ACTIONS(2473), - [sym__str_back_ticks] = ACTIONS(2473), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), + [789] = { + [sym__expression] = STATE(609), + [sym_expr_unary] = STATE(590), + [sym_expr_binary] = STATE(590), + [sym_expr_parenthesized] = STATE(589), + [sym_val_range] = STATE(590), + [sym__value] = STATE(590), + [sym_val_bool] = STATE(614), + [sym_val_variable] = STATE(614), + [sym__var] = STATE(525), + [sym_val_number] = STATE(10), + [sym_val_duration] = STATE(614), + [sym_val_filesize] = STATE(614), + [sym_val_binary] = STATE(614), + [sym_val_string] = STATE(614), + [sym__str_double_quotes] = STATE(598), + [sym_val_interpolated] = STATE(614), + [sym__inter_single_quotes] = STATE(625), + [sym__inter_double_quotes] = STATE(626), + [sym_val_list] = STATE(614), + [sym_val_record] = STATE(614), + [sym_val_table] = STATE(614), + [sym_val_closure] = STATE(614), + [sym_unquoted] = STATE(1848), + [sym_comment] = STATE(789), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_not] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1635), + [sym_val_nothing] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [aux_sym_val_number_token1] = ACTIONS(1641), + [aux_sym_val_number_token2] = ACTIONS(1641), + [aux_sym_val_number_token3] = ACTIONS(1641), + [aux_sym_val_number_token4] = ACTIONS(1641), + [aux_sym_val_number_token5] = ACTIONS(1641), + [anon_sym_inf] = ACTIONS(1641), + [anon_sym_DASHinf] = ACTIONS(1641), + [anon_sym_NaN] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1647), + [sym__str_back_ticks] = ACTIONS(1647), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1621), + [anon_sym_out_GT] = ACTIONS(1621), + [anon_sym_e_GT] = ACTIONS(1621), + [anon_sym_o_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT] = ACTIONS(1621), + [sym_short_flag] = ACTIONS(1621), + [aux_sym_unquoted_token1] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3), }, - [1036] = { - [sym_comment] = STATE(1036), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [sym_cmd_identifier] = ACTIONS(2477), - [anon_sym_LF] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_def_DASHenv] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2477), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_where] = ACTIONS(2477), - [anon_sym_not] = ACTIONS(2477), - [anon_sym_DOT_DOT_LT] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2477), - [sym_val_nothing] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_false] = 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(2477), - [aux_sym_val_number_token5] = ACTIONS(2477), - [anon_sym_inf] = ACTIONS(2477), - [anon_sym_DASHinf] = ACTIONS(2477), - [anon_sym_NaN] = ACTIONS(2477), - [anon_sym_0b] = ACTIONS(2477), - [anon_sym_0o] = ACTIONS(2477), - [anon_sym_0x] = ACTIONS(2477), - [sym_val_date] = ACTIONS(2477), - [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_CARET] = ACTIONS(2477), + [790] = { + [sym_comment] = STATE(790), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), [anon_sym_POUND] = ACTIONS(3), }, - [1037] = { - [sym_comment] = STATE(1037), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [sym_cmd_identifier] = ACTIONS(2341), - [anon_sym_LF] = ACTIONS(2481), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_def_DASHenv] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_DOT_DOT_LT] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2341), - [sym_val_nothing] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [aux_sym_val_number_token1] = ACTIONS(2341), - [aux_sym_val_number_token2] = ACTIONS(2341), - [aux_sym_val_number_token3] = ACTIONS(2341), - [aux_sym_val_number_token4] = ACTIONS(2341), - [aux_sym_val_number_token5] = ACTIONS(2341), - [anon_sym_inf] = ACTIONS(2341), - [anon_sym_DASHinf] = ACTIONS(2341), - [anon_sym_NaN] = ACTIONS(2341), - [anon_sym_0b] = ACTIONS(2341), - [anon_sym_0o] = ACTIONS(2341), - [anon_sym_0x] = ACTIONS(2341), - [sym_val_date] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), - [anon_sym_CARET] = ACTIONS(2341), + [791] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1865), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(791), + [aux_sym_command_repeat1] = STATE(791), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1672), + [sym_val_nothing] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [aux_sym_val_number_token1] = ACTIONS(1681), + [aux_sym_val_number_token2] = ACTIONS(1681), + [aux_sym_val_number_token3] = ACTIONS(1681), + [aux_sym_val_number_token4] = ACTIONS(1681), + [aux_sym_val_number_token5] = ACTIONS(1681), + [anon_sym_inf] = ACTIONS(1681), + [anon_sym_DASHinf] = ACTIONS(1681), + [anon_sym_NaN] = ACTIONS(1681), + [anon_sym_0b] = ACTIONS(1684), + [anon_sym_0o] = ACTIONS(1684), + [anon_sym_0x] = ACTIONS(1684), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1690), + [sym__str_back_ticks] = ACTIONS(1690), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1696), + [anon_sym_err_GT] = ACTIONS(1699), + [anon_sym_out_GT] = ACTIONS(1699), + [anon_sym_e_GT] = ACTIONS(1699), + [anon_sym_o_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT] = ACTIONS(1699), + [sym_short_flag] = ACTIONS(1702), + [aux_sym_unquoted_token1] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(3), }, - [1038] = { - [sym_comment] = STATE(1038), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2165), - [sym_cmd_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2483), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_def_DASHenv] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_where] = ACTIONS(2165), - [anon_sym_not] = ACTIONS(2165), - [anon_sym_DOT_DOT_LT] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2165), - [sym_val_nothing] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym_val_number_token1] = ACTIONS(2165), - [aux_sym_val_number_token2] = ACTIONS(2165), - [aux_sym_val_number_token3] = ACTIONS(2165), - [aux_sym_val_number_token4] = ACTIONS(2165), - [aux_sym_val_number_token5] = ACTIONS(2165), - [anon_sym_inf] = ACTIONS(2165), - [anon_sym_DASHinf] = ACTIONS(2165), - [anon_sym_NaN] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2165), - [anon_sym_0o] = ACTIONS(2165), - [anon_sym_0x] = ACTIONS(2165), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), + [792] = { + [sym_comment] = STATE(792), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_as] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [sym_short_flag] = ACTIONS(1708), [anon_sym_POUND] = ACTIONS(3), }, - [1039] = { - [sym_comment] = STATE(1039), - [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), - [anon_sym_SEMI] = ACTIONS(2485), - [sym_cmd_identifier] = ACTIONS(2485), - [anon_sym_LF] = ACTIONS(2487), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2485), - [anon_sym_not] = ACTIONS(2485), - [anon_sym_DOT_DOT_LT] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2485), - [sym_val_nothing] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(2485), - [anon_sym_DASHinf] = ACTIONS(2485), - [anon_sym_NaN] = ACTIONS(2485), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = 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_CARET] = ACTIONS(2485), + [793] = { + [sym_comment] = STATE(793), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [sym_short_flag] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(3), }, - [1040] = { - [sym_comment] = STATE(1040), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2489), - [sym_cmd_identifier] = ACTIONS(2489), - [anon_sym_LF] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_def_DASHenv] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_where] = ACTIONS(2489), - [anon_sym_not] = ACTIONS(2489), - [anon_sym_DOT_DOT_LT] = ACTIONS(2489), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2489), - [sym_val_nothing] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [aux_sym_val_number_token1] = ACTIONS(2489), - [aux_sym_val_number_token2] = ACTIONS(2489), - [aux_sym_val_number_token3] = ACTIONS(2489), - [aux_sym_val_number_token4] = ACTIONS(2489), - [aux_sym_val_number_token5] = ACTIONS(2489), - [anon_sym_inf] = ACTIONS(2489), - [anon_sym_DASHinf] = ACTIONS(2489), - [anon_sym_NaN] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2489), - [anon_sym_0o] = ACTIONS(2489), - [anon_sym_0x] = ACTIONS(2489), - [sym_val_date] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2489), - [anon_sym_CARET] = ACTIONS(2489), + [794] = { + [sym_comment] = STATE(794), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), [anon_sym_POUND] = ACTIONS(3), }, - [1041] = { - [sym_comment] = STATE(1041), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_SEMI] = ACTIONS(2493), - [sym_cmd_identifier] = ACTIONS(2493), - [anon_sym_LF] = ACTIONS(2495), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_def_DASHenv] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_where] = ACTIONS(2493), - [anon_sym_not] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [sym_val_nothing] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [aux_sym_val_number_token1] = ACTIONS(2493), - [aux_sym_val_number_token2] = ACTIONS(2493), - [aux_sym_val_number_token3] = ACTIONS(2493), - [aux_sym_val_number_token4] = ACTIONS(2493), - [aux_sym_val_number_token5] = ACTIONS(2493), - [anon_sym_inf] = ACTIONS(2493), - [anon_sym_DASHinf] = ACTIONS(2493), - [anon_sym_NaN] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2493), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), + [795] = { + [sym_comment] = STATE(795), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [sym_short_flag] = ACTIONS(1708), [anon_sym_POUND] = ACTIONS(3), }, - [1042] = { - [sym_path] = STATE(1083), - [sym_comment] = STATE(1042), - [aux_sym_cell_path_repeat1] = STATE(1044), - [anon_sym_SEMI] = ACTIONS(751), - [sym_cmd_identifier] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_STAR_STAR] = ACTIONS(751), - [anon_sym_PLUS_PLUS] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(749), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(751), - [anon_sym_BANG_TILDE] = ACTIONS(751), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_not] = ACTIONS(749), - [anon_sym_DOT_DOT_LT] = ACTIONS(751), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [sym_val_nothing] = ACTIONS(749), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [aux_sym_val_number_token1] = ACTIONS(749), - [aux_sym_val_number_token2] = ACTIONS(749), - [aux_sym_val_number_token3] = ACTIONS(751), - [aux_sym_val_number_token4] = ACTIONS(751), - [aux_sym_val_number_token5] = ACTIONS(751), - [anon_sym_inf] = ACTIONS(749), - [anon_sym_DASHinf] = ACTIONS(751), - [anon_sym_NaN] = ACTIONS(749), - [anon_sym_0b] = ACTIONS(749), - [anon_sym_0o] = ACTIONS(749), - [anon_sym_0x] = ACTIONS(749), - [sym_val_date] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym__str_single_quotes] = ACTIONS(751), - [sym__str_back_ticks] = ACTIONS(751), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(147), + [796] = { + [sym_comment] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(901), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [sym_short_flag] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(3), }, - [1043] = { - [sym_comment] = STATE(1043), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2497), - [sym_cmd_identifier] = ACTIONS(2497), - [anon_sym_LF] = ACTIONS(2499), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_def_DASHenv] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_where] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [sym_val_nothing] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [aux_sym_val_number_token1] = ACTIONS(2497), - [aux_sym_val_number_token2] = ACTIONS(2497), - [aux_sym_val_number_token3] = ACTIONS(2497), - [aux_sym_val_number_token4] = ACTIONS(2497), - [aux_sym_val_number_token5] = ACTIONS(2497), - [anon_sym_inf] = ACTIONS(2497), - [anon_sym_DASHinf] = ACTIONS(2497), - [anon_sym_NaN] = ACTIONS(2497), - [anon_sym_0b] = ACTIONS(2497), - [anon_sym_0o] = ACTIONS(2497), - [anon_sym_0x] = ACTIONS(2497), - [sym_val_date] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2497), + [797] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1865), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(797), + [aux_sym_command_repeat1] = STATE(784), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3), }, - [1044] = { - [sym_path] = STATE(1083), - [sym_comment] = STATE(1044), - [aux_sym_cell_path_repeat1] = STATE(1052), - [anon_sym_SEMI] = ACTIONS(747), - [sym_cmd_identifier] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_in] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_STAR_STAR] = ACTIONS(747), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_bit_DASHshl] = ACTIONS(745), - [anon_sym_bit_DASHshr] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_not_DASHin] = ACTIONS(745), - [anon_sym_starts_DASHwith] = ACTIONS(745), - [anon_sym_ends_DASHwith] = ACTIONS(745), - [anon_sym_EQ_TILDE] = ACTIONS(747), - [anon_sym_BANG_TILDE] = ACTIONS(747), - [anon_sym_bit_DASHand] = ACTIONS(745), - [anon_sym_bit_DASHxor] = ACTIONS(745), - [anon_sym_bit_DASHor] = ACTIONS(745), - [anon_sym_and] = ACTIONS(745), - [anon_sym_xor] = ACTIONS(745), - [anon_sym_or] = ACTIONS(745), - [anon_sym_not] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(747), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(747), - [sym_val_nothing] = ACTIONS(745), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym_val_number_token1] = ACTIONS(745), - [aux_sym_val_number_token2] = ACTIONS(745), - [aux_sym_val_number_token3] = ACTIONS(747), - [aux_sym_val_number_token4] = ACTIONS(747), - [aux_sym_val_number_token5] = ACTIONS(747), - [anon_sym_inf] = ACTIONS(745), - [anon_sym_DASHinf] = ACTIONS(747), - [anon_sym_NaN] = ACTIONS(745), - [anon_sym_0b] = ACTIONS(745), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(747), - [sym__str_single_quotes] = ACTIONS(747), - [sym__str_back_ticks] = ACTIONS(747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(147), + [798] = { + [sym_comment] = STATE(798), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [sym_short_flag] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), }, - [1045] = { - [sym_comment] = STATE(1045), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [sym_cmd_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_def_DASHenv] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_where] = ACTIONS(2155), - [anon_sym_not] = ACTIONS(2155), - [anon_sym_DOT_DOT_LT] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2155), - [sym_val_nothing] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [aux_sym_val_number_token1] = ACTIONS(2155), - [aux_sym_val_number_token2] = ACTIONS(2155), - [aux_sym_val_number_token3] = ACTIONS(2155), - [aux_sym_val_number_token4] = ACTIONS(2155), - [aux_sym_val_number_token5] = ACTIONS(2155), - [anon_sym_inf] = ACTIONS(2155), - [anon_sym_DASHinf] = ACTIONS(2155), - [anon_sym_NaN] = ACTIONS(2155), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2155), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), + [799] = { + [sym_comment] = STATE(799), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_as] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [sym_short_flag] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, - [1046] = { - [sym_comment] = STATE(1046), - [anon_sym_export] = ACTIONS(2503), - [anon_sym_alias] = ACTIONS(2503), - [anon_sym_let] = ACTIONS(2503), - [anon_sym_let_DASHenv] = ACTIONS(2503), - [anon_sym_mut] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [sym_cmd_identifier] = ACTIONS(2503), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_def] = ACTIONS(2503), - [anon_sym_def_DASHenv] = ACTIONS(2503), - [anon_sym_export_DASHenv] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym_module] = ACTIONS(2503), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_error] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_loop] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_source] = ACTIONS(2503), - [anon_sym_source_DASHenv] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_hide] = ACTIONS(2503), - [anon_sym_hide_DASHenv] = ACTIONS(2503), - [anon_sym_overlay] = ACTIONS(2503), - [anon_sym_where] = ACTIONS(2503), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_DOT_DOT_LT] = ACTIONS(2503), - [anon_sym_DOT_DOT] = ACTIONS(2503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2503), - [sym_val_nothing] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [aux_sym_val_number_token1] = ACTIONS(2503), - [aux_sym_val_number_token2] = ACTIONS(2503), - [aux_sym_val_number_token3] = ACTIONS(2503), - [aux_sym_val_number_token4] = ACTIONS(2503), - [aux_sym_val_number_token5] = ACTIONS(2503), - [anon_sym_inf] = ACTIONS(2503), - [anon_sym_DASHinf] = ACTIONS(2503), - [anon_sym_NaN] = ACTIONS(2503), - [anon_sym_0b] = ACTIONS(2503), - [anon_sym_0o] = ACTIONS(2503), - [anon_sym_0x] = ACTIONS(2503), - [sym_val_date] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_CARET] = ACTIONS(2503), + [800] = { + [sym_cell_path] = STATE(911), + [sym_path] = STATE(804), + [sym_comment] = STATE(800), + [anon_sym_export] = ACTIONS(768), + [anon_sym_alias] = ACTIONS(768), + [anon_sym_let] = ACTIONS(768), + [anon_sym_let_DASHenv] = ACTIONS(768), + [anon_sym_mut] = ACTIONS(768), + [anon_sym_const] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [sym_cmd_identifier] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_def] = ACTIONS(768), + [anon_sym_def_DASHenv] = ACTIONS(768), + [anon_sym_export_DASHenv] = ACTIONS(768), + [anon_sym_extern] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_use] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_error] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_loop] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_match] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_source] = ACTIONS(768), + [anon_sym_source_DASHenv] = ACTIONS(768), + [anon_sym_register] = ACTIONS(768), + [anon_sym_hide] = ACTIONS(768), + [anon_sym_hide_DASHenv] = ACTIONS(768), + [anon_sym_overlay] = ACTIONS(768), + [anon_sym_where] = ACTIONS(768), + [anon_sym_not] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), [anon_sym_POUND] = ACTIONS(3), }, - [1047] = { - [sym_comment] = STATE(1047), - [anon_sym_export] = ACTIONS(2507), - [anon_sym_alias] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_let_DASHenv] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [sym_cmd_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_def] = ACTIONS(2507), - [anon_sym_def_DASHenv] = ACTIONS(2507), - [anon_sym_export_DASHenv] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_error] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_source] = ACTIONS(2507), - [anon_sym_source_DASHenv] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_hide] = ACTIONS(2507), - [anon_sym_hide_DASHenv] = ACTIONS(2507), - [anon_sym_overlay] = ACTIONS(2507), - [anon_sym_where] = ACTIONS(2507), - [anon_sym_not] = ACTIONS(2507), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_DOT_DOT] = ACTIONS(2507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), - [sym_val_nothing] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [aux_sym_val_number_token1] = ACTIONS(2507), - [aux_sym_val_number_token2] = ACTIONS(2507), - [aux_sym_val_number_token3] = ACTIONS(2507), - [aux_sym_val_number_token4] = ACTIONS(2507), - [aux_sym_val_number_token5] = ACTIONS(2507), - [anon_sym_inf] = ACTIONS(2507), - [anon_sym_DASHinf] = ACTIONS(2507), - [anon_sym_NaN] = ACTIONS(2507), - [anon_sym_0b] = ACTIONS(2507), - [anon_sym_0o] = ACTIONS(2507), - [anon_sym_0x] = ACTIONS(2507), - [sym_val_date] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2507), - [sym__str_back_ticks] = ACTIONS(2507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), + [801] = { + [sym_comment] = STATE(801), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [sym_short_flag] = ACTIONS(1720), [anon_sym_POUND] = ACTIONS(3), }, - [1048] = { - [sym_comment] = STATE(1048), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_alias] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_let_DASHenv] = ACTIONS(2351), - [anon_sym_mut] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [sym_cmd_identifier] = ACTIONS(2351), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_def_DASHenv] = ACTIONS(2351), - [anon_sym_export_DASHenv] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_error] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_source] = ACTIONS(2351), - [anon_sym_source_DASHenv] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_hide_DASHenv] = ACTIONS(2351), - [anon_sym_overlay] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(2351), - [anon_sym_not] = ACTIONS(2351), - [anon_sym_DOT_DOT_LT] = ACTIONS(2351), - [anon_sym_DOT_DOT] = ACTIONS(2351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2351), - [sym_val_nothing] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [aux_sym_val_number_token1] = ACTIONS(2351), - [aux_sym_val_number_token2] = ACTIONS(2351), - [aux_sym_val_number_token3] = ACTIONS(2351), - [aux_sym_val_number_token4] = ACTIONS(2351), - [aux_sym_val_number_token5] = ACTIONS(2351), - [anon_sym_inf] = ACTIONS(2351), - [anon_sym_DASHinf] = ACTIONS(2351), - [anon_sym_NaN] = ACTIONS(2351), - [anon_sym_0b] = ACTIONS(2351), - [anon_sym_0o] = ACTIONS(2351), - [anon_sym_0x] = ACTIONS(2351), - [sym_val_date] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2351), - [anon_sym_CARET] = ACTIONS(2351), + [802] = { + [sym_comment] = STATE(802), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [sym_short_flag] = ACTIONS(1724), [anon_sym_POUND] = ACTIONS(3), }, - [1049] = { - [sym_comment] = STATE(1049), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_alias] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_let_DASHenv] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [sym_cmd_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2513), - [anon_sym_def_DASHenv] = ACTIONS(2513), - [anon_sym_export_DASHenv] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2513), - [anon_sym_error] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_source] = ACTIONS(2513), - [anon_sym_source_DASHenv] = ACTIONS(2513), - [anon_sym_register] = ACTIONS(2513), - [anon_sym_hide] = ACTIONS(2513), - [anon_sym_hide_DASHenv] = ACTIONS(2513), - [anon_sym_overlay] = ACTIONS(2513), - [anon_sym_where] = ACTIONS(2513), - [anon_sym_not] = ACTIONS(2513), - [anon_sym_DOT_DOT_LT] = ACTIONS(2513), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2513), - [sym_val_nothing] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [aux_sym_val_number_token1] = ACTIONS(2513), - [aux_sym_val_number_token2] = ACTIONS(2513), - [aux_sym_val_number_token3] = ACTIONS(2513), - [aux_sym_val_number_token4] = ACTIONS(2513), - [aux_sym_val_number_token5] = ACTIONS(2513), - [anon_sym_inf] = ACTIONS(2513), - [anon_sym_DASHinf] = ACTIONS(2513), - [anon_sym_NaN] = ACTIONS(2513), - [anon_sym_0b] = ACTIONS(2513), - [anon_sym_0o] = ACTIONS(2513), - [anon_sym_0x] = ACTIONS(2513), - [sym_val_date] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym__str_single_quotes] = ACTIONS(2513), - [sym__str_back_ticks] = ACTIONS(2513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), + [803] = { + [sym_cell_path] = STATE(921), + [sym_path] = STATE(804), + [sym_comment] = STATE(803), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), [anon_sym_POUND] = ACTIONS(3), }, - [1050] = { - [sym_comment] = STATE(1050), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_alias] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_let_DASHenv] = ACTIONS(2385), - [anon_sym_mut] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2385), - [sym_cmd_identifier] = ACTIONS(2385), - [anon_sym_LF] = ACTIONS(2517), - [anon_sym_def] = ACTIONS(2385), - [anon_sym_def_DASHenv] = ACTIONS(2385), - [anon_sym_export_DASHenv] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_source] = ACTIONS(2385), - [anon_sym_source_DASHenv] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_hide] = ACTIONS(2385), - [anon_sym_hide_DASHenv] = ACTIONS(2385), - [anon_sym_overlay] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_DOT_DOT_LT] = ACTIONS(2385), - [anon_sym_DOT_DOT] = ACTIONS(2385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2385), - [sym_val_nothing] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [aux_sym_val_number_token1] = ACTIONS(2385), - [aux_sym_val_number_token2] = ACTIONS(2385), - [aux_sym_val_number_token3] = ACTIONS(2385), - [aux_sym_val_number_token4] = ACTIONS(2385), - [aux_sym_val_number_token5] = ACTIONS(2385), - [anon_sym_inf] = ACTIONS(2385), - [anon_sym_DASHinf] = ACTIONS(2385), - [anon_sym_NaN] = ACTIONS(2385), - [anon_sym_0b] = ACTIONS(2385), - [anon_sym_0o] = ACTIONS(2385), - [anon_sym_0x] = ACTIONS(2385), - [sym_val_date] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(2385), + [804] = { + [sym_path] = STATE(880), + [sym_comment] = STATE(804), + [aux_sym_cell_path_repeat1] = STATE(807), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), [anon_sym_POUND] = ACTIONS(3), }, - [1051] = { - [sym_comment] = STATE(1051), - [anon_sym_export] = ACTIONS(2519), - [anon_sym_alias] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_let_DASHenv] = ACTIONS(2519), - [anon_sym_mut] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [sym_cmd_identifier] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2521), - [anon_sym_def] = ACTIONS(2519), - [anon_sym_def_DASHenv] = ACTIONS(2519), - [anon_sym_export_DASHenv] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_module] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_error] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_source] = ACTIONS(2519), - [anon_sym_source_DASHenv] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_hide] = ACTIONS(2519), - [anon_sym_hide_DASHenv] = ACTIONS(2519), - [anon_sym_overlay] = ACTIONS(2519), - [anon_sym_where] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_DOT_DOT_LT] = ACTIONS(2519), - [anon_sym_DOT_DOT] = ACTIONS(2519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2519), - [sym_val_nothing] = ACTIONS(2519), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [aux_sym_val_number_token1] = ACTIONS(2519), - [aux_sym_val_number_token2] = ACTIONS(2519), - [aux_sym_val_number_token3] = ACTIONS(2519), - [aux_sym_val_number_token4] = ACTIONS(2519), - [aux_sym_val_number_token5] = ACTIONS(2519), - [anon_sym_inf] = ACTIONS(2519), - [anon_sym_DASHinf] = ACTIONS(2519), - [anon_sym_NaN] = ACTIONS(2519), - [anon_sym_0b] = ACTIONS(2519), - [anon_sym_0o] = ACTIONS(2519), - [anon_sym_0x] = ACTIONS(2519), - [sym_val_date] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [sym__str_single_quotes] = ACTIONS(2519), - [sym__str_back_ticks] = ACTIONS(2519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2519), + [805] = { + [sym_comment] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [sym_short_flag] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [1052] = { - [sym_path] = STATE(1083), - [sym_comment] = STATE(1052), - [aux_sym_cell_path_repeat1] = STATE(1052), - [anon_sym_SEMI] = ACTIONS(759), - [sym_cmd_identifier] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_in] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_DOT] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_STAR_STAR] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_bit_DASHshl] = ACTIONS(757), - [anon_sym_bit_DASHshr] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_not_DASHin] = ACTIONS(757), - [anon_sym_starts_DASHwith] = ACTIONS(757), - [anon_sym_ends_DASHwith] = ACTIONS(757), - [anon_sym_EQ_TILDE] = ACTIONS(759), - [anon_sym_BANG_TILDE] = ACTIONS(759), - [anon_sym_bit_DASHand] = ACTIONS(757), - [anon_sym_bit_DASHxor] = ACTIONS(757), - [anon_sym_bit_DASHor] = ACTIONS(757), - [anon_sym_and] = ACTIONS(757), - [anon_sym_xor] = ACTIONS(757), - [anon_sym_or] = ACTIONS(757), - [anon_sym_not] = ACTIONS(757), - [anon_sym_DOT_DOT_LT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [sym_val_nothing] = ACTIONS(757), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_val_number_token1] = ACTIONS(757), - [aux_sym_val_number_token2] = ACTIONS(757), - [aux_sym_val_number_token3] = ACTIONS(759), - [aux_sym_val_number_token4] = ACTIONS(759), - [aux_sym_val_number_token5] = ACTIONS(759), - [anon_sym_inf] = ACTIONS(757), - [anon_sym_DASHinf] = ACTIONS(759), - [anon_sym_NaN] = ACTIONS(757), - [anon_sym_0b] = ACTIONS(757), - [anon_sym_0o] = ACTIONS(757), - [anon_sym_0x] = ACTIONS(757), - [sym_val_date] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym__str_single_quotes] = ACTIONS(759), - [sym__str_back_ticks] = ACTIONS(759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(147), + [806] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1865), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(806), + [aux_sym_command_repeat1] = STATE(791), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, - [1053] = { - [sym_comment] = STATE(1053), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_alias] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_let_DASHenv] = ACTIONS(2291), - [anon_sym_mut] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [sym_cmd_identifier] = ACTIONS(2291), - [anon_sym_LF] = ACTIONS(2526), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_def_DASHenv] = ACTIONS(2291), - [anon_sym_export_DASHenv] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_error] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_source] = ACTIONS(2291), - [anon_sym_source_DASHenv] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_hide_DASHenv] = ACTIONS(2291), - [anon_sym_overlay] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2291), - [anon_sym_DOT_DOT_LT] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), - [sym_val_nothing] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [aux_sym_val_number_token1] = ACTIONS(2291), - [aux_sym_val_number_token2] = ACTIONS(2291), - [aux_sym_val_number_token3] = ACTIONS(2291), - [aux_sym_val_number_token4] = ACTIONS(2291), - [aux_sym_val_number_token5] = ACTIONS(2291), - [anon_sym_inf] = ACTIONS(2291), - [anon_sym_DASHinf] = ACTIONS(2291), - [anon_sym_NaN] = ACTIONS(2291), - [anon_sym_0b] = ACTIONS(2291), - [anon_sym_0o] = ACTIONS(2291), - [anon_sym_0x] = ACTIONS(2291), - [sym_val_date] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2291), + [807] = { + [sym_path] = STATE(880), + [sym_comment] = STATE(807), + [aux_sym_cell_path_repeat1] = STATE(808), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [1054] = { - [sym_comment] = STATE(1054), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_alias] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_DASHenv] = ACTIONS(2528), - [anon_sym_mut] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [sym_cmd_identifier] = ACTIONS(2528), - [anon_sym_LF] = ACTIONS(2530), - [anon_sym_def] = ACTIONS(2528), - [anon_sym_def_DASHenv] = ACTIONS(2528), - [anon_sym_export_DASHenv] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_error] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_source] = ACTIONS(2528), - [anon_sym_source_DASHenv] = ACTIONS(2528), - [anon_sym_register] = ACTIONS(2528), - [anon_sym_hide] = ACTIONS(2528), - [anon_sym_hide_DASHenv] = ACTIONS(2528), - [anon_sym_overlay] = ACTIONS(2528), - [anon_sym_where] = ACTIONS(2528), - [anon_sym_not] = ACTIONS(2528), - [anon_sym_DOT_DOT_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2528), - [sym_val_nothing] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [aux_sym_val_number_token1] = ACTIONS(2528), - [aux_sym_val_number_token2] = ACTIONS(2528), - [aux_sym_val_number_token3] = ACTIONS(2528), - [aux_sym_val_number_token4] = ACTIONS(2528), - [aux_sym_val_number_token5] = ACTIONS(2528), - [anon_sym_inf] = ACTIONS(2528), - [anon_sym_DASHinf] = ACTIONS(2528), - [anon_sym_NaN] = ACTIONS(2528), - [anon_sym_0b] = ACTIONS(2528), - [anon_sym_0o] = ACTIONS(2528), - [anon_sym_0x] = ACTIONS(2528), - [sym_val_date] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym__str_single_quotes] = ACTIONS(2528), - [sym__str_back_ticks] = ACTIONS(2528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), + [808] = { + [sym_path] = STATE(880), + [sym_comment] = STATE(808), + [aux_sym_cell_path_repeat1] = STATE(808), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), [anon_sym_POUND] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2532), 1, - anon_sym_DOT, - STATE(1132), 1, - sym_path, - STATE(1055), 2, + [809] = { + [sym_comment] = STATE(809), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_catch] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [810] = { + [sym_path] = STATE(973), + [sym_comment] = STATE(810), + [aux_sym_cell_path_repeat1] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(725), + [anon_sym_export] = ACTIONS(723), + [anon_sym_alias] = ACTIONS(723), + [anon_sym_let] = ACTIONS(723), + [anon_sym_let_DASHenv] = ACTIONS(723), + [anon_sym_mut] = ACTIONS(723), + [anon_sym_const] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_def] = ACTIONS(723), + [anon_sym_def_DASHenv] = ACTIONS(723), + [anon_sym_export_DASHenv] = ACTIONS(723), + [anon_sym_extern] = ACTIONS(723), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_error] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_break] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_for] = ACTIONS(723), + [anon_sym_loop] = ACTIONS(723), + [anon_sym_while] = ACTIONS(723), + [anon_sym_do] = ACTIONS(723), + [anon_sym_if] = ACTIONS(723), + [anon_sym_match] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(723), + [anon_sym_return] = ACTIONS(723), + [anon_sym_source] = ACTIONS(723), + [anon_sym_source_DASHenv] = ACTIONS(723), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(723), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(723), + [anon_sym_where] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(723), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(723), + [aux_sym_val_number_token4] = ACTIONS(723), + [aux_sym_val_number_token5] = ACTIONS(723), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(723), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [sym__str_single_quotes] = ACTIONS(723), + [sym__str_back_ticks] = ACTIONS(723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(3), + }, + [811] = { + [sym_comment] = STATE(811), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [812] = { + [sym_cell_path] = STATE(1041), + [sym_path] = STATE(818), + [sym_comment] = STATE(812), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(760), + [anon_sym_let] = ACTIONS(760), + [anon_sym_let_DASHenv] = ACTIONS(760), + [anon_sym_mut] = ACTIONS(760), + [anon_sym_const] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [sym_cmd_identifier] = ACTIONS(760), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_def] = ACTIONS(760), + [anon_sym_def_DASHenv] = ACTIONS(760), + [anon_sym_export_DASHenv] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_use] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_error] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_match] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_source] = ACTIONS(760), + [anon_sym_source_DASHenv] = ACTIONS(760), + [anon_sym_register] = ACTIONS(760), + [anon_sym_hide] = ACTIONS(760), + [anon_sym_hide_DASHenv] = ACTIONS(760), + [anon_sym_overlay] = ACTIONS(760), + [anon_sym_where] = ACTIONS(760), + [anon_sym_not] = ACTIONS(760), + [anon_sym_DOT_DOT_LT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [sym_val_nothing] = ACTIONS(760), + [anon_sym_true] = ACTIONS(760), + [anon_sym_false] = ACTIONS(760), + [aux_sym_val_number_token1] = ACTIONS(760), + [aux_sym_val_number_token2] = ACTIONS(760), + [aux_sym_val_number_token3] = ACTIONS(760), + [aux_sym_val_number_token4] = ACTIONS(760), + [aux_sym_val_number_token5] = ACTIONS(760), + [anon_sym_inf] = ACTIONS(760), + [anon_sym_DASHinf] = ACTIONS(760), + [anon_sym_NaN] = ACTIONS(760), + [anon_sym_0b] = ACTIONS(760), + [anon_sym_0o] = ACTIONS(760), + [anon_sym_0x] = ACTIONS(760), + [sym_val_date] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym__str_single_quotes] = ACTIONS(760), + [sym__str_back_ticks] = ACTIONS(760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(3), + }, + [813] = { + [sym_comment] = STATE(813), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [sym_short_flag] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [814] = { + [sym_comment] = STATE(814), + [aux_sym_pipe_element_repeat1] = STATE(1923), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_alias] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_let_DASHenv] = ACTIONS(1742), + [anon_sym_mut] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_cmd_identifier] = ACTIONS(1742), + [anon_sym_LF] = ACTIONS(1744), + [anon_sym_def] = ACTIONS(1742), + [anon_sym_def_DASHenv] = ACTIONS(1742), + [anon_sym_export_DASHenv] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_error] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_source] = ACTIONS(1742), + [anon_sym_source_DASHenv] = ACTIONS(1742), + [anon_sym_register] = ACTIONS(1742), + [anon_sym_hide] = ACTIONS(1742), + [anon_sym_hide_DASHenv] = ACTIONS(1742), + [anon_sym_overlay] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1742), + [anon_sym_not] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [sym_val_nothing] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [aux_sym_val_number_token1] = ACTIONS(1742), + [aux_sym_val_number_token2] = ACTIONS(1742), + [aux_sym_val_number_token3] = ACTIONS(1742), + [aux_sym_val_number_token4] = ACTIONS(1742), + [aux_sym_val_number_token5] = ACTIONS(1742), + [anon_sym_inf] = ACTIONS(1742), + [anon_sym_DASHinf] = ACTIONS(1742), + [anon_sym_NaN] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1742), + [anon_sym_0o] = ACTIONS(1742), + [anon_sym_0x] = ACTIONS(1742), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(3), + }, + [815] = { + [sym_path] = STATE(973), + [sym_comment] = STATE(815), + [aux_sym_cell_path_repeat1] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [816] = { + [sym_comment] = STATE(816), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [817] = { + [sym_cell_path] = STATE(1062), + [sym_path] = STATE(818), + [sym_comment] = STATE(817), + [ts_builtin_sym_end] = ACTIONS(770), + [anon_sym_export] = ACTIONS(768), + [anon_sym_alias] = ACTIONS(768), + [anon_sym_let] = ACTIONS(768), + [anon_sym_let_DASHenv] = ACTIONS(768), + [anon_sym_mut] = ACTIONS(768), + [anon_sym_const] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [sym_cmd_identifier] = ACTIONS(768), + [anon_sym_LF] = ACTIONS(770), + [anon_sym_def] = ACTIONS(768), + [anon_sym_def_DASHenv] = ACTIONS(768), + [anon_sym_export_DASHenv] = ACTIONS(768), + [anon_sym_extern] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_use] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_error] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_loop] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_match] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_source] = ACTIONS(768), + [anon_sym_source_DASHenv] = ACTIONS(768), + [anon_sym_register] = ACTIONS(768), + [anon_sym_hide] = ACTIONS(768), + [anon_sym_hide_DASHenv] = ACTIONS(768), + [anon_sym_overlay] = ACTIONS(768), + [anon_sym_where] = ACTIONS(768), + [anon_sym_not] = ACTIONS(768), + [anon_sym_DOT_DOT_LT] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [sym_val_nothing] = ACTIONS(768), + [anon_sym_true] = ACTIONS(768), + [anon_sym_false] = ACTIONS(768), + [aux_sym_val_number_token1] = ACTIONS(768), + [aux_sym_val_number_token2] = ACTIONS(768), + [aux_sym_val_number_token3] = ACTIONS(768), + [aux_sym_val_number_token4] = ACTIONS(768), + [aux_sym_val_number_token5] = ACTIONS(768), + [anon_sym_inf] = ACTIONS(768), + [anon_sym_DASHinf] = ACTIONS(768), + [anon_sym_NaN] = ACTIONS(768), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(768), + [anon_sym_0x] = ACTIONS(768), + [sym_val_date] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym__str_single_quotes] = ACTIONS(768), + [sym__str_back_ticks] = ACTIONS(768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(3), + }, + [818] = { + [sym_path] = STATE(973), + [sym_comment] = STATE(818), + [aux_sym_cell_path_repeat1] = STATE(815), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_export] = ACTIONS(756), + [anon_sym_alias] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_let_DASHenv] = ACTIONS(756), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_def] = ACTIONS(756), + [anon_sym_def_DASHenv] = ACTIONS(756), + [anon_sym_export_DASHenv] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_error] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_source] = ACTIONS(756), + [anon_sym_source_DASHenv] = ACTIONS(756), + [anon_sym_register] = ACTIONS(756), + [anon_sym_hide] = ACTIONS(756), + [anon_sym_hide_DASHenv] = ACTIONS(756), + [anon_sym_overlay] = ACTIONS(756), + [anon_sym_where] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(756), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(756), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(756), + [aux_sym_val_number_token4] = ACTIONS(756), + [aux_sym_val_number_token5] = ACTIONS(756), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(756), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym__str_single_quotes] = ACTIONS(756), + [sym__str_back_ticks] = ACTIONS(756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(3), + }, + [819] = { + [sym_expr_parenthesized] = STATE(1910), + [sym_val_range] = STATE(1911), + [sym__value] = STATE(1911), + [sym_val_bool] = STATE(1936), + [sym_val_variable] = STATE(1936), + [sym__var] = STATE(1821), + [sym_val_number] = STATE(111), + [sym_val_duration] = STATE(1936), + [sym_val_filesize] = STATE(1936), + [sym_val_binary] = STATE(1936), + [sym_val_string] = STATE(1936), + [sym__str_double_quotes] = STATE(1916), + [sym_val_interpolated] = STATE(1936), + [sym__inter_single_quotes] = STATE(1886), + [sym__inter_double_quotes] = STATE(1889), + [sym_val_list] = STATE(1936), + [sym_val_record] = STATE(1936), + [sym_val_table] = STATE(1936), + [sym_val_closure] = STATE(1936), + [sym__cmd_arg] = STATE(1927), + [sym_redirection] = STATE(1929), + [sym__flag] = STATE(1934), + [sym_long_flag] = STATE(1904), + [sym_unquoted] = STATE(1887), + [sym_comment] = STATE(819), + [aux_sym_command_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LF] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), + [sym_val_nothing] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_val_number_token1] = ACTIONS(1764), + [aux_sym_val_number_token2] = ACTIONS(1764), + [aux_sym_val_number_token3] = ACTIONS(1764), + [aux_sym_val_number_token4] = ACTIONS(1764), + [aux_sym_val_number_token5] = ACTIONS(1764), + [anon_sym_inf] = ACTIONS(1764), + [anon_sym_DASHinf] = ACTIONS(1764), + [anon_sym_NaN] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [sym_short_flag] = ACTIONS(1778), + [aux_sym_unquoted_token1] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(3), + }, + [820] = { + [sym_comment] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_as] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [sym_short_flag] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(3), + }, + [821] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1893), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(821), + [aux_sym__command_parenthesized_body_repeat1] = STATE(828), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_LF] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [822] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1893), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(822), + [aux_sym__command_parenthesized_body_repeat1] = STATE(827), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [823] = { + [sym_comment] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_as] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [sym_short_flag] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [824] = { + [sym_cell_path] = STATE(1052), + [sym_path] = STATE(818), + [sym_comment] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_let_DASHenv] = ACTIONS(764), + [anon_sym_mut] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [sym_cmd_identifier] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(766), + [anon_sym_def] = ACTIONS(764), + [anon_sym_def_DASHenv] = ACTIONS(764), + [anon_sym_export_DASHenv] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_error] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_loop] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_match] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_source] = ACTIONS(764), + [anon_sym_source_DASHenv] = ACTIONS(764), + [anon_sym_register] = ACTIONS(764), + [anon_sym_hide] = ACTIONS(764), + [anon_sym_hide_DASHenv] = ACTIONS(764), + [anon_sym_overlay] = ACTIONS(764), + [anon_sym_where] = ACTIONS(764), + [anon_sym_not] = ACTIONS(764), + [anon_sym_DOT_DOT_LT] = ACTIONS(764), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [sym_val_nothing] = ACTIONS(764), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(764), + [anon_sym_0o] = ACTIONS(764), + [anon_sym_0x] = ACTIONS(764), + [sym_val_date] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym__str_single_quotes] = ACTIONS(764), + [sym__str_back_ticks] = ACTIONS(764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(3), + }, + [825] = { + [sym__terminator] = STATE(930), + [sym_comment] = STATE(825), + [aux_sym__block_body_repeat1] = STATE(825), + [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), + [anon_sym_SEMI] = ACTIONS(1792), + [sym_cmd_identifier] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1795), + [anon_sym_def] = ACTIONS(1790), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_error] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_do] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_source] = ACTIONS(1790), + [anon_sym_source_DASHenv] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1790), + [anon_sym_hide] = ACTIONS(1790), + [anon_sym_hide_DASHenv] = ACTIONS(1790), + [anon_sym_overlay] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_not] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), + [sym_val_nothing] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1790), + [anon_sym_DASHinf] = ACTIONS(1790), + [anon_sym_NaN] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(1790), + [anon_sym_0o] = ACTIONS(1790), + [anon_sym_0x] = ACTIONS(1790), + [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_CARET] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(3), + }, + [826] = { + [sym_comment] = STATE(826), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_alias] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_let_DASHenv] = ACTIONS(1798), + [anon_sym_mut] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [sym_cmd_identifier] = ACTIONS(1798), + [anon_sym_LF] = ACTIONS(1800), + [anon_sym_def] = ACTIONS(1798), + [anon_sym_def_DASHenv] = ACTIONS(1798), + [anon_sym_export_DASHenv] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_module] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_error] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_try] = ACTIONS(1798), + [anon_sym_catch] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_source] = ACTIONS(1798), + [anon_sym_source_DASHenv] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_hide] = ACTIONS(1798), + [anon_sym_hide_DASHenv] = ACTIONS(1798), + [anon_sym_overlay] = ACTIONS(1798), + [anon_sym_where] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [sym_val_nothing] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [aux_sym_val_number_token1] = ACTIONS(1798), + [aux_sym_val_number_token2] = ACTIONS(1798), + [aux_sym_val_number_token3] = ACTIONS(1798), + [aux_sym_val_number_token4] = ACTIONS(1798), + [aux_sym_val_number_token5] = ACTIONS(1798), + [anon_sym_inf] = ACTIONS(1798), + [anon_sym_DASHinf] = ACTIONS(1798), + [anon_sym_NaN] = ACTIONS(1798), + [anon_sym_0b] = ACTIONS(1798), + [anon_sym_0o] = ACTIONS(1798), + [anon_sym_0x] = ACTIONS(1798), + [sym_val_date] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(3), + }, + [827] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1893), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(827), + [aux_sym__command_parenthesized_body_repeat1] = STATE(827), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1815), + [anon_sym_DASH_DASH] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_DOT_DOT_LT] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), + [sym_val_nothing] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [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), + [anon_sym_inf] = ACTIONS(1833), + [anon_sym_DASHinf] = ACTIONS(1833), + [anon_sym_NaN] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1836), + [anon_sym_0o] = ACTIONS(1836), + [anon_sym_0x] = ACTIONS(1836), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [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), + [sym_short_flag] = ACTIONS(1854), + [aux_sym_unquoted_token1] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(3), + }, + [828] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1893), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(828), + [aux_sym__command_parenthesized_body_repeat1] = STATE(827), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [829] = { + [sym_comment] = STATE(829), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [sym_short_flag] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(3), + }, + [830] = { + [sym_expr_parenthesized] = STATE(1910), + [sym_val_range] = STATE(1911), + [sym__value] = STATE(1911), + [sym_val_bool] = STATE(1936), + [sym_val_variable] = STATE(1936), + [sym__var] = STATE(1821), + [sym_val_number] = STATE(111), + [sym_val_duration] = STATE(1936), + [sym_val_filesize] = STATE(1936), + [sym_val_binary] = STATE(1936), + [sym_val_string] = STATE(1936), + [sym__str_double_quotes] = STATE(1916), + [sym_val_interpolated] = STATE(1936), + [sym__inter_single_quotes] = STATE(1886), + [sym__inter_double_quotes] = STATE(1889), + [sym_val_list] = STATE(1936), + [sym_val_record] = STATE(1936), + [sym_val_table] = STATE(1936), + [sym_val_closure] = STATE(1936), + [sym__cmd_arg] = STATE(1927), + [sym_redirection] = STATE(1929), + [sym__flag] = STATE(1934), + [sym_long_flag] = STATE(1904), + [sym_unquoted] = STATE(1887), + [sym_comment] = STATE(830), + [aux_sym_command_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_DOT_DOT_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), + [sym_val_nothing] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [aux_sym_val_number_token1] = ACTIONS(1888), + [aux_sym_val_number_token2] = ACTIONS(1888), + [aux_sym_val_number_token3] = ACTIONS(1888), + [aux_sym_val_number_token4] = ACTIONS(1888), + [aux_sym_val_number_token5] = ACTIONS(1888), + [anon_sym_inf] = ACTIONS(1888), + [anon_sym_DASHinf] = ACTIONS(1888), + [anon_sym_NaN] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_err_GT] = ACTIONS(1906), + [anon_sym_out_GT] = ACTIONS(1906), + [anon_sym_e_GT] = ACTIONS(1906), + [anon_sym_o_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT] = ACTIONS(1906), + [sym_short_flag] = ACTIONS(1909), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [831] = { + [sym_comment] = STATE(831), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [sym_short_flag] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [832] = { + [sym_comment] = STATE(832), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_catch] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [833] = { + [sym_expr_parenthesized] = STATE(1910), + [sym_val_range] = STATE(1911), + [sym__value] = STATE(1911), + [sym_val_bool] = STATE(1936), + [sym_val_variable] = STATE(1936), + [sym__var] = STATE(1821), + [sym_val_number] = STATE(111), + [sym_val_duration] = STATE(1936), + [sym_val_filesize] = STATE(1936), + [sym_val_binary] = STATE(1936), + [sym_val_string] = STATE(1936), + [sym__str_double_quotes] = STATE(1916), + [sym_val_interpolated] = STATE(1936), + [sym__inter_single_quotes] = STATE(1886), + [sym__inter_double_quotes] = STATE(1889), + [sym_val_list] = STATE(1936), + [sym_val_record] = STATE(1936), + [sym_val_table] = STATE(1936), + [sym_val_closure] = STATE(1936), + [sym__cmd_arg] = STATE(1927), + [sym_redirection] = STATE(1929), + [sym__flag] = STATE(1934), + [sym_long_flag] = STATE(1904), + [sym_unquoted] = STATE(1887), + [sym_comment] = STATE(833), + [aux_sym_command_repeat1] = STATE(819), + [ts_builtin_sym_end] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_LF] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), + [sym_val_nothing] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_val_number_token1] = ACTIONS(1764), + [aux_sym_val_number_token2] = ACTIONS(1764), + [aux_sym_val_number_token3] = ACTIONS(1764), + [aux_sym_val_number_token4] = ACTIONS(1764), + [aux_sym_val_number_token5] = ACTIONS(1764), + [anon_sym_inf] = ACTIONS(1764), + [anon_sym_DASHinf] = ACTIONS(1764), + [anon_sym_NaN] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [sym_short_flag] = ACTIONS(1778), + [aux_sym_unquoted_token1] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(3), + }, + [834] = { + [sym_comment] = STATE(834), + [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), + [anon_sym_SEMI] = ACTIONS(1915), + [sym_cmd_identifier] = ACTIONS(1915), + [anon_sym_LF] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_where] = ACTIONS(1915), + [anon_sym_not] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), + [sym_val_nothing] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1915), + [anon_sym_DASHinf] = ACTIONS(1915), + [anon_sym_NaN] = ACTIONS(1915), + [anon_sym_0b] = ACTIONS(1915), + [anon_sym_0o] = ACTIONS(1915), + [anon_sym_0x] = ACTIONS(1915), + [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_CARET] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(3), + }, + [835] = { + [sym_comment] = STATE(835), + [ts_builtin_sym_end] = ACTIONS(1613), + [anon_sym_export] = ACTIONS(1611), + [anon_sym_alias] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_let_DASHenv] = ACTIONS(1611), + [anon_sym_mut] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1611), + [sym_cmd_identifier] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(1613), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_def_DASHenv] = ACTIONS(1611), + [anon_sym_export_DASHenv] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_module] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_error] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_source] = ACTIONS(1611), + [anon_sym_source_DASHenv] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_hide] = ACTIONS(1611), + [anon_sym_hide_DASHenv] = ACTIONS(1611), + [anon_sym_overlay] = ACTIONS(1611), + [anon_sym_as] = ACTIONS(1611), + [anon_sym_where] = ACTIONS(1611), + [anon_sym_not] = ACTIONS(1611), + [anon_sym_DOT_DOT_LT] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1611), + [sym_val_nothing] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [aux_sym_val_number_token1] = ACTIONS(1611), + [aux_sym_val_number_token2] = ACTIONS(1611), + [aux_sym_val_number_token3] = ACTIONS(1611), + [aux_sym_val_number_token4] = ACTIONS(1611), + [aux_sym_val_number_token5] = ACTIONS(1611), + [anon_sym_inf] = ACTIONS(1611), + [anon_sym_DASHinf] = ACTIONS(1611), + [anon_sym_NaN] = ACTIONS(1611), + [anon_sym_0b] = ACTIONS(1611), + [anon_sym_0o] = ACTIONS(1611), + [anon_sym_0x] = ACTIONS(1611), + [sym_val_date] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [sym__str_single_quotes] = ACTIONS(1611), + [sym__str_back_ticks] = ACTIONS(1611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [sym_short_flag] = ACTIONS(1611), + [anon_sym_POUND] = ACTIONS(3), + }, + [836] = { + [sym_expr_parenthesized] = STATE(1910), + [sym_val_range] = STATE(1911), + [sym__value] = STATE(1911), + [sym_val_bool] = STATE(1936), + [sym_val_variable] = STATE(1936), + [sym__var] = STATE(1821), + [sym_val_number] = STATE(111), + [sym_val_duration] = STATE(1936), + [sym_val_filesize] = STATE(1936), + [sym_val_binary] = STATE(1936), + [sym_val_string] = STATE(1936), + [sym__str_double_quotes] = STATE(1916), + [sym_val_interpolated] = STATE(1936), + [sym__inter_single_quotes] = STATE(1886), + [sym__inter_double_quotes] = STATE(1889), + [sym_val_list] = STATE(1936), + [sym_val_record] = STATE(1936), + [sym_val_table] = STATE(1936), + [sym_val_closure] = STATE(1936), + [sym__cmd_arg] = STATE(1927), + [sym_redirection] = STATE(1929), + [sym__flag] = STATE(1934), + [sym_long_flag] = STATE(1904), + [sym_unquoted] = STATE(1887), + [sym_comment] = STATE(836), + [aux_sym_command_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), + [sym_val_nothing] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_val_number_token1] = ACTIONS(1764), + [aux_sym_val_number_token2] = ACTIONS(1764), + [aux_sym_val_number_token3] = ACTIONS(1764), + [aux_sym_val_number_token4] = ACTIONS(1764), + [aux_sym_val_number_token5] = ACTIONS(1764), + [anon_sym_inf] = ACTIONS(1764), + [anon_sym_DASHinf] = ACTIONS(1764), + [anon_sym_NaN] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [sym_short_flag] = ACTIONS(1778), + [aux_sym_unquoted_token1] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(3), + }, + [837] = { + [sym_comment] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [sym_short_flag] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(3), + }, + [838] = { + [sym_comment] = STATE(838), + [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [sym_short_flag] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(3), + }, + [839] = { + [sym_comment] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [sym_cmd_identifier] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_def_DASHenv] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_where] = ACTIONS(1569), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [sym_val_nothing] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [aux_sym_val_number_token1] = ACTIONS(1569), + [aux_sym_val_number_token2] = ACTIONS(1569), + [aux_sym_val_number_token3] = ACTIONS(1569), + [aux_sym_val_number_token4] = ACTIONS(1569), + [aux_sym_val_number_token5] = ACTIONS(1569), + [anon_sym_inf] = ACTIONS(1569), + [anon_sym_DASHinf] = ACTIONS(1569), + [anon_sym_NaN] = ACTIONS(1569), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [sym_short_flag] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [840] = { + [sym_comment] = STATE(840), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [841] = { + [sym_expr_parenthesized] = STATE(1910), + [sym_val_range] = STATE(1911), + [sym__value] = STATE(1911), + [sym_val_bool] = STATE(1936), + [sym_val_variable] = STATE(1936), + [sym__var] = STATE(1821), + [sym_val_number] = STATE(111), + [sym_val_duration] = STATE(1936), + [sym_val_filesize] = STATE(1936), + [sym_val_binary] = STATE(1936), + [sym_val_string] = STATE(1936), + [sym__str_double_quotes] = STATE(1916), + [sym_val_interpolated] = STATE(1936), + [sym__inter_single_quotes] = STATE(1886), + [sym__inter_double_quotes] = STATE(1889), + [sym_val_list] = STATE(1936), + [sym_val_record] = STATE(1936), + [sym_val_table] = STATE(1936), + [sym_val_closure] = STATE(1936), + [sym__cmd_arg] = STATE(1927), + [sym_redirection] = STATE(1929), + [sym__flag] = STATE(1934), + [sym_long_flag] = STATE(1904), + [sym_unquoted] = STATE(1887), + [sym_comment] = STATE(841), + [aux_sym_command_repeat1] = STATE(836), + [ts_builtin_sym_end] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), + [sym_val_nothing] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_val_number_token1] = ACTIONS(1764), + [aux_sym_val_number_token2] = ACTIONS(1764), + [aux_sym_val_number_token3] = ACTIONS(1764), + [aux_sym_val_number_token4] = ACTIONS(1764), + [aux_sym_val_number_token5] = ACTIONS(1764), + [anon_sym_inf] = ACTIONS(1764), + [anon_sym_DASHinf] = ACTIONS(1764), + [anon_sym_NaN] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [sym_short_flag] = ACTIONS(1778), + [aux_sym_unquoted_token1] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(3), + }, + [842] = { + [sym_comment] = STATE(842), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [843] = { + [sym_comment] = STATE(843), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [844] = { + [sym_comment] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [sym_short_flag] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [845] = { + [sym__expression] = STATE(686), + [sym_expr_unary] = STATE(733), + [sym_expr_binary] = STATE(733), + [sym_expr_parenthesized] = STATE(734), + [sym_val_range] = STATE(733), + [sym__value] = STATE(733), + [sym_val_bool] = STATE(693), + [sym_val_variable] = STATE(693), + [sym__var] = STATE(535), + [sym_val_number] = STATE(12), + [sym_val_duration] = STATE(693), + [sym_val_filesize] = STATE(693), + [sym_val_binary] = STATE(693), + [sym_val_string] = STATE(693), + [sym__str_double_quotes] = STATE(692), + [sym_val_interpolated] = STATE(693), + [sym__inter_single_quotes] = STATE(679), + [sym__inter_double_quotes] = STATE(673), + [sym_val_list] = STATE(693), + [sym_val_record] = STATE(693), + [sym_val_table] = STATE(693), + [sym_val_closure] = STATE(693), + [sym_unquoted] = STATE(1922), + [sym_comment] = STATE(845), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_LF] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [sym_val_nothing] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [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), + [anon_sym_inf] = ACTIONS(1941), + [anon_sym_DASHinf] = ACTIONS(1941), + [anon_sym_NaN] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1943), + [anon_sym_0o] = ACTIONS(1943), + [anon_sym_0x] = ACTIONS(1943), + [sym_val_date] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_err_GT] = ACTIONS(1621), + [anon_sym_out_GT] = ACTIONS(1621), + [anon_sym_e_GT] = ACTIONS(1621), + [anon_sym_o_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT] = ACTIONS(1621), + [sym_short_flag] = ACTIONS(1621), + [aux_sym_unquoted_token1] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(3), + }, + [846] = { + [sym_comment] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(782), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_let_DASHenv] = ACTIONS(780), + [anon_sym_mut] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(780), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_LF] = ACTIONS(782), + [anon_sym_def] = ACTIONS(780), + [anon_sym_def_DASHenv] = ACTIONS(780), + [anon_sym_export_DASHenv] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_error] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(780), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(780), + [anon_sym_overlay] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(780), + [aux_sym_val_number_token4] = ACTIONS(780), + [aux_sym_val_number_token5] = ACTIONS(780), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(780), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(3), + }, + [847] = { + [sym_comment] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(786), + [anon_sym_export] = ACTIONS(784), + [anon_sym_alias] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_let_DASHenv] = ACTIONS(784), + [anon_sym_mut] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_def] = ACTIONS(784), + [anon_sym_def_DASHenv] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_use] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_error] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_match] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_hide] = ACTIONS(784), + [anon_sym_hide_DASHenv] = ACTIONS(784), + [anon_sym_overlay] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_where] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(784), + [aux_sym_val_number_token4] = ACTIONS(784), + [aux_sym_val_number_token5] = ACTIONS(784), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(784), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym__str_single_quotes] = ACTIONS(784), + [sym__str_back_ticks] = ACTIONS(784), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(3), + }, + [848] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1893), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(848), + [aux_sym__command_parenthesized_body_repeat1] = STATE(822), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [849] = { + [sym_block] = STATE(927), + [sym_comment] = STATE(849), + [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), + [anon_sym_SEMI] = ACTIONS(1957), + [sym_cmd_identifier] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_where] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = ACTIONS(1957), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = 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_CARET] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + }, + [850] = { + [sym_comment] = STATE(850), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_alias] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_let_DASHenv] = ACTIONS(1073), + [anon_sym_mut] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1073), + [sym_cmd_identifier] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_def] = ACTIONS(1073), + [anon_sym_def_DASHenv] = ACTIONS(1073), + [anon_sym_export_DASHenv] = ACTIONS(1073), + [anon_sym_extern] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_error] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_loop] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_source] = ACTIONS(1073), + [anon_sym_source_DASHenv] = ACTIONS(1073), + [anon_sym_register] = ACTIONS(1073), + [anon_sym_hide] = ACTIONS(1073), + [anon_sym_hide_DASHenv] = ACTIONS(1073), + [anon_sym_overlay] = ACTIONS(1073), + [anon_sym_where] = ACTIONS(1073), + [anon_sym_not] = ACTIONS(1073), + [anon_sym_DOT_DOT_LT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [sym_val_nothing] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [aux_sym_val_number_token1] = ACTIONS(1073), + [aux_sym_val_number_token2] = ACTIONS(1073), + [aux_sym_val_number_token3] = ACTIONS(1073), + [aux_sym_val_number_token4] = ACTIONS(1073), + [aux_sym_val_number_token5] = ACTIONS(1073), + [anon_sym_inf] = ACTIONS(1073), + [anon_sym_DASHinf] = ACTIONS(1073), + [anon_sym_NaN] = ACTIONS(1073), + [anon_sym_0b] = ACTIONS(1073), + [anon_sym_0o] = ACTIONS(1073), + [anon_sym_0x] = ACTIONS(1073), + [sym_val_date] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym__str_single_quotes] = ACTIONS(1073), + [sym__str_back_ticks] = ACTIONS(1073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(3), + }, + [851] = { + [sym_comment] = STATE(851), + [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), + [anon_sym_SEMI] = ACTIONS(1963), + [sym_cmd_identifier] = ACTIONS(1963), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1963), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1963), + [anon_sym_error] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_loop] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_do] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_source] = ACTIONS(1963), + [anon_sym_source_DASHenv] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_hide] = ACTIONS(1963), + [anon_sym_hide_DASHenv] = ACTIONS(1963), + [anon_sym_overlay] = ACTIONS(1963), + [anon_sym_where] = ACTIONS(1963), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [sym_val_nothing] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1963), + [anon_sym_DASHinf] = ACTIONS(1963), + [anon_sym_NaN] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1963), + [anon_sym_0o] = ACTIONS(1963), + [anon_sym_0x] = ACTIONS(1963), + [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_CARET] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(3), + }, + [852] = { + [sym_comment] = STATE(852), + [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), + [anon_sym_SEMI] = ACTIONS(1967), + [sym_cmd_identifier] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1969), + [anon_sym_def] = ACTIONS(1967), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_error] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_loop] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_source] = ACTIONS(1967), + [anon_sym_source_DASHenv] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_hide] = ACTIONS(1967), + [anon_sym_hide_DASHenv] = ACTIONS(1967), + [anon_sym_overlay] = ACTIONS(1967), + [anon_sym_where] = ACTIONS(1967), + [anon_sym_not] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [sym_val_nothing] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1967), + [anon_sym_DASHinf] = ACTIONS(1967), + [anon_sym_NaN] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1967), + [anon_sym_0o] = ACTIONS(1967), + [anon_sym_0x] = ACTIONS(1967), + [sym_val_date] = 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_CARET] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(3), + }, + [853] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1914), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(853), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [854] = { + [sym_comment] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_catch] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [855] = { + [sym_comment] = STATE(855), + [anon_sym_export] = ACTIONS(1975), + [anon_sym_alias] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(1975), + [anon_sym_let_DASHenv] = ACTIONS(1975), + [anon_sym_mut] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [sym_cmd_identifier] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1975), + [anon_sym_def_DASHenv] = ACTIONS(1975), + [anon_sym_export_DASHenv] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1975), + [anon_sym_module] = ACTIONS(1975), + [anon_sym_use] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_error] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_loop] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_do] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_source] = ACTIONS(1975), + [anon_sym_source_DASHenv] = ACTIONS(1975), + [anon_sym_register] = ACTIONS(1975), + [anon_sym_hide] = ACTIONS(1975), + [anon_sym_hide_DASHenv] = ACTIONS(1975), + [anon_sym_overlay] = ACTIONS(1975), + [anon_sym_where] = ACTIONS(1975), + [anon_sym_not] = ACTIONS(1975), + [anon_sym_DOT_DOT_LT] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), + [sym_val_nothing] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [aux_sym_val_number_token1] = ACTIONS(1975), + [aux_sym_val_number_token2] = ACTIONS(1975), + [aux_sym_val_number_token3] = ACTIONS(1975), + [aux_sym_val_number_token4] = ACTIONS(1975), + [aux_sym_val_number_token5] = ACTIONS(1975), + [anon_sym_inf] = ACTIONS(1975), + [anon_sym_DASHinf] = ACTIONS(1975), + [anon_sym_NaN] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1975), + [anon_sym_0o] = ACTIONS(1975), + [anon_sym_0x] = ACTIONS(1975), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(3), + }, + [856] = { + [sym_comment] = STATE(856), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_alias] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_let_DASHenv] = ACTIONS(1979), + [anon_sym_mut] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [sym_cmd_identifier] = ACTIONS(1979), + [anon_sym_LF] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1979), + [anon_sym_def_DASHenv] = ACTIONS(1979), + [anon_sym_export_DASHenv] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1979), + [anon_sym_module] = ACTIONS(1979), + [anon_sym_use] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_error] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_loop] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_do] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_source] = ACTIONS(1979), + [anon_sym_source_DASHenv] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1979), + [anon_sym_hide] = ACTIONS(1979), + [anon_sym_hide_DASHenv] = ACTIONS(1979), + [anon_sym_overlay] = ACTIONS(1979), + [anon_sym_where] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [sym_val_nothing] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1979), + [anon_sym_DASHinf] = ACTIONS(1979), + [anon_sym_NaN] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1979), + [anon_sym_0o] = ACTIONS(1979), + [anon_sym_0x] = ACTIONS(1979), + [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_CARET] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(3), + }, + [857] = { + [sym_comment] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_catch] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [858] = { + [sym_comment] = STATE(858), + [anon_sym_export] = ACTIONS(1983), + [anon_sym_alias] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_let_DASHenv] = ACTIONS(1983), + [anon_sym_mut] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [sym_cmd_identifier] = ACTIONS(1983), + [anon_sym_LF] = ACTIONS(1985), + [anon_sym_def] = ACTIONS(1983), + [anon_sym_def_DASHenv] = ACTIONS(1983), + [anon_sym_export_DASHenv] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym_module] = ACTIONS(1983), + [anon_sym_use] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1983), + [anon_sym_error] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_loop] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_do] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_source] = ACTIONS(1983), + [anon_sym_source_DASHenv] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_hide] = ACTIONS(1983), + [anon_sym_hide_DASHenv] = ACTIONS(1983), + [anon_sym_overlay] = ACTIONS(1983), + [anon_sym_where] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [sym_val_nothing] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = 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(1983), + [aux_sym_val_number_token5] = ACTIONS(1983), + [anon_sym_inf] = ACTIONS(1983), + [anon_sym_DASHinf] = ACTIONS(1983), + [anon_sym_NaN] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1983), + [anon_sym_0o] = ACTIONS(1983), + [anon_sym_0x] = ACTIONS(1983), + [sym_val_date] = ACTIONS(1983), + [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_CARET] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(3), + }, + [859] = { + [sym_comment] = STATE(859), + [ts_builtin_sym_end] = ACTIONS(1917), + [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), + [anon_sym_SEMI] = ACTIONS(1915), + [sym_cmd_identifier] = ACTIONS(1915), + [anon_sym_LF] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_where] = ACTIONS(1915), + [anon_sym_not] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), + [sym_val_nothing] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1915), + [anon_sym_DASHinf] = ACTIONS(1915), + [anon_sym_NaN] = ACTIONS(1915), + [anon_sym_0b] = ACTIONS(1915), + [anon_sym_0o] = ACTIONS(1915), + [anon_sym_0x] = ACTIONS(1915), + [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_CARET] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(3), + }, + [860] = { + [sym_comment] = STATE(860), + [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), + [anon_sym_SEMI] = ACTIONS(1989), + [sym_cmd_identifier] = ACTIONS(1989), + [anon_sym_LF] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_where] = ACTIONS(1989), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), + [sym_val_nothing] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1989), + [anon_sym_DASHinf] = ACTIONS(1989), + [anon_sym_NaN] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1989), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0x] = ACTIONS(1989), + [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_CARET] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(3), + }, + [861] = { + [sym_comment] = STATE(861), + [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), + [anon_sym_SEMI] = ACTIONS(1993), + [sym_cmd_identifier] = ACTIONS(1993), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_where] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1993), + [anon_sym_DOT_DOT_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), + [sym_val_nothing] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1993), + [anon_sym_DASHinf] = ACTIONS(1993), + [anon_sym_NaN] = ACTIONS(1993), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = 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_CARET] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(3), + }, + [862] = { + [sym_block] = STATE(977), + [sym_comment] = STATE(862), + [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), + [anon_sym_SEMI] = ACTIONS(1997), + [sym_cmd_identifier] = ACTIONS(1997), + [anon_sym_LF] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), + [sym_val_nothing] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1997), + [anon_sym_DASHinf] = ACTIONS(1997), + [anon_sym_NaN] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = 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_CARET] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(3), + }, + [863] = { + [sym_comment] = STATE(863), + [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), + [anon_sym_SEMI] = ACTIONS(2001), + [sym_cmd_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_where] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_DOT_DOT_LT] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), + [sym_val_nothing] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2001), + [anon_sym_DASHinf] = ACTIONS(2001), + [anon_sym_NaN] = ACTIONS(2001), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = 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_CARET] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [864] = { + [sym_comment] = STATE(864), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_def_DASHenv] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [sym_val_nothing] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym_val_number_token1] = ACTIONS(1532), + [aux_sym_val_number_token2] = ACTIONS(1532), + [aux_sym_val_number_token3] = ACTIONS(1532), + [aux_sym_val_number_token4] = ACTIONS(1532), + [aux_sym_val_number_token5] = ACTIONS(1532), + [anon_sym_inf] = ACTIONS(1532), + [anon_sym_DASHinf] = ACTIONS(1532), + [anon_sym_NaN] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [865] = { + [sym_comment] = STATE(865), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + }, + [866] = { + [sym_comment] = STATE(866), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(3), + }, + [867] = { + [sym_comment] = STATE(867), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2005), + [sym_cmd_identifier] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_def_DASHenv] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_where] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2005), + [anon_sym_DOT_DOT_LT] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), + [sym_val_nothing] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [aux_sym_val_number_token1] = ACTIONS(2005), + [aux_sym_val_number_token2] = ACTIONS(2005), + [aux_sym_val_number_token3] = ACTIONS(2005), + [aux_sym_val_number_token4] = ACTIONS(2005), + [aux_sym_val_number_token5] = ACTIONS(2005), + [anon_sym_inf] = ACTIONS(2005), + [anon_sym_DASHinf] = ACTIONS(2005), + [anon_sym_NaN] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(3), + }, + [868] = { + [sym_block] = STATE(971), + [sym_comment] = STATE(868), + [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), + [anon_sym_SEMI] = ACTIONS(1997), + [sym_cmd_identifier] = ACTIONS(1997), + [anon_sym_LF] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), + [sym_val_nothing] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1997), + [anon_sym_DASHinf] = ACTIONS(1997), + [anon_sym_NaN] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = 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_CARET] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(3), + }, + [869] = { + [sym_comment] = STATE(869), + [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), + [anon_sym_SEMI] = ACTIONS(2009), + [sym_cmd_identifier] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_where] = ACTIONS(2009), + [anon_sym_not] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [sym_val_nothing] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2009), + [anon_sym_DASHinf] = ACTIONS(2009), + [anon_sym_NaN] = ACTIONS(2009), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = 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_CARET] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(3), + }, + [870] = { + [sym_comment] = STATE(870), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(3), + }, + [871] = { + [sym_comment] = STATE(871), + [aux_sym_pipe_element_repeat1] = STATE(1923), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_alias] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_let_DASHenv] = ACTIONS(1742), + [anon_sym_mut] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_cmd_identifier] = ACTIONS(1742), + [anon_sym_LF] = ACTIONS(1744), + [anon_sym_def] = ACTIONS(1742), + [anon_sym_def_DASHenv] = ACTIONS(1742), + [anon_sym_export_DASHenv] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_error] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_source] = ACTIONS(1742), + [anon_sym_source_DASHenv] = ACTIONS(1742), + [anon_sym_register] = ACTIONS(1742), + [anon_sym_hide] = ACTIONS(1742), + [anon_sym_hide_DASHenv] = ACTIONS(1742), + [anon_sym_overlay] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1742), + [anon_sym_not] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [sym_val_nothing] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [aux_sym_val_number_token1] = ACTIONS(1742), + [aux_sym_val_number_token2] = ACTIONS(1742), + [aux_sym_val_number_token3] = ACTIONS(1742), + [aux_sym_val_number_token4] = ACTIONS(1742), + [aux_sym_val_number_token5] = ACTIONS(1742), + [anon_sym_inf] = ACTIONS(1742), + [anon_sym_DASHinf] = ACTIONS(1742), + [anon_sym_NaN] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1742), + [anon_sym_0o] = ACTIONS(1742), + [anon_sym_0x] = ACTIONS(1742), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(3), + }, + [872] = { + [sym_comment] = STATE(872), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(3), + }, + [873] = { + [sym_comment] = STATE(873), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2013), + [sym_cmd_identifier] = ACTIONS(2013), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_def_DASHenv] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_where] = ACTIONS(2013), + [anon_sym_not] = ACTIONS(2013), + [anon_sym_DOT_DOT_LT] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), + [sym_val_nothing] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [aux_sym_val_number_token1] = ACTIONS(2013), + [aux_sym_val_number_token2] = ACTIONS(2013), + [aux_sym_val_number_token3] = ACTIONS(2013), + [aux_sym_val_number_token4] = ACTIONS(2013), + [aux_sym_val_number_token5] = ACTIONS(2013), + [anon_sym_inf] = ACTIONS(2013), + [anon_sym_DASHinf] = ACTIONS(2013), + [anon_sym_NaN] = ACTIONS(2013), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), + [anon_sym_CARET] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(3), + }, + [874] = { + [sym_comment] = STATE(874), + [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), + [anon_sym_SEMI] = ACTIONS(2017), + [sym_cmd_identifier] = ACTIONS(2017), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_where] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_DOT_DOT_LT] = ACTIONS(2017), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), + [sym_val_nothing] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2017), + [anon_sym_DASHinf] = ACTIONS(2017), + [anon_sym_NaN] = ACTIONS(2017), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = 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_CARET] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(3), + }, + [875] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1914), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(875), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [876] = { + [sym_comment] = STATE(876), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [877] = { + [sym_comment] = STATE(877), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(3), + }, + [878] = { + [sym_comment] = STATE(878), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(3), + }, + [879] = { + [sym_comment] = STATE(879), + [ts_builtin_sym_end] = ACTIONS(774), + [anon_sym_export] = ACTIONS(772), + [anon_sym_alias] = ACTIONS(772), + [anon_sym_let] = ACTIONS(772), + [anon_sym_let_DASHenv] = ACTIONS(772), + [anon_sym_mut] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [sym_cmd_identifier] = ACTIONS(772), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_def] = ACTIONS(772), + [anon_sym_def_DASHenv] = ACTIONS(772), + [anon_sym_export_DASHenv] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_use] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_error] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_match] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_source] = ACTIONS(772), + [anon_sym_source_DASHenv] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_hide] = ACTIONS(772), + [anon_sym_hide_DASHenv] = ACTIONS(772), + [anon_sym_overlay] = ACTIONS(772), + [anon_sym_where] = ACTIONS(772), + [anon_sym_QMARK2] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(772), + [anon_sym_DOT_DOT_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [sym_val_nothing] = ACTIONS(772), + [anon_sym_true] = ACTIONS(772), + [anon_sym_false] = ACTIONS(772), + [aux_sym_val_number_token1] = ACTIONS(772), + [aux_sym_val_number_token2] = ACTIONS(772), + [aux_sym_val_number_token3] = ACTIONS(772), + [aux_sym_val_number_token4] = ACTIONS(772), + [aux_sym_val_number_token5] = ACTIONS(772), + [anon_sym_inf] = ACTIONS(772), + [anon_sym_DASHinf] = ACTIONS(772), + [anon_sym_NaN] = ACTIONS(772), + [anon_sym_0b] = ACTIONS(772), + [anon_sym_0o] = ACTIONS(772), + [anon_sym_0x] = ACTIONS(772), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym__str_single_quotes] = ACTIONS(772), + [sym__str_back_ticks] = ACTIONS(772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(3), + }, + [880] = { + [sym_comment] = STATE(880), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(3), + }, + [881] = { + [sym_comment] = STATE(881), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_def_DASHenv] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), + }, + [882] = { + [sym_comment] = STATE(882), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(3), + }, + [883] = { + [sym_comment] = STATE(883), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [884] = { + [sym_comment] = STATE(884), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [sym_cmd_identifier] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_def_DASHenv] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_where] = ACTIONS(1569), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [sym_val_nothing] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [aux_sym_val_number_token1] = ACTIONS(1569), + [aux_sym_val_number_token2] = ACTIONS(1569), + [aux_sym_val_number_token3] = ACTIONS(1569), + [aux_sym_val_number_token4] = ACTIONS(1569), + [aux_sym_val_number_token5] = ACTIONS(1569), + [anon_sym_inf] = ACTIONS(1569), + [anon_sym_DASHinf] = ACTIONS(1569), + [anon_sym_NaN] = ACTIONS(1569), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [885] = { + [sym_comment] = STATE(885), + [aux_sym_pipe_element_repeat1] = STATE(1896), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_alias] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_let_DASHenv] = ACTIONS(1742), + [anon_sym_mut] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_cmd_identifier] = ACTIONS(1742), + [anon_sym_LF] = ACTIONS(1744), + [anon_sym_def] = ACTIONS(1742), + [anon_sym_def_DASHenv] = ACTIONS(1742), + [anon_sym_export_DASHenv] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_error] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_source] = ACTIONS(1742), + [anon_sym_source_DASHenv] = ACTIONS(1742), + [anon_sym_register] = ACTIONS(1742), + [anon_sym_hide] = ACTIONS(1742), + [anon_sym_hide_DASHenv] = ACTIONS(1742), + [anon_sym_overlay] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1742), + [anon_sym_not] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [sym_val_nothing] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [aux_sym_val_number_token1] = ACTIONS(1742), + [aux_sym_val_number_token2] = ACTIONS(1742), + [aux_sym_val_number_token3] = ACTIONS(1742), + [aux_sym_val_number_token4] = ACTIONS(1742), + [aux_sym_val_number_token5] = ACTIONS(1742), + [anon_sym_inf] = ACTIONS(1742), + [anon_sym_DASHinf] = ACTIONS(1742), + [anon_sym_NaN] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1742), + [anon_sym_0o] = ACTIONS(1742), + [anon_sym_0x] = ACTIONS(1742), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(3), + }, + [886] = { + [sym_comment] = STATE(886), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(3), + }, + [887] = { + [sym_comment] = STATE(887), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), + }, + [888] = { + [sym_block] = STATE(928), + [sym_comment] = STATE(888), + [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), + [anon_sym_SEMI] = ACTIONS(1957), + [sym_cmd_identifier] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_where] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = ACTIONS(1957), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = 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_CARET] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + }, + [889] = { + [sym_comment] = STATE(889), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [890] = { + [sym_comment] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [891] = { + [sym_comment] = STATE(891), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [892] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1914), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(892), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_LF] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [893] = { + [sym_comment] = STATE(893), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(3), + }, + [894] = { + [sym_comment] = STATE(894), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [895] = { + [sym_comment] = STATE(895), + [ts_builtin_sym_end] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1553), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_let_DASHenv] = ACTIONS(1553), + [anon_sym_mut] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [sym_cmd_identifier] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_def_DASHenv] = ACTIONS(1553), + [anon_sym_export_DASHenv] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_module] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(1553), + [anon_sym_error] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_source] = ACTIONS(1553), + [anon_sym_source_DASHenv] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_hide] = ACTIONS(1553), + [anon_sym_hide_DASHenv] = ACTIONS(1553), + [anon_sym_overlay] = ACTIONS(1553), + [anon_sym_where] = ACTIONS(1553), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [sym_val_nothing] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [aux_sym_val_number_token1] = ACTIONS(1553), + [aux_sym_val_number_token2] = ACTIONS(1553), + [aux_sym_val_number_token3] = ACTIONS(1553), + [aux_sym_val_number_token4] = ACTIONS(1553), + [aux_sym_val_number_token5] = ACTIONS(1553), + [anon_sym_inf] = ACTIONS(1553), + [anon_sym_DASHinf] = ACTIONS(1553), + [anon_sym_NaN] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1553), + [anon_sym_0o] = ACTIONS(1553), + [anon_sym_0x] = ACTIONS(1553), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [aux_sym_long_flag_token1] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(3), + }, + [896] = { + [sym_expr_parenthesized] = STATE(1846), + [sym_val_range] = STATE(1873), + [sym__value] = STATE(1873), + [sym_val_bool] = STATE(1844), + [sym_val_variable] = STATE(1844), + [sym__var] = STATE(1799), + [sym_val_number] = STATE(109), + [sym_val_duration] = STATE(1844), + [sym_val_filesize] = STATE(1844), + [sym_val_binary] = STATE(1844), + [sym_val_string] = STATE(1844), + [sym__str_double_quotes] = STATE(1867), + [sym_val_interpolated] = STATE(1844), + [sym__inter_single_quotes] = STATE(1883), + [sym__inter_double_quotes] = STATE(1885), + [sym_val_list] = STATE(1844), + [sym_val_record] = STATE(1844), + [sym_val_table] = STATE(1844), + [sym_val_closure] = STATE(1844), + [sym__cmd_arg] = STATE(1914), + [sym_redirection] = STATE(1857), + [sym__flag] = STATE(1862), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1880), + [sym_comment] = STATE(896), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_LF] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_PIPE] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym_val_number_token1] = ACTIONS(1593), + [aux_sym_val_number_token2] = ACTIONS(1593), + [aux_sym_val_number_token3] = ACTIONS(1593), + [aux_sym_val_number_token4] = ACTIONS(1593), + [aux_sym_val_number_token5] = ACTIONS(1593), + [anon_sym_inf] = ACTIONS(1593), + [anon_sym_DASHinf] = ACTIONS(1593), + [anon_sym_NaN] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [sym_short_flag] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), + }, + [897] = { + [sym_val_record] = STATE(905), + [sym_comment] = STATE(897), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_alias] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_let_DASHenv] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [sym_cmd_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2037), + [anon_sym_def_DASHenv] = ACTIONS(2037), + [anon_sym_export_DASHenv] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_error] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_do] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_source] = ACTIONS(2037), + [anon_sym_source_DASHenv] = ACTIONS(2037), + [anon_sym_register] = ACTIONS(2037), + [anon_sym_hide] = ACTIONS(2037), + [anon_sym_hide_DASHenv] = ACTIONS(2037), + [anon_sym_overlay] = ACTIONS(2037), + [anon_sym_where] = ACTIONS(2037), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2037), + [sym_val_nothing] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [aux_sym_val_number_token1] = ACTIONS(2037), + [aux_sym_val_number_token2] = ACTIONS(2037), + [aux_sym_val_number_token3] = ACTIONS(2037), + [aux_sym_val_number_token4] = ACTIONS(2037), + [aux_sym_val_number_token5] = ACTIONS(2037), + [anon_sym_inf] = ACTIONS(2037), + [anon_sym_DASHinf] = ACTIONS(2037), + [anon_sym_NaN] = ACTIONS(2037), + [anon_sym_0b] = ACTIONS(2037), + [anon_sym_0o] = ACTIONS(2037), + [anon_sym_0x] = ACTIONS(2037), + [sym_val_date] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(3), + }, + [898] = { + [sym_comment] = STATE(898), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(3), + }, + [899] = { + [sym_val_record] = STATE(961), + [sym_comment] = STATE(899), + [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), + [anon_sym_SEMI] = ACTIONS(2041), + [sym_cmd_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_where] = ACTIONS(2041), + [anon_sym_not] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), + [sym_val_nothing] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2041), + [anon_sym_DASHinf] = ACTIONS(2041), + [anon_sym_NaN] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2041), + [anon_sym_0o] = ACTIONS(2041), + [anon_sym_0x] = ACTIONS(2041), + [sym_val_date] = 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_CARET] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(3), + }, + [900] = { + [sym_comment] = STATE(900), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(3), + }, + [901] = { + [sym_comment] = STATE(901), + [ts_builtin_sym_end] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_alias] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_let_DASHenv] = ACTIONS(1798), + [anon_sym_mut] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [sym_cmd_identifier] = ACTIONS(1798), + [anon_sym_LF] = ACTIONS(1800), + [anon_sym_def] = ACTIONS(1798), + [anon_sym_def_DASHenv] = ACTIONS(1798), + [anon_sym_export_DASHenv] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_module] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_error] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_try] = ACTIONS(1798), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_source] = ACTIONS(1798), + [anon_sym_source_DASHenv] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_hide] = ACTIONS(1798), + [anon_sym_hide_DASHenv] = ACTIONS(1798), + [anon_sym_overlay] = ACTIONS(1798), + [anon_sym_where] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [sym_val_nothing] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [aux_sym_val_number_token1] = ACTIONS(1798), + [aux_sym_val_number_token2] = ACTIONS(1798), + [aux_sym_val_number_token3] = ACTIONS(1798), + [aux_sym_val_number_token4] = ACTIONS(1798), + [aux_sym_val_number_token5] = ACTIONS(1798), + [anon_sym_inf] = ACTIONS(1798), + [anon_sym_DASHinf] = ACTIONS(1798), + [anon_sym_NaN] = ACTIONS(1798), + [anon_sym_0b] = ACTIONS(1798), + [anon_sym_0o] = ACTIONS(1798), + [anon_sym_0x] = ACTIONS(1798), + [sym_val_date] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(3), + }, + [902] = { + [sym_comment] = STATE(902), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [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_CARET] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + }, + [903] = { + [sym_comment] = STATE(903), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2051), + [sym_cmd_identifier] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_def_DASHenv] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_where] = ACTIONS(2051), + [anon_sym_not] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [sym_val_nothing] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [aux_sym_val_number_token1] = ACTIONS(2051), + [aux_sym_val_number_token2] = ACTIONS(2051), + [aux_sym_val_number_token3] = ACTIONS(2051), + [aux_sym_val_number_token4] = ACTIONS(2051), + [aux_sym_val_number_token5] = ACTIONS(2051), + [anon_sym_inf] = ACTIONS(2051), + [anon_sym_DASHinf] = ACTIONS(2051), + [anon_sym_NaN] = ACTIONS(2051), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + }, + [904] = { + [sym_comment] = STATE(904), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2057), + [sym_cmd_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_def_DASHenv] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_where] = ACTIONS(2055), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [sym_val_nothing] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [aux_sym_val_number_token1] = ACTIONS(2055), + [aux_sym_val_number_token2] = ACTIONS(2055), + [aux_sym_val_number_token3] = ACTIONS(2055), + [aux_sym_val_number_token4] = ACTIONS(2055), + [aux_sym_val_number_token5] = ACTIONS(2055), + [anon_sym_inf] = ACTIONS(2055), + [anon_sym_DASHinf] = ACTIONS(2055), + [anon_sym_NaN] = ACTIONS(2055), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(3), + }, + [905] = { + [sym_comment] = STATE(905), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_alias] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_let_DASHenv] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2065), + [sym_cmd_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_def] = ACTIONS(2065), + [anon_sym_def_DASHenv] = ACTIONS(2065), + [anon_sym_export_DASHenv] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_source] = ACTIONS(2065), + [anon_sym_source_DASHenv] = ACTIONS(2065), + [anon_sym_register] = ACTIONS(2065), + [anon_sym_hide] = ACTIONS(2065), + [anon_sym_hide_DASHenv] = ACTIONS(2065), + [anon_sym_overlay] = ACTIONS(2065), + [anon_sym_where] = ACTIONS(2065), + [anon_sym_not] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2065), + [sym_val_nothing] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym_val_number_token1] = ACTIONS(2065), + [aux_sym_val_number_token2] = ACTIONS(2065), + [aux_sym_val_number_token3] = ACTIONS(2065), + [aux_sym_val_number_token4] = ACTIONS(2065), + [aux_sym_val_number_token5] = ACTIONS(2065), + [anon_sym_inf] = ACTIONS(2065), + [anon_sym_DASHinf] = ACTIONS(2065), + [anon_sym_NaN] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2065), + [anon_sym_0o] = ACTIONS(2065), + [anon_sym_0x] = ACTIONS(2065), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(3), + }, + [906] = { + [sym_comment] = STATE(906), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_alias] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_let_DASHenv] = ACTIONS(1708), + [anon_sym_mut] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_cmd_identifier] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_def] = ACTIONS(1708), + [anon_sym_def_DASHenv] = ACTIONS(1708), + [anon_sym_export_DASHenv] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_error] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_source] = ACTIONS(1708), + [anon_sym_source_DASHenv] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_hide] = ACTIONS(1708), + [anon_sym_hide_DASHenv] = ACTIONS(1708), + [anon_sym_overlay] = ACTIONS(1708), + [anon_sym_where] = ACTIONS(1708), + [anon_sym_not] = ACTIONS(1708), + [anon_sym_DOT_DOT_LT] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1708), + [sym_val_nothing] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [aux_sym_val_number_token1] = ACTIONS(1708), + [aux_sym_val_number_token2] = ACTIONS(1708), + [aux_sym_val_number_token3] = ACTIONS(1708), + [aux_sym_val_number_token4] = ACTIONS(1708), + [aux_sym_val_number_token5] = ACTIONS(1708), + [anon_sym_inf] = ACTIONS(1708), + [anon_sym_DASHinf] = ACTIONS(1708), + [anon_sym_NaN] = ACTIONS(1708), + [anon_sym_0b] = ACTIONS(1708), + [anon_sym_0o] = ACTIONS(1708), + [anon_sym_0x] = ACTIONS(1708), + [sym_val_date] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__str_single_quotes] = ACTIONS(1708), + [sym__str_back_ticks] = ACTIONS(1708), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(3), + }, + [907] = { + [sym_comment] = STATE(907), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1716), + [anon_sym_alias] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_let_DASHenv] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [sym_cmd_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1716), + [anon_sym_def_DASHenv] = ACTIONS(1716), + [anon_sym_export_DASHenv] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_module] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_error] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_source] = ACTIONS(1716), + [anon_sym_source_DASHenv] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_hide] = ACTIONS(1716), + [anon_sym_hide_DASHenv] = ACTIONS(1716), + [anon_sym_overlay] = ACTIONS(1716), + [anon_sym_where] = ACTIONS(1716), + [anon_sym_not] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1716), + [sym_val_nothing] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [aux_sym_val_number_token1] = ACTIONS(1716), + [aux_sym_val_number_token2] = ACTIONS(1716), + [aux_sym_val_number_token3] = ACTIONS(1716), + [aux_sym_val_number_token4] = ACTIONS(1716), + [aux_sym_val_number_token5] = ACTIONS(1716), + [anon_sym_inf] = ACTIONS(1716), + [anon_sym_DASHinf] = ACTIONS(1716), + [anon_sym_NaN] = ACTIONS(1716), + [anon_sym_0b] = ACTIONS(1716), + [anon_sym_0o] = ACTIONS(1716), + [anon_sym_0x] = ACTIONS(1716), + [sym_val_date] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [sym__str_single_quotes] = ACTIONS(1716), + [sym__str_back_ticks] = ACTIONS(1716), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1716), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [908] = { + [sym_comment] = STATE(908), + [anon_sym_export] = ACTIONS(2069), + [anon_sym_alias] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_let_DASHenv] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [sym_cmd_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2069), + [anon_sym_def_DASHenv] = ACTIONS(2069), + [anon_sym_export_DASHenv] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_module] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_source] = ACTIONS(2069), + [anon_sym_source_DASHenv] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_hide] = ACTIONS(2069), + [anon_sym_hide_DASHenv] = ACTIONS(2069), + [anon_sym_overlay] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_not] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [sym_val_nothing] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = 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(2069), + [aux_sym_val_number_token5] = ACTIONS(2069), + [anon_sym_inf] = ACTIONS(2069), + [anon_sym_DASHinf] = ACTIONS(2069), + [anon_sym_NaN] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2069), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2069), + [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_CARET] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(3), + }, + [909] = { + [sym_comment] = STATE(909), + [anon_sym_export] = ACTIONS(2073), + [anon_sym_alias] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_let_DASHenv] = ACTIONS(2073), + [anon_sym_mut] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [sym_cmd_identifier] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_def] = ACTIONS(2073), + [anon_sym_def_DASHenv] = ACTIONS(2073), + [anon_sym_export_DASHenv] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_module] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_error] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_source] = ACTIONS(2073), + [anon_sym_source_DASHenv] = ACTIONS(2073), + [anon_sym_register] = ACTIONS(2073), + [anon_sym_hide] = ACTIONS(2073), + [anon_sym_hide_DASHenv] = ACTIONS(2073), + [anon_sym_overlay] = ACTIONS(2073), + [anon_sym_where] = ACTIONS(2073), + [anon_sym_not] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [sym_val_nothing] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = 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(2073), + [aux_sym_val_number_token5] = ACTIONS(2073), + [anon_sym_inf] = ACTIONS(2073), + [anon_sym_DASHinf] = ACTIONS(2073), + [anon_sym_NaN] = ACTIONS(2073), + [anon_sym_0b] = ACTIONS(2073), + [anon_sym_0o] = ACTIONS(2073), + [anon_sym_0x] = ACTIONS(2073), + [sym_val_date] = ACTIONS(2073), + [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_CARET] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), + }, + [910] = { + [sym_comment] = STATE(910), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1720), + [anon_sym_alias] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_let_DASHenv] = ACTIONS(1720), + [anon_sym_mut] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [sym_cmd_identifier] = ACTIONS(1720), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_def] = ACTIONS(1720), + [anon_sym_def_DASHenv] = ACTIONS(1720), + [anon_sym_export_DASHenv] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_module] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_error] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_source] = ACTIONS(1720), + [anon_sym_source_DASHenv] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_hide] = ACTIONS(1720), + [anon_sym_hide_DASHenv] = ACTIONS(1720), + [anon_sym_overlay] = ACTIONS(1720), + [anon_sym_where] = ACTIONS(1720), + [anon_sym_not] = ACTIONS(1720), + [anon_sym_DOT_DOT_LT] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1720), + [sym_val_nothing] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_val_number_token1] = ACTIONS(1720), + [aux_sym_val_number_token2] = ACTIONS(1720), + [aux_sym_val_number_token3] = ACTIONS(1720), + [aux_sym_val_number_token4] = ACTIONS(1720), + [aux_sym_val_number_token5] = ACTIONS(1720), + [anon_sym_inf] = ACTIONS(1720), + [anon_sym_DASHinf] = ACTIONS(1720), + [anon_sym_NaN] = ACTIONS(1720), + [anon_sym_0b] = ACTIONS(1720), + [anon_sym_0o] = ACTIONS(1720), + [anon_sym_0x] = ACTIONS(1720), + [sym_val_date] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [sym__str_single_quotes] = ACTIONS(1720), + [sym__str_back_ticks] = ACTIONS(1720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(3), + }, + [911] = { + [sym_comment] = STATE(911), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [sym_cmd_identifier] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_def_DASHenv] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_not] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [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_CARET] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + }, + [912] = { + [sym_comment] = STATE(912), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_alias] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_let_DASHenv] = ACTIONS(2077), + [anon_sym_mut] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [sym_cmd_identifier] = ACTIONS(2077), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2077), + [anon_sym_def_DASHenv] = ACTIONS(2077), + [anon_sym_export_DASHenv] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_error] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_source] = ACTIONS(2077), + [anon_sym_source_DASHenv] = ACTIONS(2077), + [anon_sym_register] = ACTIONS(2077), + [anon_sym_hide] = ACTIONS(2077), + [anon_sym_hide_DASHenv] = ACTIONS(2077), + [anon_sym_overlay] = ACTIONS(2077), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_not] = ACTIONS(2077), + [anon_sym_DOT_DOT_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), + [sym_val_nothing] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = 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(2077), + [aux_sym_val_number_token5] = ACTIONS(2077), + [anon_sym_inf] = ACTIONS(2077), + [anon_sym_DASHinf] = ACTIONS(2077), + [anon_sym_NaN] = ACTIONS(2077), + [anon_sym_0b] = ACTIONS(2077), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(2077), + [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_CARET] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(3), + }, + [913] = { + [sym_comment] = STATE(913), + [anon_sym_export] = ACTIONS(2081), + [anon_sym_alias] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_let_DASHenv] = ACTIONS(2081), + [anon_sym_mut] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2081), + [sym_cmd_identifier] = ACTIONS(2081), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2081), + [anon_sym_def_DASHenv] = ACTIONS(2081), + [anon_sym_export_DASHenv] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_module] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_source] = ACTIONS(2081), + [anon_sym_source_DASHenv] = ACTIONS(2081), + [anon_sym_register] = ACTIONS(2081), + [anon_sym_hide] = ACTIONS(2081), + [anon_sym_hide_DASHenv] = ACTIONS(2081), + [anon_sym_overlay] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_not] = ACTIONS(2081), + [anon_sym_DOT_DOT_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), + [sym_val_nothing] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = 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(2081), + [aux_sym_val_number_token5] = ACTIONS(2081), + [anon_sym_inf] = ACTIONS(2081), + [anon_sym_DASHinf] = ACTIONS(2081), + [anon_sym_NaN] = ACTIONS(2081), + [anon_sym_0b] = ACTIONS(2081), + [anon_sym_0o] = ACTIONS(2081), + [anon_sym_0x] = ACTIONS(2081), + [sym_val_date] = ACTIONS(2081), + [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_CARET] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(3), + }, + [914] = { + [sym_comment] = STATE(914), + [ts_builtin_sym_end] = ACTIONS(1075), + [anon_sym_export] = ACTIONS(1073), + [anon_sym_alias] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_let_DASHenv] = ACTIONS(1073), + [anon_sym_mut] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(1073), + [sym_cmd_identifier] = ACTIONS(1073), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_def] = ACTIONS(1073), + [anon_sym_def_DASHenv] = ACTIONS(1073), + [anon_sym_export_DASHenv] = ACTIONS(1073), + [anon_sym_extern] = ACTIONS(1073), + [anon_sym_module] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_error] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_loop] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_source] = ACTIONS(1073), + [anon_sym_source_DASHenv] = ACTIONS(1073), + [anon_sym_register] = ACTIONS(1073), + [anon_sym_hide] = ACTIONS(1073), + [anon_sym_hide_DASHenv] = ACTIONS(1073), + [anon_sym_overlay] = ACTIONS(1073), + [anon_sym_where] = ACTIONS(1073), + [anon_sym_not] = ACTIONS(1073), + [anon_sym_DOT_DOT_LT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [sym_val_nothing] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [aux_sym_val_number_token1] = ACTIONS(1073), + [aux_sym_val_number_token2] = ACTIONS(1073), + [aux_sym_val_number_token3] = ACTIONS(1073), + [aux_sym_val_number_token4] = ACTIONS(1073), + [aux_sym_val_number_token5] = ACTIONS(1073), + [anon_sym_inf] = ACTIONS(1073), + [anon_sym_DASHinf] = ACTIONS(1073), + [anon_sym_NaN] = ACTIONS(1073), + [anon_sym_0b] = ACTIONS(1073), + [anon_sym_0o] = ACTIONS(1073), + [anon_sym_0x] = ACTIONS(1073), + [sym_val_date] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym__str_single_quotes] = ACTIONS(1073), + [sym__str_back_ticks] = ACTIONS(1073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(3), + }, + [915] = { + [sym_comment] = STATE(915), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_alias] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_let_DASHenv] = ACTIONS(2085), + [anon_sym_mut] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [sym_cmd_identifier] = ACTIONS(2085), + [anon_sym_LF] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2085), + [anon_sym_def_DASHenv] = ACTIONS(2085), + [anon_sym_export_DASHenv] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_module] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_source] = ACTIONS(2085), + [anon_sym_source_DASHenv] = ACTIONS(2085), + [anon_sym_register] = ACTIONS(2085), + [anon_sym_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_where] = ACTIONS(2085), + [anon_sym_not] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [sym_val_nothing] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [aux_sym_val_number_token1] = ACTIONS(2085), + [aux_sym_val_number_token2] = ACTIONS(2085), + [aux_sym_val_number_token3] = ACTIONS(2085), + [aux_sym_val_number_token4] = ACTIONS(2085), + [aux_sym_val_number_token5] = ACTIONS(2085), + [anon_sym_inf] = ACTIONS(2085), + [anon_sym_DASHinf] = ACTIONS(2085), + [anon_sym_NaN] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + }, + [916] = { + [sym_comment] = STATE(916), + [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), + [anon_sym_SEMI] = ACTIONS(2089), + [sym_cmd_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2089), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_source] = ACTIONS(2089), + [anon_sym_source_DASHenv] = ACTIONS(2089), + [anon_sym_register] = ACTIONS(2089), + [anon_sym_hide] = ACTIONS(2089), + [anon_sym_hide_DASHenv] = ACTIONS(2089), + [anon_sym_overlay] = ACTIONS(2089), + [anon_sym_where] = ACTIONS(2089), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [sym_val_nothing] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2089), + [anon_sym_DASHinf] = ACTIONS(2089), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(3), + }, + [917] = { + [sym_comment] = STATE(917), + [anon_sym_export] = ACTIONS(2093), + [anon_sym_alias] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_let_DASHenv] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2093), + [sym_cmd_identifier] = ACTIONS(2093), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2093), + [anon_sym_def_DASHenv] = ACTIONS(2093), + [anon_sym_export_DASHenv] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_module] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2093), + [anon_sym_error] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_source] = ACTIONS(2093), + [anon_sym_source_DASHenv] = ACTIONS(2093), + [anon_sym_register] = ACTIONS(2093), + [anon_sym_hide] = ACTIONS(2093), + [anon_sym_hide_DASHenv] = ACTIONS(2093), + [anon_sym_overlay] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_not] = ACTIONS(2093), + [anon_sym_DOT_DOT_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2093), + [sym_val_nothing] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [aux_sym_val_number_token1] = ACTIONS(2093), + [aux_sym_val_number_token2] = ACTIONS(2093), + [aux_sym_val_number_token3] = ACTIONS(2093), + [aux_sym_val_number_token4] = ACTIONS(2093), + [aux_sym_val_number_token5] = ACTIONS(2093), + [anon_sym_inf] = ACTIONS(2093), + [anon_sym_DASHinf] = ACTIONS(2093), + [anon_sym_NaN] = ACTIONS(2093), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2093), + [anon_sym_0x] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2093), + [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_CARET] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(3), + }, + [918] = { + [sym_comment] = STATE(918), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(3), + }, + [919] = { + [sym_val_record] = STATE(1024), + [sym_comment] = STATE(919), + [ts_builtin_sym_end] = ACTIONS(2043), + [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), + [anon_sym_SEMI] = ACTIONS(2041), + [sym_cmd_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_where] = ACTIONS(2041), + [anon_sym_not] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), + [sym_val_nothing] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2041), + [anon_sym_DASHinf] = ACTIONS(2041), + [anon_sym_NaN] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2041), + [anon_sym_0o] = ACTIONS(2041), + [anon_sym_0x] = ACTIONS(2041), + [sym_val_date] = 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_CARET] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(3), + }, + [920] = { + [sym_comment] = STATE(920), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [sym_cmd_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_def_DASHenv] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [sym_val_nothing] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [aux_sym_val_number_token1] = ACTIONS(2097), + [aux_sym_val_number_token2] = ACTIONS(2097), + [aux_sym_val_number_token3] = ACTIONS(2097), + [aux_sym_val_number_token4] = ACTIONS(2097), + [aux_sym_val_number_token5] = ACTIONS(2097), + [anon_sym_inf] = ACTIONS(2097), + [anon_sym_DASHinf] = ACTIONS(2097), + [anon_sym_NaN] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(3), + }, + [921] = { + [sym_comment] = STATE(921), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(3), + }, + [922] = { + [sym_comment] = STATE(922), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [sym_cmd_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_def_DASHenv] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [sym_val_nothing] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [aux_sym_val_number_token1] = ACTIONS(2097), + [aux_sym_val_number_token2] = ACTIONS(2097), + [aux_sym_val_number_token3] = ACTIONS(2097), + [aux_sym_val_number_token4] = ACTIONS(2097), + [aux_sym_val_number_token5] = ACTIONS(2097), + [anon_sym_inf] = ACTIONS(2097), + [anon_sym_DASHinf] = ACTIONS(2097), + [anon_sym_NaN] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(3), + }, + [923] = { + [sym_comment] = STATE(923), + [ts_builtin_sym_end] = ACTIONS(1969), + [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), + [anon_sym_SEMI] = ACTIONS(1967), + [sym_cmd_identifier] = ACTIONS(1967), + [anon_sym_LF] = ACTIONS(1969), + [anon_sym_def] = ACTIONS(1967), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_error] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_loop] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_source] = ACTIONS(1967), + [anon_sym_source_DASHenv] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_hide] = ACTIONS(1967), + [anon_sym_hide_DASHenv] = ACTIONS(1967), + [anon_sym_overlay] = ACTIONS(1967), + [anon_sym_where] = ACTIONS(1967), + [anon_sym_not] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [sym_val_nothing] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1967), + [anon_sym_DASHinf] = ACTIONS(1967), + [anon_sym_NaN] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1967), + [anon_sym_0o] = ACTIONS(1967), + [anon_sym_0x] = ACTIONS(1967), + [sym_val_date] = 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_CARET] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(3), + }, + [924] = { + [sym_val_record] = STATE(1030), + [sym_comment] = STATE(924), + [ts_builtin_sym_end] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_alias] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_let_DASHenv] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [sym_cmd_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2037), + [anon_sym_def_DASHenv] = ACTIONS(2037), + [anon_sym_export_DASHenv] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_error] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_do] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_source] = ACTIONS(2037), + [anon_sym_source_DASHenv] = ACTIONS(2037), + [anon_sym_register] = ACTIONS(2037), + [anon_sym_hide] = ACTIONS(2037), + [anon_sym_hide_DASHenv] = ACTIONS(2037), + [anon_sym_overlay] = ACTIONS(2037), + [anon_sym_where] = ACTIONS(2037), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2037), + [sym_val_nothing] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [aux_sym_val_number_token1] = ACTIONS(2037), + [aux_sym_val_number_token2] = ACTIONS(2037), + [aux_sym_val_number_token3] = ACTIONS(2037), + [aux_sym_val_number_token4] = ACTIONS(2037), + [aux_sym_val_number_token5] = ACTIONS(2037), + [anon_sym_inf] = ACTIONS(2037), + [anon_sym_DASHinf] = ACTIONS(2037), + [anon_sym_NaN] = ACTIONS(2037), + [anon_sym_0b] = ACTIONS(2037), + [anon_sym_0o] = ACTIONS(2037), + [anon_sym_0x] = ACTIONS(2037), + [sym_val_date] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(3), + }, + [925] = { + [sym_comment] = STATE(925), + [anon_sym_export] = ACTIONS(2101), + [anon_sym_alias] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_let_DASHenv] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2101), + [sym_cmd_identifier] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2103), + [anon_sym_def] = ACTIONS(2101), + [anon_sym_def_DASHenv] = ACTIONS(2101), + [anon_sym_export_DASHenv] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_module] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2101), + [anon_sym_error] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_source] = ACTIONS(2101), + [anon_sym_source_DASHenv] = ACTIONS(2101), + [anon_sym_register] = ACTIONS(2101), + [anon_sym_hide] = ACTIONS(2101), + [anon_sym_hide_DASHenv] = ACTIONS(2101), + [anon_sym_overlay] = ACTIONS(2101), + [anon_sym_where] = ACTIONS(2101), + [anon_sym_not] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [sym_val_nothing] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [aux_sym_val_number_token1] = ACTIONS(2101), + [aux_sym_val_number_token2] = ACTIONS(2101), + [aux_sym_val_number_token3] = ACTIONS(2101), + [aux_sym_val_number_token4] = ACTIONS(2101), + [aux_sym_val_number_token5] = ACTIONS(2101), + [anon_sym_inf] = ACTIONS(2101), + [anon_sym_DASHinf] = ACTIONS(2101), + [anon_sym_NaN] = ACTIONS(2101), + [anon_sym_0b] = ACTIONS(2101), + [anon_sym_0o] = ACTIONS(2101), + [anon_sym_0x] = ACTIONS(2101), + [sym_val_date] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(3), + }, + [926] = { + [sym_comment] = STATE(926), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [sym_cmd_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2107), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_def_DASHenv] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_where] = ACTIONS(2105), + [anon_sym_not] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [sym_val_nothing] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [aux_sym_val_number_token1] = ACTIONS(2105), + [aux_sym_val_number_token2] = ACTIONS(2105), + [aux_sym_val_number_token3] = ACTIONS(2105), + [aux_sym_val_number_token4] = ACTIONS(2105), + [aux_sym_val_number_token5] = ACTIONS(2105), + [anon_sym_inf] = ACTIONS(2105), + [anon_sym_DASHinf] = ACTIONS(2105), + [anon_sym_NaN] = ACTIONS(2105), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [sym__str_single_quotes] = ACTIONS(2105), + [sym__str_back_ticks] = ACTIONS(2105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(3), + }, + [927] = { + [sym_comment] = STATE(927), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_alias] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_let_DASHenv] = ACTIONS(2109), + [anon_sym_mut] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [sym_cmd_identifier] = ACTIONS(2109), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2109), + [anon_sym_def_DASHenv] = ACTIONS(2109), + [anon_sym_export_DASHenv] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_error] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_source] = ACTIONS(2109), + [anon_sym_source_DASHenv] = ACTIONS(2109), + [anon_sym_register] = ACTIONS(2109), + [anon_sym_hide] = ACTIONS(2109), + [anon_sym_hide_DASHenv] = ACTIONS(2109), + [anon_sym_overlay] = ACTIONS(2109), + [anon_sym_where] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2109), + [anon_sym_DOT_DOT_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), + [sym_val_nothing] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [aux_sym_val_number_token1] = ACTIONS(2109), + [aux_sym_val_number_token2] = ACTIONS(2109), + [aux_sym_val_number_token3] = ACTIONS(2109), + [aux_sym_val_number_token4] = ACTIONS(2109), + [aux_sym_val_number_token5] = ACTIONS(2109), + [anon_sym_inf] = ACTIONS(2109), + [anon_sym_DASHinf] = ACTIONS(2109), + [anon_sym_NaN] = ACTIONS(2109), + [anon_sym_0b] = ACTIONS(2109), + [anon_sym_0o] = ACTIONS(2109), + [anon_sym_0x] = ACTIONS(2109), + [sym_val_date] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [sym__str_single_quotes] = ACTIONS(2109), + [sym__str_back_ticks] = ACTIONS(2109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [928] = { + [sym_comment] = STATE(928), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_alias] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_let_DASHenv] = ACTIONS(2109), + [anon_sym_mut] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [sym_cmd_identifier] = ACTIONS(2109), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2109), + [anon_sym_def_DASHenv] = ACTIONS(2109), + [anon_sym_export_DASHenv] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_error] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_source] = ACTIONS(2109), + [anon_sym_source_DASHenv] = ACTIONS(2109), + [anon_sym_register] = ACTIONS(2109), + [anon_sym_hide] = ACTIONS(2109), + [anon_sym_hide_DASHenv] = ACTIONS(2109), + [anon_sym_overlay] = ACTIONS(2109), + [anon_sym_where] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2109), + [anon_sym_DOT_DOT_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), + [sym_val_nothing] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [aux_sym_val_number_token1] = ACTIONS(2109), + [aux_sym_val_number_token2] = ACTIONS(2109), + [aux_sym_val_number_token3] = ACTIONS(2109), + [aux_sym_val_number_token4] = ACTIONS(2109), + [aux_sym_val_number_token5] = ACTIONS(2109), + [anon_sym_inf] = ACTIONS(2109), + [anon_sym_DASHinf] = ACTIONS(2109), + [anon_sym_NaN] = ACTIONS(2109), + [anon_sym_0b] = ACTIONS(2109), + [anon_sym_0o] = ACTIONS(2109), + [anon_sym_0x] = ACTIONS(2109), + [sym_val_date] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [sym__str_single_quotes] = ACTIONS(2109), + [sym__str_back_ticks] = ACTIONS(2109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [929] = { + [sym_comment] = STATE(929), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2113), + [sym_cmd_identifier] = ACTIONS(2113), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_def_DASHenv] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_RPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_where] = ACTIONS(2113), + [anon_sym_not] = ACTIONS(2113), + [anon_sym_DOT_DOT_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), + [sym_val_nothing] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [aux_sym_val_number_token1] = ACTIONS(2113), + [aux_sym_val_number_token2] = ACTIONS(2113), + [aux_sym_val_number_token3] = ACTIONS(2113), + [aux_sym_val_number_token4] = ACTIONS(2113), + [aux_sym_val_number_token5] = ACTIONS(2113), + [anon_sym_inf] = ACTIONS(2113), + [anon_sym_DASHinf] = ACTIONS(2113), + [anon_sym_NaN] = ACTIONS(2113), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [sym__str_single_quotes] = ACTIONS(2113), + [sym__str_back_ticks] = ACTIONS(2113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2113), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(3), + }, + [930] = { + [sym_comment] = STATE(930), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_alias] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_let_DASHenv] = ACTIONS(2117), + [anon_sym_mut] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2117), + [sym_cmd_identifier] = ACTIONS(2117), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_def_DASHenv] = ACTIONS(2117), + [anon_sym_export_DASHenv] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2117), + [anon_sym_DOLLAR] = ACTIONS(2117), + [anon_sym_error] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_source] = ACTIONS(2117), + [anon_sym_source_DASHenv] = ACTIONS(2117), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_hide] = ACTIONS(2117), + [anon_sym_hide_DASHenv] = ACTIONS(2117), + [anon_sym_overlay] = ACTIONS(2117), + [anon_sym_where] = ACTIONS(2117), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_DOT_DOT_LT] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), + [sym_val_nothing] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [aux_sym_val_number_token1] = ACTIONS(2117), + [aux_sym_val_number_token2] = ACTIONS(2117), + [aux_sym_val_number_token3] = ACTIONS(2117), + [aux_sym_val_number_token4] = ACTIONS(2117), + [aux_sym_val_number_token5] = ACTIONS(2117), + [anon_sym_inf] = ACTIONS(2117), + [anon_sym_DASHinf] = ACTIONS(2117), + [anon_sym_NaN] = ACTIONS(2117), + [anon_sym_0b] = ACTIONS(2117), + [anon_sym_0o] = ACTIONS(2117), + [anon_sym_0x] = ACTIONS(2117), + [sym_val_date] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), + [sym__str_single_quotes] = ACTIONS(2117), + [sym__str_back_ticks] = ACTIONS(2117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(3), + }, + [931] = { + [sym__terminator] = STATE(930), + [sym_comment] = STATE(931), + [aux_sym__block_body_repeat1] = STATE(825), + [anon_sym_export] = ACTIONS(2121), + [anon_sym_alias] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_let_DASHenv] = ACTIONS(2121), + [anon_sym_mut] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [sym_cmd_identifier] = ACTIONS(2121), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2121), + [anon_sym_def_DASHenv] = ACTIONS(2121), + [anon_sym_export_DASHenv] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2121), + [anon_sym_error] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_loop] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_source] = ACTIONS(2121), + [anon_sym_source_DASHenv] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_hide] = ACTIONS(2121), + [anon_sym_hide_DASHenv] = ACTIONS(2121), + [anon_sym_overlay] = ACTIONS(2121), + [anon_sym_where] = ACTIONS(2121), + [anon_sym_not] = ACTIONS(2121), + [anon_sym_DOT_DOT_LT] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2121), + [sym_val_nothing] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [aux_sym_val_number_token1] = ACTIONS(2121), + [aux_sym_val_number_token2] = ACTIONS(2121), + [aux_sym_val_number_token3] = ACTIONS(2121), + [aux_sym_val_number_token4] = ACTIONS(2121), + [aux_sym_val_number_token5] = ACTIONS(2121), + [anon_sym_inf] = ACTIONS(2121), + [anon_sym_DASHinf] = ACTIONS(2121), + [anon_sym_NaN] = ACTIONS(2121), + [anon_sym_0b] = ACTIONS(2121), + [anon_sym_0o] = ACTIONS(2121), + [anon_sym_0x] = ACTIONS(2121), + [sym_val_date] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_CARET] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(3), + }, + [932] = { + [sym_comment] = STATE(932), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [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_CARET] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + }, + [933] = { + [sym_comment] = STATE(933), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [sym_cmd_identifier] = ACTIONS(1014), + [anon_sym_LF] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_def_DASHenv] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_not] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [sym_val_nothing] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [aux_sym_val_number_token1] = ACTIONS(1014), + [aux_sym_val_number_token2] = ACTIONS(1014), + [aux_sym_val_number_token3] = ACTIONS(1014), + [aux_sym_val_number_token4] = ACTIONS(1014), + [aux_sym_val_number_token5] = ACTIONS(1014), + [anon_sym_inf] = ACTIONS(1014), + [anon_sym_DASHinf] = ACTIONS(1014), + [anon_sym_NaN] = ACTIONS(1014), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(3), + }, + [934] = { + [sym_comment] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [sym_cmd_identifier] = ACTIONS(1532), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_def_DASHenv] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1532), + [anon_sym_not] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [sym_val_nothing] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym_val_number_token1] = ACTIONS(1532), + [aux_sym_val_number_token2] = ACTIONS(1532), + [aux_sym_val_number_token3] = ACTIONS(1532), + [aux_sym_val_number_token4] = ACTIONS(1532), + [aux_sym_val_number_token5] = ACTIONS(1532), + [anon_sym_inf] = ACTIONS(1532), + [anon_sym_DASHinf] = ACTIONS(1532), + [anon_sym_NaN] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [935] = { + [sym_comment] = STATE(935), + [anon_sym_export] = ACTIONS(2127), + [anon_sym_alias] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_let_DASHenv] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [sym_cmd_identifier] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2129), + [anon_sym_def] = ACTIONS(2127), + [anon_sym_def_DASHenv] = ACTIONS(2127), + [anon_sym_export_DASHenv] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_module] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2127), + [anon_sym_error] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_do] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_source] = ACTIONS(2127), + [anon_sym_source_DASHenv] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2127), + [anon_sym_hide] = ACTIONS(2127), + [anon_sym_hide_DASHenv] = ACTIONS(2127), + [anon_sym_overlay] = ACTIONS(2127), + [anon_sym_where] = ACTIONS(2127), + [anon_sym_not] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [sym_val_nothing] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [aux_sym_val_number_token1] = ACTIONS(2127), + [aux_sym_val_number_token2] = ACTIONS(2127), + [aux_sym_val_number_token3] = ACTIONS(2127), + [aux_sym_val_number_token4] = ACTIONS(2127), + [aux_sym_val_number_token5] = ACTIONS(2127), + [anon_sym_inf] = ACTIONS(2127), + [anon_sym_DASHinf] = ACTIONS(2127), + [anon_sym_NaN] = ACTIONS(2127), + [anon_sym_0b] = ACTIONS(2127), + [anon_sym_0o] = ACTIONS(2127), + [anon_sym_0x] = ACTIONS(2127), + [sym_val_date] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(3), + }, + [936] = { + [sym_comment] = STATE(936), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [sym_cmd_identifier] = ACTIONS(2131), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_def_DASHenv] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_where] = ACTIONS(2131), + [anon_sym_not] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [sym_val_nothing] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [aux_sym_val_number_token1] = ACTIONS(2131), + [aux_sym_val_number_token2] = ACTIONS(2131), + [aux_sym_val_number_token3] = ACTIONS(2131), + [aux_sym_val_number_token4] = ACTIONS(2131), + [aux_sym_val_number_token5] = ACTIONS(2131), + [anon_sym_inf] = ACTIONS(2131), + [anon_sym_DASHinf] = ACTIONS(2131), + [anon_sym_NaN] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), + }, + [937] = { + [sym_comment] = STATE(937), + [anon_sym_export] = ACTIONS(2135), + [anon_sym_alias] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_let_DASHenv] = ACTIONS(2135), + [anon_sym_mut] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [sym_cmd_identifier] = ACTIONS(2135), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_def_DASHenv] = ACTIONS(2135), + [anon_sym_export_DASHenv] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_module] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_do] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_source] = ACTIONS(2135), + [anon_sym_source_DASHenv] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2135), + [anon_sym_hide] = ACTIONS(2135), + [anon_sym_hide_DASHenv] = ACTIONS(2135), + [anon_sym_overlay] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), + [sym_val_nothing] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [aux_sym_val_number_token1] = ACTIONS(2135), + [aux_sym_val_number_token2] = ACTIONS(2135), + [aux_sym_val_number_token3] = ACTIONS(2135), + [aux_sym_val_number_token4] = ACTIONS(2135), + [aux_sym_val_number_token5] = ACTIONS(2135), + [anon_sym_inf] = ACTIONS(2135), + [anon_sym_DASHinf] = ACTIONS(2135), + [anon_sym_NaN] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2135), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(3), + }, + [938] = { + [sym_comment] = STATE(938), + [anon_sym_export] = ACTIONS(2135), + [anon_sym_alias] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_let_DASHenv] = ACTIONS(2135), + [anon_sym_mut] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [sym_cmd_identifier] = ACTIONS(2135), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_def_DASHenv] = ACTIONS(2135), + [anon_sym_export_DASHenv] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_module] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_do] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_source] = ACTIONS(2135), + [anon_sym_source_DASHenv] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2135), + [anon_sym_hide] = ACTIONS(2135), + [anon_sym_hide_DASHenv] = ACTIONS(2135), + [anon_sym_overlay] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), + [sym_val_nothing] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [aux_sym_val_number_token1] = ACTIONS(2135), + [aux_sym_val_number_token2] = ACTIONS(2135), + [aux_sym_val_number_token3] = ACTIONS(2135), + [aux_sym_val_number_token4] = ACTIONS(2135), + [aux_sym_val_number_token5] = ACTIONS(2135), + [anon_sym_inf] = ACTIONS(2135), + [anon_sym_DASHinf] = ACTIONS(2135), + [anon_sym_NaN] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2135), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(3), + }, + [939] = { + [sym_comment] = STATE(939), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_alias] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_let_DASHenv] = ACTIONS(2139), + [anon_sym_mut] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [sym_cmd_identifier] = ACTIONS(2139), + [anon_sym_LF] = ACTIONS(2141), + [anon_sym_def] = ACTIONS(2139), + [anon_sym_def_DASHenv] = ACTIONS(2139), + [anon_sym_export_DASHenv] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_error] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_source] = ACTIONS(2139), + [anon_sym_source_DASHenv] = ACTIONS(2139), + [anon_sym_register] = ACTIONS(2139), + [anon_sym_hide] = ACTIONS(2139), + [anon_sym_hide_DASHenv] = ACTIONS(2139), + [anon_sym_overlay] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2139), + [sym_val_nothing] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [aux_sym_val_number_token1] = ACTIONS(2139), + [aux_sym_val_number_token2] = ACTIONS(2139), + [aux_sym_val_number_token3] = ACTIONS(2139), + [aux_sym_val_number_token4] = ACTIONS(2139), + [aux_sym_val_number_token5] = ACTIONS(2139), + [anon_sym_inf] = ACTIONS(2139), + [anon_sym_DASHinf] = ACTIONS(2139), + [anon_sym_NaN] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2139), + [anon_sym_0o] = ACTIONS(2139), + [anon_sym_0x] = ACTIONS(2139), + [sym_val_date] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2139), + [sym__str_back_ticks] = ACTIONS(2139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(3), + }, + [940] = { + [sym_comment] = STATE(940), + [anon_sym_export] = ACTIONS(2143), + [anon_sym_alias] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_let_DASHenv] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [sym_cmd_identifier] = ACTIONS(2143), + [anon_sym_LF] = ACTIONS(2145), + [anon_sym_def] = ACTIONS(2143), + [anon_sym_def_DASHenv] = ACTIONS(2143), + [anon_sym_export_DASHenv] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_module] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2143), + [anon_sym_error] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_do] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_source] = ACTIONS(2143), + [anon_sym_source_DASHenv] = ACTIONS(2143), + [anon_sym_register] = ACTIONS(2143), + [anon_sym_hide] = ACTIONS(2143), + [anon_sym_hide_DASHenv] = ACTIONS(2143), + [anon_sym_overlay] = ACTIONS(2143), + [anon_sym_where] = ACTIONS(2143), + [anon_sym_not] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), + [sym_val_nothing] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [aux_sym_val_number_token1] = ACTIONS(2143), + [aux_sym_val_number_token2] = ACTIONS(2143), + [aux_sym_val_number_token3] = ACTIONS(2143), + [aux_sym_val_number_token4] = ACTIONS(2143), + [aux_sym_val_number_token5] = ACTIONS(2143), + [anon_sym_inf] = ACTIONS(2143), + [anon_sym_DASHinf] = ACTIONS(2143), + [anon_sym_NaN] = ACTIONS(2143), + [anon_sym_0b] = ACTIONS(2143), + [anon_sym_0o] = ACTIONS(2143), + [anon_sym_0x] = ACTIONS(2143), + [sym_val_date] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [sym__str_single_quotes] = ACTIONS(2143), + [sym__str_back_ticks] = ACTIONS(2143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(3), + }, + [941] = { + [sym__terminator] = STATE(930), + [sym_comment] = STATE(941), + [aux_sym__block_body_repeat1] = STATE(931), + [anon_sym_export] = ACTIONS(2147), + [anon_sym_alias] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_let_DASHenv] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2123), + [sym_cmd_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2147), + [anon_sym_def_DASHenv] = ACTIONS(2147), + [anon_sym_export_DASHenv] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_error] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_do] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_source] = ACTIONS(2147), + [anon_sym_source_DASHenv] = ACTIONS(2147), + [anon_sym_register] = ACTIONS(2147), + [anon_sym_hide] = ACTIONS(2147), + [anon_sym_hide_DASHenv] = ACTIONS(2147), + [anon_sym_overlay] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_not] = ACTIONS(2147), + [anon_sym_DOT_DOT_LT] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2147), + [sym_val_nothing] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [aux_sym_val_number_token1] = ACTIONS(2147), + [aux_sym_val_number_token2] = ACTIONS(2147), + [aux_sym_val_number_token3] = ACTIONS(2147), + [aux_sym_val_number_token4] = ACTIONS(2147), + [aux_sym_val_number_token5] = ACTIONS(2147), + [anon_sym_inf] = ACTIONS(2147), + [anon_sym_DASHinf] = ACTIONS(2147), + [anon_sym_NaN] = ACTIONS(2147), + [anon_sym_0b] = ACTIONS(2147), + [anon_sym_0o] = ACTIONS(2147), + [anon_sym_0x] = ACTIONS(2147), + [sym_val_date] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [sym__str_single_quotes] = ACTIONS(2147), + [sym__str_back_ticks] = ACTIONS(2147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(3), + }, + [942] = { + [sym_comment] = STATE(942), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_alias] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_let_DASHenv] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [sym_cmd_identifier] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2149), + [anon_sym_def_DASHenv] = ACTIONS(2149), + [anon_sym_export_DASHenv] = ACTIONS(2149), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_error] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_source] = ACTIONS(2149), + [anon_sym_source_DASHenv] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2149), + [anon_sym_hide] = ACTIONS(2149), + [anon_sym_hide_DASHenv] = ACTIONS(2149), + [anon_sym_overlay] = ACTIONS(2149), + [anon_sym_where] = ACTIONS(2149), + [anon_sym_not] = ACTIONS(2149), + [anon_sym_DOT_DOT_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2149), + [sym_val_nothing] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [aux_sym_val_number_token1] = ACTIONS(2149), + [aux_sym_val_number_token2] = ACTIONS(2149), + [aux_sym_val_number_token3] = ACTIONS(2149), + [aux_sym_val_number_token4] = ACTIONS(2149), + [aux_sym_val_number_token5] = ACTIONS(2149), + [anon_sym_inf] = ACTIONS(2149), + [anon_sym_DASHinf] = ACTIONS(2149), + [anon_sym_NaN] = ACTIONS(2149), + [anon_sym_0b] = ACTIONS(2149), + [anon_sym_0o] = ACTIONS(2149), + [anon_sym_0x] = ACTIONS(2149), + [sym_val_date] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [sym__str_single_quotes] = ACTIONS(2149), + [sym__str_back_ticks] = ACTIONS(2149), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(3), + }, + [943] = { + [sym_comment] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2005), + [sym_cmd_identifier] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_def_DASHenv] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_where] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2005), + [anon_sym_DOT_DOT_LT] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), + [sym_val_nothing] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [aux_sym_val_number_token1] = ACTIONS(2005), + [aux_sym_val_number_token2] = ACTIONS(2005), + [aux_sym_val_number_token3] = ACTIONS(2005), + [aux_sym_val_number_token4] = ACTIONS(2005), + [aux_sym_val_number_token5] = ACTIONS(2005), + [anon_sym_inf] = ACTIONS(2005), + [anon_sym_DASHinf] = ACTIONS(2005), + [anon_sym_NaN] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(3), + }, + [944] = { + [sym_comment] = STATE(944), + [anon_sym_export] = ACTIONS(2153), + [anon_sym_alias] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_let_DASHenv] = ACTIONS(2153), + [anon_sym_mut] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2153), + [sym_cmd_identifier] = ACTIONS(2153), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2153), + [anon_sym_def_DASHenv] = ACTIONS(2153), + [anon_sym_export_DASHenv] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym_module] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_RPAREN] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_error] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_source] = ACTIONS(2153), + [anon_sym_source_DASHenv] = ACTIONS(2153), + [anon_sym_register] = ACTIONS(2153), + [anon_sym_hide] = ACTIONS(2153), + [anon_sym_hide_DASHenv] = ACTIONS(2153), + [anon_sym_overlay] = ACTIONS(2153), + [anon_sym_where] = ACTIONS(2153), + [anon_sym_not] = ACTIONS(2153), + [anon_sym_DOT_DOT_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2153), + [sym_val_nothing] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [aux_sym_val_number_token1] = ACTIONS(2153), + [aux_sym_val_number_token2] = ACTIONS(2153), + [aux_sym_val_number_token3] = ACTIONS(2153), + [aux_sym_val_number_token4] = ACTIONS(2153), + [aux_sym_val_number_token5] = ACTIONS(2153), + [anon_sym_inf] = ACTIONS(2153), + [anon_sym_DASHinf] = ACTIONS(2153), + [anon_sym_NaN] = ACTIONS(2153), + [anon_sym_0b] = ACTIONS(2153), + [anon_sym_0o] = ACTIONS(2153), + [anon_sym_0x] = ACTIONS(2153), + [sym_val_date] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym__str_single_quotes] = ACTIONS(2153), + [sym__str_back_ticks] = ACTIONS(2153), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(3), + }, + [945] = { + [sym_comment] = STATE(945), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [sym_cmd_identifier] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_def_DASHenv] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_where] = ACTIONS(1569), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [sym_val_nothing] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [aux_sym_val_number_token1] = ACTIONS(1569), + [aux_sym_val_number_token2] = ACTIONS(1569), + [aux_sym_val_number_token3] = ACTIONS(1569), + [aux_sym_val_number_token4] = ACTIONS(1569), + [aux_sym_val_number_token5] = ACTIONS(1569), + [anon_sym_inf] = ACTIONS(1569), + [anon_sym_DASHinf] = ACTIONS(1569), + [anon_sym_NaN] = ACTIONS(1569), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [946] = { + [sym_comment] = STATE(946), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2157), + [sym_cmd_identifier] = ACTIONS(2157), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_def_DASHenv] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_not] = ACTIONS(2157), + [anon_sym_DOT_DOT_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), + [sym_val_nothing] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [aux_sym_val_number_token1] = ACTIONS(2157), + [aux_sym_val_number_token2] = ACTIONS(2157), + [aux_sym_val_number_token3] = ACTIONS(2157), + [aux_sym_val_number_token4] = ACTIONS(2157), + [aux_sym_val_number_token5] = ACTIONS(2157), + [anon_sym_inf] = ACTIONS(2157), + [anon_sym_DASHinf] = ACTIONS(2157), + [anon_sym_NaN] = ACTIONS(2157), + [anon_sym_0b] = ACTIONS(2157), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(3), + }, + [947] = { + [sym_comment] = STATE(947), + [anon_sym_export] = ACTIONS(2069), + [anon_sym_alias] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_let_DASHenv] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [sym_cmd_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2069), + [anon_sym_def_DASHenv] = ACTIONS(2069), + [anon_sym_export_DASHenv] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_module] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_source] = ACTIONS(2069), + [anon_sym_source_DASHenv] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_hide] = ACTIONS(2069), + [anon_sym_hide_DASHenv] = ACTIONS(2069), + [anon_sym_overlay] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_not] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [sym_val_nothing] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = 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(2069), + [aux_sym_val_number_token5] = ACTIONS(2069), + [anon_sym_inf] = ACTIONS(2069), + [anon_sym_DASHinf] = ACTIONS(2069), + [anon_sym_NaN] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2069), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2069), + [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_CARET] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(3), + }, + [948] = { + [sym_comment] = STATE(948), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_alias] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_let_DASHenv] = ACTIONS(2161), + [anon_sym_mut] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2163), + [sym_cmd_identifier] = ACTIONS(2161), + [anon_sym_LF] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2161), + [anon_sym_def_DASHenv] = ACTIONS(2161), + [anon_sym_export_DASHenv] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_error] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_source] = ACTIONS(2161), + [anon_sym_source_DASHenv] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_hide] = ACTIONS(2161), + [anon_sym_hide_DASHenv] = ACTIONS(2161), + [anon_sym_overlay] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_not] = ACTIONS(2161), + [anon_sym_DOT_DOT_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2161), + [sym_val_nothing] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [aux_sym_val_number_token1] = ACTIONS(2161), + [aux_sym_val_number_token2] = ACTIONS(2161), + [aux_sym_val_number_token3] = ACTIONS(2161), + [aux_sym_val_number_token4] = ACTIONS(2161), + [aux_sym_val_number_token5] = ACTIONS(2161), + [anon_sym_inf] = ACTIONS(2161), + [anon_sym_DASHinf] = ACTIONS(2161), + [anon_sym_NaN] = ACTIONS(2161), + [anon_sym_0b] = ACTIONS(2161), + [anon_sym_0o] = ACTIONS(2161), + [anon_sym_0x] = ACTIONS(2161), + [sym_val_date] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym__str_single_quotes] = ACTIONS(2161), + [sym__str_back_ticks] = ACTIONS(2161), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2161), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(3), + }, + [949] = { + [sym_block] = STATE(1089), + [sym_comment] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(1959), + [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), + [anon_sym_SEMI] = ACTIONS(1957), + [sym_cmd_identifier] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_where] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = ACTIONS(1957), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = 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_CARET] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + }, + [950] = { + [sym_comment] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(1985), + [anon_sym_export] = ACTIONS(1983), + [anon_sym_alias] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_let_DASHenv] = ACTIONS(1983), + [anon_sym_mut] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [sym_cmd_identifier] = ACTIONS(1983), + [anon_sym_LF] = ACTIONS(1985), + [anon_sym_def] = ACTIONS(1983), + [anon_sym_def_DASHenv] = ACTIONS(1983), + [anon_sym_export_DASHenv] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym_module] = ACTIONS(1983), + [anon_sym_use] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1983), + [anon_sym_error] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_loop] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_do] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_source] = ACTIONS(1983), + [anon_sym_source_DASHenv] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_hide] = ACTIONS(1983), + [anon_sym_hide_DASHenv] = ACTIONS(1983), + [anon_sym_overlay] = ACTIONS(1983), + [anon_sym_where] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [sym_val_nothing] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = 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(1983), + [aux_sym_val_number_token5] = ACTIONS(1983), + [anon_sym_inf] = ACTIONS(1983), + [anon_sym_DASHinf] = ACTIONS(1983), + [anon_sym_NaN] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1983), + [anon_sym_0o] = ACTIONS(1983), + [anon_sym_0x] = ACTIONS(1983), + [sym_val_date] = ACTIONS(1983), + [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_CARET] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(3), + }, + [951] = { + [sym_comment] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(901), + [anon_sym_export] = ACTIONS(899), + [anon_sym_alias] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_let_DASHenv] = ACTIONS(899), + [anon_sym_mut] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [sym_cmd_identifier] = ACTIONS(899), + [anon_sym_LF] = ACTIONS(901), + [anon_sym_def] = ACTIONS(899), + [anon_sym_def_DASHenv] = ACTIONS(899), + [anon_sym_export_DASHenv] = ACTIONS(899), + [anon_sym_extern] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_error] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_source] = ACTIONS(899), + [anon_sym_source_DASHenv] = ACTIONS(899), + [anon_sym_register] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_hide_DASHenv] = ACTIONS(899), + [anon_sym_overlay] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_not] = ACTIONS(899), + [anon_sym_DOT_DOT_LT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [sym_val_nothing] = ACTIONS(899), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [aux_sym_val_number_token1] = ACTIONS(899), + [aux_sym_val_number_token2] = ACTIONS(899), + [aux_sym_val_number_token3] = ACTIONS(899), + [aux_sym_val_number_token4] = ACTIONS(899), + [aux_sym_val_number_token5] = ACTIONS(899), + [anon_sym_inf] = ACTIONS(899), + [anon_sym_DASHinf] = ACTIONS(899), + [anon_sym_NaN] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(899), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__str_single_quotes] = ACTIONS(899), + [sym__str_back_ticks] = ACTIONS(899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(3), + }, + [952] = { + [sym_block] = STATE(1088), + [sym_comment] = STATE(952), + [ts_builtin_sym_end] = ACTIONS(1959), + [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), + [anon_sym_SEMI] = ACTIONS(1957), + [sym_cmd_identifier] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_where] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = ACTIONS(1957), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = 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_CARET] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + }, + [953] = { + [sym_comment] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(1724), + [anon_sym_alias] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_let_DASHenv] = ACTIONS(1724), + [anon_sym_mut] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [sym_cmd_identifier] = ACTIONS(1724), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1724), + [anon_sym_def_DASHenv] = ACTIONS(1724), + [anon_sym_export_DASHenv] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_module] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_error] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_source] = ACTIONS(1724), + [anon_sym_source_DASHenv] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_hide] = ACTIONS(1724), + [anon_sym_hide_DASHenv] = ACTIONS(1724), + [anon_sym_overlay] = ACTIONS(1724), + [anon_sym_where] = ACTIONS(1724), + [anon_sym_not] = ACTIONS(1724), + [anon_sym_DOT_DOT_LT] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1724), + [sym_val_nothing] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [aux_sym_val_number_token1] = ACTIONS(1724), + [aux_sym_val_number_token2] = ACTIONS(1724), + [aux_sym_val_number_token3] = ACTIONS(1724), + [aux_sym_val_number_token4] = ACTIONS(1724), + [aux_sym_val_number_token5] = ACTIONS(1724), + [anon_sym_inf] = ACTIONS(1724), + [anon_sym_DASHinf] = ACTIONS(1724), + [anon_sym_NaN] = ACTIONS(1724), + [anon_sym_0b] = ACTIONS(1724), + [anon_sym_0o] = ACTIONS(1724), + [anon_sym_0x] = ACTIONS(1724), + [sym_val_date] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym__str_single_quotes] = ACTIONS(1724), + [sym__str_back_ticks] = ACTIONS(1724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [954] = { + [sym_block] = STATE(1093), + [sym_comment] = STATE(954), + [ts_builtin_sym_end] = ACTIONS(1999), + [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), + [anon_sym_SEMI] = ACTIONS(1997), + [sym_cmd_identifier] = ACTIONS(1997), + [anon_sym_LF] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), + [sym_val_nothing] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1997), + [anon_sym_DASHinf] = ACTIONS(1997), + [anon_sym_NaN] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = 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_CARET] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(3), + }, + [955] = { + [sym_comment] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_export] = ACTIONS(850), + [anon_sym_alias] = ACTIONS(850), + [anon_sym_let] = ACTIONS(850), + [anon_sym_let_DASHenv] = ACTIONS(850), + [anon_sym_mut] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [sym_cmd_identifier] = ACTIONS(850), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_def] = ACTIONS(850), + [anon_sym_def_DASHenv] = ACTIONS(850), + [anon_sym_export_DASHenv] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_use] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_error] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(850), + [anon_sym_hide_DASHenv] = ACTIONS(850), + [anon_sym_overlay] = ACTIONS(850), + [anon_sym_where] = ACTIONS(850), + [anon_sym_not] = ACTIONS(850), + [anon_sym_DOT_DOT_LT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [sym_val_nothing] = ACTIONS(850), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_val_number_token1] = ACTIONS(850), + [aux_sym_val_number_token2] = ACTIONS(850), + [aux_sym_val_number_token3] = ACTIONS(850), + [aux_sym_val_number_token4] = ACTIONS(850), + [aux_sym_val_number_token5] = ACTIONS(850), + [anon_sym_inf] = ACTIONS(850), + [anon_sym_DASHinf] = ACTIONS(850), + [anon_sym_NaN] = ACTIONS(850), + [anon_sym_0b] = ACTIONS(850), + [anon_sym_0o] = ACTIONS(850), + [anon_sym_0x] = ACTIONS(850), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym__str_single_quotes] = ACTIONS(850), + [sym__str_back_ticks] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(3), + }, + [956] = { + [sym_comment] = STATE(956), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_def_DASHenv] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [sym_val_nothing] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym_val_number_token1] = ACTIONS(1006), + [aux_sym_val_number_token2] = ACTIONS(1006), + [aux_sym_val_number_token3] = ACTIONS(1006), + [aux_sym_val_number_token4] = ACTIONS(1006), + [aux_sym_val_number_token5] = ACTIONS(1006), + [anon_sym_inf] = ACTIONS(1006), + [anon_sym_DASHinf] = ACTIONS(1006), + [anon_sym_NaN] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), + }, + [957] = { + [sym_comment] = STATE(957), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_def_DASHenv] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), + [anon_sym_DOT_DOT_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2173), + [sym_val_nothing] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym_val_number_token1] = ACTIONS(2173), + [aux_sym_val_number_token2] = ACTIONS(2173), + [aux_sym_val_number_token3] = ACTIONS(2173), + [aux_sym_val_number_token4] = ACTIONS(2173), + [aux_sym_val_number_token5] = ACTIONS(2173), + [anon_sym_inf] = ACTIONS(2173), + [anon_sym_DASHinf] = ACTIONS(2173), + [anon_sym_NaN] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(3), + }, + [958] = { + [sym_comment] = STATE(958), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [sym_cmd_identifier] = ACTIONS(2177), + [anon_sym_LF] = ACTIONS(2179), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_def_DASHenv] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_not] = ACTIONS(2177), + [anon_sym_DOT_DOT_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2177), + [sym_val_nothing] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [aux_sym_val_number_token1] = ACTIONS(2177), + [aux_sym_val_number_token2] = ACTIONS(2177), + [aux_sym_val_number_token3] = ACTIONS(2177), + [aux_sym_val_number_token4] = ACTIONS(2177), + [aux_sym_val_number_token5] = ACTIONS(2177), + [anon_sym_inf] = ACTIONS(2177), + [anon_sym_DASHinf] = ACTIONS(2177), + [anon_sym_NaN] = ACTIONS(2177), + [anon_sym_0b] = ACTIONS(2177), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym__str_single_quotes] = ACTIONS(2177), + [sym__str_back_ticks] = ACTIONS(2177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(3), + }, + [959] = { + [sym_block] = STATE(1090), + [sym_comment] = STATE(959), + [ts_builtin_sym_end] = ACTIONS(1999), + [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), + [anon_sym_SEMI] = ACTIONS(1997), + [sym_cmd_identifier] = ACTIONS(1997), + [anon_sym_LF] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), + [sym_val_nothing] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1997), + [anon_sym_DASHinf] = ACTIONS(1997), + [anon_sym_NaN] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = 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_CARET] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(3), + }, + [960] = { + [sym_comment] = STATE(960), + [anon_sym_export] = ACTIONS(2181), + [anon_sym_alias] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_let_DASHenv] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2181), + [sym_cmd_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2181), + [anon_sym_def_DASHenv] = ACTIONS(2181), + [anon_sym_export_DASHenv] = ACTIONS(2181), + [anon_sym_extern] = ACTIONS(2181), + [anon_sym_module] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_error] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_source] = ACTIONS(2181), + [anon_sym_source_DASHenv] = ACTIONS(2181), + [anon_sym_register] = ACTIONS(2181), + [anon_sym_hide] = ACTIONS(2181), + [anon_sym_hide_DASHenv] = ACTIONS(2181), + [anon_sym_overlay] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_not] = ACTIONS(2181), + [anon_sym_DOT_DOT_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2181), + [sym_val_nothing] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [aux_sym_val_number_token1] = ACTIONS(2181), + [aux_sym_val_number_token2] = ACTIONS(2181), + [aux_sym_val_number_token3] = ACTIONS(2181), + [aux_sym_val_number_token4] = ACTIONS(2181), + [aux_sym_val_number_token5] = ACTIONS(2181), + [anon_sym_inf] = ACTIONS(2181), + [anon_sym_DASHinf] = ACTIONS(2181), + [anon_sym_NaN] = ACTIONS(2181), + [anon_sym_0b] = ACTIONS(2181), + [anon_sym_0o] = ACTIONS(2181), + [anon_sym_0x] = ACTIONS(2181), + [sym_val_date] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(3), + }, + [961] = { + [sym_comment] = STATE(961), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [sym_cmd_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_def_DASHenv] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_not] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2185), + [sym_val_nothing] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [aux_sym_val_number_token1] = ACTIONS(2185), + [aux_sym_val_number_token2] = ACTIONS(2185), + [aux_sym_val_number_token3] = ACTIONS(2185), + [aux_sym_val_number_token4] = ACTIONS(2185), + [aux_sym_val_number_token5] = ACTIONS(2185), + [anon_sym_inf] = ACTIONS(2185), + [anon_sym_DASHinf] = ACTIONS(2185), + [anon_sym_NaN] = ACTIONS(2185), + [anon_sym_0b] = ACTIONS(2185), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(3), + }, + [962] = { + [sym_comment] = STATE(962), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_alias] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_let_DASHenv] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [sym_cmd_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_def] = ACTIONS(2189), + [anon_sym_def_DASHenv] = ACTIONS(2189), + [anon_sym_export_DASHenv] = ACTIONS(2189), + [anon_sym_extern] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_error] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_loop] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_source] = ACTIONS(2189), + [anon_sym_source_DASHenv] = ACTIONS(2189), + [anon_sym_register] = ACTIONS(2189), + [anon_sym_hide] = ACTIONS(2189), + [anon_sym_hide_DASHenv] = ACTIONS(2189), + [anon_sym_overlay] = ACTIONS(2189), + [anon_sym_where] = ACTIONS(2189), + [anon_sym_not] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), + [sym_val_nothing] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [aux_sym_val_number_token1] = ACTIONS(2189), + [aux_sym_val_number_token2] = ACTIONS(2189), + [aux_sym_val_number_token3] = ACTIONS(2189), + [aux_sym_val_number_token4] = ACTIONS(2189), + [aux_sym_val_number_token5] = ACTIONS(2189), + [anon_sym_inf] = ACTIONS(2189), + [anon_sym_DASHinf] = ACTIONS(2189), + [anon_sym_NaN] = ACTIONS(2189), + [anon_sym_0b] = ACTIONS(2189), + [anon_sym_0o] = ACTIONS(2189), + [anon_sym_0x] = ACTIONS(2189), + [sym_val_date] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2189), + [sym__str_back_ticks] = ACTIONS(2189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(3), + }, + [963] = { + [sym_comment] = STATE(963), + [ts_builtin_sym_end] = ACTIONS(1991), + [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), + [anon_sym_SEMI] = ACTIONS(1989), + [sym_cmd_identifier] = ACTIONS(1989), + [anon_sym_LF] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_where] = ACTIONS(1989), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), + [sym_val_nothing] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1989), + [anon_sym_DASHinf] = ACTIONS(1989), + [anon_sym_NaN] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1989), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0x] = ACTIONS(1989), + [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_CARET] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(3), + }, + [964] = { + [sym_comment] = STATE(964), + [ts_builtin_sym_end] = ACTIONS(1995), + [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), + [anon_sym_SEMI] = ACTIONS(1993), + [sym_cmd_identifier] = ACTIONS(1993), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_where] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1993), + [anon_sym_DOT_DOT_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), + [sym_val_nothing] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1993), + [anon_sym_DASHinf] = ACTIONS(1993), + [anon_sym_NaN] = ACTIONS(1993), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = 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_CARET] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(3), + }, + [965] = { + [sym_comment] = STATE(965), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_alias] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_let_DASHenv] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [sym_cmd_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2195), + [anon_sym_def] = ACTIONS(2193), + [anon_sym_def_DASHenv] = ACTIONS(2193), + [anon_sym_export_DASHenv] = ACTIONS(2193), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2193), + [anon_sym_error] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_source] = ACTIONS(2193), + [anon_sym_source_DASHenv] = ACTIONS(2193), + [anon_sym_register] = ACTIONS(2193), + [anon_sym_hide] = ACTIONS(2193), + [anon_sym_hide_DASHenv] = ACTIONS(2193), + [anon_sym_overlay] = ACTIONS(2193), + [anon_sym_where] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2193), + [anon_sym_DOT_DOT_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2193), + [sym_val_nothing] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [aux_sym_val_number_token1] = ACTIONS(2193), + [aux_sym_val_number_token2] = ACTIONS(2193), + [aux_sym_val_number_token3] = ACTIONS(2193), + [aux_sym_val_number_token4] = ACTIONS(2193), + [aux_sym_val_number_token5] = ACTIONS(2193), + [anon_sym_inf] = ACTIONS(2193), + [anon_sym_DASHinf] = ACTIONS(2193), + [anon_sym_NaN] = ACTIONS(2193), + [anon_sym_0b] = ACTIONS(2193), + [anon_sym_0o] = ACTIONS(2193), + [anon_sym_0x] = ACTIONS(2193), + [sym_val_date] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym__str_single_quotes] = ACTIONS(2193), + [sym__str_back_ticks] = ACTIONS(2193), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(3), + }, + [966] = { + [sym_comment] = STATE(966), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [sym_cmd_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_def_DASHenv] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_not] = ACTIONS(2197), + [anon_sym_DOT_DOT_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2197), + [sym_val_nothing] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [aux_sym_val_number_token1] = ACTIONS(2197), + [aux_sym_val_number_token2] = ACTIONS(2197), + [aux_sym_val_number_token3] = ACTIONS(2197), + [aux_sym_val_number_token4] = ACTIONS(2197), + [aux_sym_val_number_token5] = ACTIONS(2197), + [anon_sym_inf] = ACTIONS(2197), + [anon_sym_DASHinf] = ACTIONS(2197), + [anon_sym_NaN] = ACTIONS(2197), + [anon_sym_0b] = ACTIONS(2197), + [anon_sym_0o] = ACTIONS(2197), + [anon_sym_0x] = ACTIONS(2197), + [sym_val_date] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(3), + }, + [967] = { + [sym_comment] = STATE(967), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_alias] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_let_DASHenv] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2201), + [sym_cmd_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_def_DASHenv] = ACTIONS(2201), + [anon_sym_export_DASHenv] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_error] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_source] = ACTIONS(2201), + [anon_sym_source_DASHenv] = ACTIONS(2201), + [anon_sym_register] = ACTIONS(2201), + [anon_sym_hide] = ACTIONS(2201), + [anon_sym_hide_DASHenv] = ACTIONS(2201), + [anon_sym_overlay] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_not] = ACTIONS(2201), + [anon_sym_DOT_DOT_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2201), + [sym_val_nothing] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [aux_sym_val_number_token1] = ACTIONS(2201), + [aux_sym_val_number_token2] = ACTIONS(2201), + [aux_sym_val_number_token3] = ACTIONS(2201), + [aux_sym_val_number_token4] = ACTIONS(2201), + [aux_sym_val_number_token5] = ACTIONS(2201), + [anon_sym_inf] = ACTIONS(2201), + [anon_sym_DASHinf] = ACTIONS(2201), + [anon_sym_NaN] = ACTIONS(2201), + [anon_sym_0b] = ACTIONS(2201), + [anon_sym_0o] = ACTIONS(2201), + [anon_sym_0x] = ACTIONS(2201), + [sym_val_date] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym__str_single_quotes] = ACTIONS(2201), + [sym__str_back_ticks] = ACTIONS(2201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + }, + [968] = { + [sym_comment] = STATE(968), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_alias] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_let_DASHenv] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2201), + [sym_cmd_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_def_DASHenv] = ACTIONS(2201), + [anon_sym_export_DASHenv] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_error] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_source] = ACTIONS(2201), + [anon_sym_source_DASHenv] = ACTIONS(2201), + [anon_sym_register] = ACTIONS(2201), + [anon_sym_hide] = ACTIONS(2201), + [anon_sym_hide_DASHenv] = ACTIONS(2201), + [anon_sym_overlay] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_not] = ACTIONS(2201), + [anon_sym_DOT_DOT_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2201), + [sym_val_nothing] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [aux_sym_val_number_token1] = ACTIONS(2201), + [aux_sym_val_number_token2] = ACTIONS(2201), + [aux_sym_val_number_token3] = ACTIONS(2201), + [aux_sym_val_number_token4] = ACTIONS(2201), + [aux_sym_val_number_token5] = ACTIONS(2201), + [anon_sym_inf] = ACTIONS(2201), + [anon_sym_DASHinf] = ACTIONS(2201), + [anon_sym_NaN] = ACTIONS(2201), + [anon_sym_0b] = ACTIONS(2201), + [anon_sym_0o] = ACTIONS(2201), + [anon_sym_0x] = ACTIONS(2201), + [sym_val_date] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym__str_single_quotes] = ACTIONS(2201), + [sym__str_back_ticks] = ACTIONS(2201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + }, + [969] = { + [sym_comment] = STATE(969), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_alias] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_let_DASHenv] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [sym_cmd_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2205), + [anon_sym_def_DASHenv] = ACTIONS(2205), + [anon_sym_export_DASHenv] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_error] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_source] = ACTIONS(2205), + [anon_sym_source_DASHenv] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_hide] = ACTIONS(2205), + [anon_sym_hide_DASHenv] = ACTIONS(2205), + [anon_sym_overlay] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_not] = ACTIONS(2205), + [anon_sym_DOT_DOT_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2205), + [sym_val_nothing] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [aux_sym_val_number_token1] = ACTIONS(2205), + [aux_sym_val_number_token2] = ACTIONS(2205), + [aux_sym_val_number_token3] = ACTIONS(2205), + [aux_sym_val_number_token4] = ACTIONS(2205), + [aux_sym_val_number_token5] = ACTIONS(2205), + [anon_sym_inf] = ACTIONS(2205), + [anon_sym_DASHinf] = ACTIONS(2205), + [anon_sym_NaN] = ACTIONS(2205), + [anon_sym_0b] = ACTIONS(2205), + [anon_sym_0o] = ACTIONS(2205), + [anon_sym_0x] = ACTIONS(2205), + [sym_val_date] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [sym__str_single_quotes] = ACTIONS(2205), + [sym__str_back_ticks] = ACTIONS(2205), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(3), + }, + [970] = { + [sym_comment] = STATE(970), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_alias] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_let_DASHenv] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [sym_cmd_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_def] = ACTIONS(2209), + [anon_sym_def_DASHenv] = ACTIONS(2209), + [anon_sym_export_DASHenv] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_error] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_source] = ACTIONS(2209), + [anon_sym_source_DASHenv] = ACTIONS(2209), + [anon_sym_register] = ACTIONS(2209), + [anon_sym_hide] = ACTIONS(2209), + [anon_sym_hide_DASHenv] = ACTIONS(2209), + [anon_sym_overlay] = ACTIONS(2209), + [anon_sym_where] = ACTIONS(2209), + [anon_sym_not] = ACTIONS(2209), + [anon_sym_DOT_DOT_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2209), + [sym_val_nothing] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [aux_sym_val_number_token1] = ACTIONS(2209), + [aux_sym_val_number_token2] = ACTIONS(2209), + [aux_sym_val_number_token3] = ACTIONS(2209), + [aux_sym_val_number_token4] = ACTIONS(2209), + [aux_sym_val_number_token5] = ACTIONS(2209), + [anon_sym_inf] = ACTIONS(2209), + [anon_sym_DASHinf] = ACTIONS(2209), + [anon_sym_NaN] = ACTIONS(2209), + [anon_sym_0b] = ACTIONS(2209), + [anon_sym_0o] = ACTIONS(2209), + [anon_sym_0x] = ACTIONS(2209), + [sym_val_date] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym__str_single_quotes] = ACTIONS(2209), + [sym__str_back_ticks] = ACTIONS(2209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(3), + }, + [971] = { + [sym_comment] = STATE(971), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_alias] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_let_DASHenv] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [sym_cmd_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_def_DASHenv] = ACTIONS(2213), + [anon_sym_export_DASHenv] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_source] = ACTIONS(2213), + [anon_sym_source_DASHenv] = ACTIONS(2213), + [anon_sym_register] = ACTIONS(2213), + [anon_sym_hide] = ACTIONS(2213), + [anon_sym_hide_DASHenv] = ACTIONS(2213), + [anon_sym_overlay] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2213), + [sym_val_nothing] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [aux_sym_val_number_token1] = ACTIONS(2213), + [aux_sym_val_number_token2] = ACTIONS(2213), + [aux_sym_val_number_token3] = ACTIONS(2213), + [aux_sym_val_number_token4] = ACTIONS(2213), + [aux_sym_val_number_token5] = ACTIONS(2213), + [anon_sym_inf] = ACTIONS(2213), + [anon_sym_DASHinf] = ACTIONS(2213), + [anon_sym_NaN] = ACTIONS(2213), + [anon_sym_0b] = ACTIONS(2213), + [anon_sym_0o] = ACTIONS(2213), + [anon_sym_0x] = ACTIONS(2213), + [sym_val_date] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(3), + }, + [972] = { + [sym_comment] = STATE(972), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_alias] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_let_DASHenv] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), + [sym_cmd_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2219), + [anon_sym_def] = ACTIONS(2217), + [anon_sym_def_DASHenv] = ACTIONS(2217), + [anon_sym_export_DASHenv] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_source] = ACTIONS(2217), + [anon_sym_source_DASHenv] = ACTIONS(2217), + [anon_sym_register] = ACTIONS(2217), + [anon_sym_hide] = ACTIONS(2217), + [anon_sym_hide_DASHenv] = ACTIONS(2217), + [anon_sym_overlay] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(2217), + [anon_sym_not] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2217), + [sym_val_nothing] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [aux_sym_val_number_token1] = ACTIONS(2217), + [aux_sym_val_number_token2] = ACTIONS(2217), + [aux_sym_val_number_token3] = ACTIONS(2217), + [aux_sym_val_number_token4] = ACTIONS(2217), + [aux_sym_val_number_token5] = ACTIONS(2217), + [anon_sym_inf] = ACTIONS(2217), + [anon_sym_DASHinf] = ACTIONS(2217), + [anon_sym_NaN] = ACTIONS(2217), + [anon_sym_0b] = ACTIONS(2217), + [anon_sym_0o] = ACTIONS(2217), + [anon_sym_0x] = ACTIONS(2217), + [sym_val_date] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + }, + [973] = { + [sym_comment] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_export] = ACTIONS(907), + [anon_sym_alias] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_let_DASHenv] = ACTIONS(907), + [anon_sym_mut] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [sym_cmd_identifier] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_def] = ACTIONS(907), + [anon_sym_def_DASHenv] = ACTIONS(907), + [anon_sym_export_DASHenv] = ACTIONS(907), + [anon_sym_extern] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_source] = ACTIONS(907), + [anon_sym_source_DASHenv] = ACTIONS(907), + [anon_sym_register] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(907), + [anon_sym_overlay] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_not] = ACTIONS(907), + [anon_sym_DOT_DOT_LT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [sym_val_nothing] = ACTIONS(907), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [aux_sym_val_number_token1] = ACTIONS(907), + [aux_sym_val_number_token2] = ACTIONS(907), + [aux_sym_val_number_token3] = ACTIONS(907), + [aux_sym_val_number_token4] = ACTIONS(907), + [aux_sym_val_number_token5] = ACTIONS(907), + [anon_sym_inf] = ACTIONS(907), + [anon_sym_DASHinf] = ACTIONS(907), + [anon_sym_NaN] = ACTIONS(907), + [anon_sym_0b] = ACTIONS(907), + [anon_sym_0o] = ACTIONS(907), + [anon_sym_0x] = ACTIONS(907), + [sym_val_date] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(3), + }, + [974] = { + [sym_comment] = STATE(974), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_alias] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_let_DASHenv] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [sym_cmd_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2223), + [anon_sym_def] = ACTIONS(2221), + [anon_sym_def_DASHenv] = ACTIONS(2221), + [anon_sym_export_DASHenv] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_error] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_source] = ACTIONS(2221), + [anon_sym_source_DASHenv] = ACTIONS(2221), + [anon_sym_register] = ACTIONS(2221), + [anon_sym_hide] = ACTIONS(2221), + [anon_sym_hide_DASHenv] = ACTIONS(2221), + [anon_sym_overlay] = ACTIONS(2221), + [anon_sym_where] = ACTIONS(2221), + [anon_sym_not] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2221), + [sym_val_nothing] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [aux_sym_val_number_token1] = ACTIONS(2221), + [aux_sym_val_number_token2] = ACTIONS(2221), + [aux_sym_val_number_token3] = ACTIONS(2221), + [aux_sym_val_number_token4] = ACTIONS(2221), + [aux_sym_val_number_token5] = ACTIONS(2221), + [anon_sym_inf] = ACTIONS(2221), + [anon_sym_DASHinf] = ACTIONS(2221), + [anon_sym_NaN] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2221), + [anon_sym_0o] = ACTIONS(2221), + [anon_sym_0x] = ACTIONS(2221), + [sym_val_date] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(3), + }, + [975] = { + [sym_comment] = STATE(975), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_alias] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_let_DASHenv] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [sym_cmd_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2225), + [anon_sym_def_DASHenv] = ACTIONS(2225), + [anon_sym_export_DASHenv] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_error] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_source] = ACTIONS(2225), + [anon_sym_source_DASHenv] = ACTIONS(2225), + [anon_sym_register] = ACTIONS(2225), + [anon_sym_hide] = ACTIONS(2225), + [anon_sym_hide_DASHenv] = ACTIONS(2225), + [anon_sym_overlay] = ACTIONS(2225), + [anon_sym_where] = ACTIONS(2225), + [anon_sym_not] = ACTIONS(2225), + [anon_sym_DOT_DOT_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2225), + [sym_val_nothing] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [aux_sym_val_number_token1] = ACTIONS(2225), + [aux_sym_val_number_token2] = ACTIONS(2225), + [aux_sym_val_number_token3] = ACTIONS(2225), + [aux_sym_val_number_token4] = ACTIONS(2225), + [aux_sym_val_number_token5] = ACTIONS(2225), + [anon_sym_inf] = ACTIONS(2225), + [anon_sym_DASHinf] = ACTIONS(2225), + [anon_sym_NaN] = ACTIONS(2225), + [anon_sym_0b] = ACTIONS(2225), + [anon_sym_0o] = ACTIONS(2225), + [anon_sym_0x] = ACTIONS(2225), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [sym__str_single_quotes] = ACTIONS(2225), + [sym__str_back_ticks] = ACTIONS(2225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(3), + }, + [976] = { + [sym_comment] = STATE(976), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2231), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_def_DASHenv] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [sym_val_nothing] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym_val_number_token1] = ACTIONS(2229), + [aux_sym_val_number_token2] = ACTIONS(2229), + [aux_sym_val_number_token3] = ACTIONS(2229), + [aux_sym_val_number_token4] = ACTIONS(2229), + [aux_sym_val_number_token5] = ACTIONS(2229), + [anon_sym_inf] = ACTIONS(2229), + [anon_sym_DASHinf] = ACTIONS(2229), + [anon_sym_NaN] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(3), + }, + [977] = { + [sym_comment] = STATE(977), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_alias] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_let_DASHenv] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [sym_cmd_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_def_DASHenv] = ACTIONS(2213), + [anon_sym_export_DASHenv] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_source] = ACTIONS(2213), + [anon_sym_source_DASHenv] = ACTIONS(2213), + [anon_sym_register] = ACTIONS(2213), + [anon_sym_hide] = ACTIONS(2213), + [anon_sym_hide_DASHenv] = ACTIONS(2213), + [anon_sym_overlay] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2213), + [sym_val_nothing] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [aux_sym_val_number_token1] = ACTIONS(2213), + [aux_sym_val_number_token2] = ACTIONS(2213), + [aux_sym_val_number_token3] = ACTIONS(2213), + [aux_sym_val_number_token4] = ACTIONS(2213), + [aux_sym_val_number_token5] = ACTIONS(2213), + [anon_sym_inf] = ACTIONS(2213), + [anon_sym_DASHinf] = ACTIONS(2213), + [anon_sym_NaN] = ACTIONS(2213), + [anon_sym_0b] = ACTIONS(2213), + [anon_sym_0o] = ACTIONS(2213), + [anon_sym_0x] = ACTIONS(2213), + [sym_val_date] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(3), + }, + [978] = { + [sym_comment] = STATE(978), + [ts_builtin_sym_end] = ACTIONS(1965), + [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), + [anon_sym_SEMI] = ACTIONS(1963), + [sym_cmd_identifier] = ACTIONS(1963), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1963), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1963), + [anon_sym_error] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_loop] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_do] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_source] = ACTIONS(1963), + [anon_sym_source_DASHenv] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_hide] = ACTIONS(1963), + [anon_sym_hide_DASHenv] = ACTIONS(1963), + [anon_sym_overlay] = ACTIONS(1963), + [anon_sym_where] = ACTIONS(1963), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [sym_val_nothing] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1963), + [anon_sym_DASHinf] = ACTIONS(1963), + [anon_sym_NaN] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1963), + [anon_sym_0o] = ACTIONS(1963), + [anon_sym_0x] = ACTIONS(1963), + [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_CARET] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(3), + }, + [979] = { + [sym_comment] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_export] = ACTIONS(822), + [anon_sym_alias] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_let_DASHenv] = ACTIONS(822), + [anon_sym_mut] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(822), + [sym_cmd_identifier] = ACTIONS(822), + [anon_sym_LF] = ACTIONS(824), + [anon_sym_def] = ACTIONS(822), + [anon_sym_def_DASHenv] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_error] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_source] = ACTIONS(822), + [anon_sym_source_DASHenv] = ACTIONS(822), + [anon_sym_register] = ACTIONS(822), + [anon_sym_hide] = ACTIONS(822), + [anon_sym_hide_DASHenv] = ACTIONS(822), + [anon_sym_overlay] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_not] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [sym_val_nothing] = ACTIONS(822), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_val_number_token1] = ACTIONS(822), + [aux_sym_val_number_token2] = ACTIONS(822), + [aux_sym_val_number_token3] = ACTIONS(822), + [aux_sym_val_number_token4] = ACTIONS(822), + [aux_sym_val_number_token5] = ACTIONS(822), + [anon_sym_inf] = ACTIONS(822), + [anon_sym_DASHinf] = ACTIONS(822), + [anon_sym_NaN] = ACTIONS(822), + [anon_sym_0b] = ACTIONS(822), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(822), + [sym__str_back_ticks] = ACTIONS(822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(3), + }, + [980] = { + [sym_comment] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1975), + [anon_sym_alias] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(1975), + [anon_sym_let_DASHenv] = ACTIONS(1975), + [anon_sym_mut] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [sym_cmd_identifier] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1975), + [anon_sym_def_DASHenv] = ACTIONS(1975), + [anon_sym_export_DASHenv] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1975), + [anon_sym_module] = ACTIONS(1975), + [anon_sym_use] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_error] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_loop] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_do] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_source] = ACTIONS(1975), + [anon_sym_source_DASHenv] = ACTIONS(1975), + [anon_sym_register] = ACTIONS(1975), + [anon_sym_hide] = ACTIONS(1975), + [anon_sym_hide_DASHenv] = ACTIONS(1975), + [anon_sym_overlay] = ACTIONS(1975), + [anon_sym_where] = ACTIONS(1975), + [anon_sym_not] = ACTIONS(1975), + [anon_sym_DOT_DOT_LT] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), + [sym_val_nothing] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [aux_sym_val_number_token1] = ACTIONS(1975), + [aux_sym_val_number_token2] = ACTIONS(1975), + [aux_sym_val_number_token3] = ACTIONS(1975), + [aux_sym_val_number_token4] = ACTIONS(1975), + [aux_sym_val_number_token5] = ACTIONS(1975), + [anon_sym_inf] = ACTIONS(1975), + [anon_sym_DASHinf] = ACTIONS(1975), + [anon_sym_NaN] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1975), + [anon_sym_0o] = ACTIONS(1975), + [anon_sym_0x] = ACTIONS(1975), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(3), + }, + [981] = { + [sym_comment] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(2015), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2013), + [sym_cmd_identifier] = ACTIONS(2013), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_def_DASHenv] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_where] = ACTIONS(2013), + [anon_sym_not] = ACTIONS(2013), + [anon_sym_DOT_DOT_LT] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), + [sym_val_nothing] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [aux_sym_val_number_token1] = ACTIONS(2013), + [aux_sym_val_number_token2] = ACTIONS(2013), + [aux_sym_val_number_token3] = ACTIONS(2013), + [aux_sym_val_number_token4] = ACTIONS(2013), + [aux_sym_val_number_token5] = ACTIONS(2013), + [anon_sym_inf] = ACTIONS(2013), + [anon_sym_DASHinf] = ACTIONS(2013), + [anon_sym_NaN] = ACTIONS(2013), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), + [anon_sym_CARET] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(3), + }, + [982] = { + [sym_comment] = STATE(982), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_alias] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_let_DASHenv] = ACTIONS(2239), + [anon_sym_mut] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [sym_cmd_identifier] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2239), + [anon_sym_def_DASHenv] = ACTIONS(2239), + [anon_sym_export_DASHenv] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2239), + [anon_sym_error] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_source] = ACTIONS(2239), + [anon_sym_source_DASHenv] = ACTIONS(2239), + [anon_sym_register] = ACTIONS(2239), + [anon_sym_hide] = ACTIONS(2239), + [anon_sym_hide_DASHenv] = ACTIONS(2239), + [anon_sym_overlay] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_not] = ACTIONS(2239), + [anon_sym_DOT_DOT_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2239), + [sym_val_nothing] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [aux_sym_val_number_token1] = ACTIONS(2239), + [aux_sym_val_number_token2] = ACTIONS(2239), + [aux_sym_val_number_token3] = ACTIONS(2239), + [aux_sym_val_number_token4] = ACTIONS(2239), + [aux_sym_val_number_token5] = ACTIONS(2239), + [anon_sym_inf] = ACTIONS(2239), + [anon_sym_DASHinf] = ACTIONS(2239), + [anon_sym_NaN] = ACTIONS(2239), + [anon_sym_0b] = ACTIONS(2239), + [anon_sym_0o] = ACTIONS(2239), + [anon_sym_0x] = ACTIONS(2239), + [sym_val_date] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [sym__str_single_quotes] = ACTIONS(2239), + [sym__str_back_ticks] = ACTIONS(2239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + }, + [983] = { + [sym_comment] = STATE(983), + [ts_builtin_sym_end] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1979), + [anon_sym_alias] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_let_DASHenv] = ACTIONS(1979), + [anon_sym_mut] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [sym_cmd_identifier] = ACTIONS(1979), + [anon_sym_LF] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1979), + [anon_sym_def_DASHenv] = ACTIONS(1979), + [anon_sym_export_DASHenv] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1979), + [anon_sym_module] = ACTIONS(1979), + [anon_sym_use] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_error] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_loop] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_do] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_source] = ACTIONS(1979), + [anon_sym_source_DASHenv] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1979), + [anon_sym_hide] = ACTIONS(1979), + [anon_sym_hide_DASHenv] = ACTIONS(1979), + [anon_sym_overlay] = ACTIONS(1979), + [anon_sym_where] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [sym_val_nothing] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1979), + [anon_sym_DASHinf] = ACTIONS(1979), + [anon_sym_NaN] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1979), + [anon_sym_0o] = ACTIONS(1979), + [anon_sym_0x] = ACTIONS(1979), + [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_CARET] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(3), + }, + [984] = { + [sym_comment] = STATE(984), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_alias] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_let_DASHenv] = ACTIONS(2243), + [anon_sym_mut] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [sym_cmd_identifier] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_def] = ACTIONS(2243), + [anon_sym_def_DASHenv] = ACTIONS(2243), + [anon_sym_export_DASHenv] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_module] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_error] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_source] = ACTIONS(2243), + [anon_sym_source_DASHenv] = ACTIONS(2243), + [anon_sym_register] = ACTIONS(2243), + [anon_sym_hide] = ACTIONS(2243), + [anon_sym_hide_DASHenv] = ACTIONS(2243), + [anon_sym_overlay] = ACTIONS(2243), + [anon_sym_where] = ACTIONS(2243), + [anon_sym_not] = ACTIONS(2243), + [anon_sym_DOT_DOT_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), + [sym_val_nothing] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [aux_sym_val_number_token1] = ACTIONS(2243), + [aux_sym_val_number_token2] = ACTIONS(2243), + [aux_sym_val_number_token3] = ACTIONS(2243), + [aux_sym_val_number_token4] = ACTIONS(2243), + [aux_sym_val_number_token5] = ACTIONS(2243), + [anon_sym_inf] = ACTIONS(2243), + [anon_sym_DASHinf] = ACTIONS(2243), + [anon_sym_NaN] = ACTIONS(2243), + [anon_sym_0b] = ACTIONS(2243), + [anon_sym_0o] = ACTIONS(2243), + [anon_sym_0x] = ACTIONS(2243), + [sym_val_date] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [sym__str_single_quotes] = ACTIONS(2243), + [sym__str_back_ticks] = ACTIONS(2243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), + }, + [985] = { + [sym__terminator] = STATE(930), + [sym_comment] = STATE(985), + [aux_sym__block_body_repeat1] = STATE(825), + [anon_sym_export] = ACTIONS(2247), + [anon_sym_alias] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_let_DASHenv] = ACTIONS(2247), + [anon_sym_mut] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2123), + [sym_cmd_identifier] = ACTIONS(2247), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2247), + [anon_sym_def_DASHenv] = ACTIONS(2247), + [anon_sym_export_DASHenv] = ACTIONS(2247), + [anon_sym_extern] = ACTIONS(2247), + [anon_sym_module] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2247), + [anon_sym_error] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_do] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_source] = ACTIONS(2247), + [anon_sym_source_DASHenv] = ACTIONS(2247), + [anon_sym_register] = ACTIONS(2247), + [anon_sym_hide] = ACTIONS(2247), + [anon_sym_hide_DASHenv] = ACTIONS(2247), + [anon_sym_overlay] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_not] = ACTIONS(2247), + [anon_sym_DOT_DOT_LT] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2247), + [sym_val_nothing] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [aux_sym_val_number_token1] = ACTIONS(2247), + [aux_sym_val_number_token2] = ACTIONS(2247), + [aux_sym_val_number_token3] = ACTIONS(2247), + [aux_sym_val_number_token4] = ACTIONS(2247), + [aux_sym_val_number_token5] = ACTIONS(2247), + [anon_sym_inf] = ACTIONS(2247), + [anon_sym_DASHinf] = ACTIONS(2247), + [anon_sym_NaN] = ACTIONS(2247), + [anon_sym_0b] = ACTIONS(2247), + [anon_sym_0o] = ACTIONS(2247), + [anon_sym_0x] = ACTIONS(2247), + [sym_val_date] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2247), + [sym__str_single_quotes] = ACTIONS(2247), + [sym__str_back_ticks] = ACTIONS(2247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [986] = { + [sym_comment] = STATE(986), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [sym_cmd_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_def_DASHenv] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [sym_val_nothing] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym_val_number_token1] = ACTIONS(2249), + [aux_sym_val_number_token2] = ACTIONS(2249), + [aux_sym_val_number_token3] = ACTIONS(2249), + [aux_sym_val_number_token4] = ACTIONS(2249), + [aux_sym_val_number_token5] = ACTIONS(2249), + [anon_sym_inf] = ACTIONS(2249), + [anon_sym_DASHinf] = ACTIONS(2249), + [anon_sym_NaN] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym__str_single_quotes] = ACTIONS(2249), + [sym__str_back_ticks] = ACTIONS(2249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [987] = { + [sym_comment] = STATE(987), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_alias] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_let_DASHenv] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [sym_cmd_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2253), + [anon_sym_def_DASHenv] = ACTIONS(2253), + [anon_sym_export_DASHenv] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_error] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_source] = ACTIONS(2253), + [anon_sym_source_DASHenv] = ACTIONS(2253), + [anon_sym_register] = ACTIONS(2253), + [anon_sym_hide] = ACTIONS(2253), + [anon_sym_hide_DASHenv] = ACTIONS(2253), + [anon_sym_overlay] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_not] = ACTIONS(2253), + [anon_sym_DOT_DOT_LT] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), + [sym_val_nothing] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [aux_sym_val_number_token1] = ACTIONS(2253), + [aux_sym_val_number_token2] = ACTIONS(2253), + [aux_sym_val_number_token3] = ACTIONS(2253), + [aux_sym_val_number_token4] = ACTIONS(2253), + [aux_sym_val_number_token5] = ACTIONS(2253), + [anon_sym_inf] = ACTIONS(2253), + [anon_sym_DASHinf] = ACTIONS(2253), + [anon_sym_NaN] = ACTIONS(2253), + [anon_sym_0b] = ACTIONS(2253), + [anon_sym_0o] = ACTIONS(2253), + [anon_sym_0x] = ACTIONS(2253), + [sym_val_date] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(3), + }, + [988] = { + [sym_comment] = STATE(988), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_let_DASHenv] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [sym_cmd_identifier] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_def_DASHenv] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_error] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_source] = ACTIONS(2257), + [anon_sym_source_DASHenv] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_hide] = ACTIONS(2257), + [anon_sym_hide_DASHenv] = ACTIONS(2257), + [anon_sym_overlay] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [sym_val_nothing] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [aux_sym_val_number_token1] = ACTIONS(2257), + [aux_sym_val_number_token2] = ACTIONS(2257), + [aux_sym_val_number_token3] = ACTIONS(2257), + [aux_sym_val_number_token4] = ACTIONS(2257), + [aux_sym_val_number_token5] = ACTIONS(2257), + [anon_sym_inf] = ACTIONS(2257), + [anon_sym_DASHinf] = ACTIONS(2257), + [anon_sym_NaN] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2257), + [anon_sym_0o] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2257), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym__str_single_quotes] = ACTIONS(2257), + [sym__str_back_ticks] = ACTIONS(2257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(3), + }, + [989] = { + [sym_comment] = STATE(989), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [sym_cmd_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_def_DASHenv] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [sym_val_nothing] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym_val_number_token1] = ACTIONS(2249), + [aux_sym_val_number_token2] = ACTIONS(2249), + [aux_sym_val_number_token3] = ACTIONS(2249), + [aux_sym_val_number_token4] = ACTIONS(2249), + [aux_sym_val_number_token5] = ACTIONS(2249), + [anon_sym_inf] = ACTIONS(2249), + [anon_sym_DASHinf] = ACTIONS(2249), + [anon_sym_NaN] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym__str_single_quotes] = ACTIONS(2249), + [sym__str_back_ticks] = ACTIONS(2249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [990] = { + [sym_comment] = STATE(990), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_alias] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_let_DASHenv] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2261), + [sym_cmd_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2263), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_def_DASHenv] = ACTIONS(2261), + [anon_sym_export_DASHenv] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_error] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_source] = ACTIONS(2261), + [anon_sym_source_DASHenv] = ACTIONS(2261), + [anon_sym_register] = ACTIONS(2261), + [anon_sym_hide] = ACTIONS(2261), + [anon_sym_hide_DASHenv] = ACTIONS(2261), + [anon_sym_overlay] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(2261), + [anon_sym_not] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [sym_val_nothing] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [aux_sym_val_number_token1] = ACTIONS(2261), + [aux_sym_val_number_token2] = ACTIONS(2261), + [aux_sym_val_number_token3] = ACTIONS(2261), + [aux_sym_val_number_token4] = ACTIONS(2261), + [aux_sym_val_number_token5] = ACTIONS(2261), + [anon_sym_inf] = ACTIONS(2261), + [anon_sym_DASHinf] = ACTIONS(2261), + [anon_sym_NaN] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2261), + [anon_sym_0o] = ACTIONS(2261), + [anon_sym_0x] = ACTIONS(2261), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + }, + [991] = { + [sym_comment] = STATE(991), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_alias] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_let_DASHenv] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2267), + [sym_cmd_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_def] = ACTIONS(2265), + [anon_sym_def_DASHenv] = ACTIONS(2265), + [anon_sym_export_DASHenv] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_error] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_source] = ACTIONS(2265), + [anon_sym_source_DASHenv] = ACTIONS(2265), + [anon_sym_register] = ACTIONS(2265), + [anon_sym_hide] = ACTIONS(2265), + [anon_sym_hide_DASHenv] = ACTIONS(2265), + [anon_sym_overlay] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_DOT_DOT_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), + [sym_val_nothing] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [aux_sym_val_number_token1] = ACTIONS(2265), + [aux_sym_val_number_token2] = ACTIONS(2265), + [aux_sym_val_number_token3] = ACTIONS(2265), + [aux_sym_val_number_token4] = ACTIONS(2265), + [aux_sym_val_number_token5] = ACTIONS(2265), + [anon_sym_inf] = ACTIONS(2265), + [anon_sym_DASHinf] = ACTIONS(2265), + [anon_sym_NaN] = ACTIONS(2265), + [anon_sym_0b] = ACTIONS(2265), + [anon_sym_0o] = ACTIONS(2265), + [anon_sym_0x] = ACTIONS(2265), + [sym_val_date] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(3), + }, + [992] = { + [sym_comment] = STATE(992), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(3), + }, + [993] = { + [sym_comment] = STATE(993), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [sym_cmd_identifier] = ACTIONS(2275), + [anon_sym_LF] = ACTIONS(2277), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_def_DASHenv] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_where] = ACTIONS(2275), + [anon_sym_not] = ACTIONS(2275), + [anon_sym_DOT_DOT_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2275), + [sym_val_nothing] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [aux_sym_val_number_token1] = ACTIONS(2275), + [aux_sym_val_number_token2] = ACTIONS(2275), + [aux_sym_val_number_token3] = ACTIONS(2275), + [aux_sym_val_number_token4] = ACTIONS(2275), + [aux_sym_val_number_token5] = ACTIONS(2275), + [anon_sym_inf] = ACTIONS(2275), + [anon_sym_DASHinf] = ACTIONS(2275), + [anon_sym_NaN] = ACTIONS(2275), + [anon_sym_0b] = ACTIONS(2275), + [anon_sym_0o] = ACTIONS(2275), + [anon_sym_0x] = ACTIONS(2275), + [sym_val_date] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + }, + [994] = { + [sym_comment] = STATE(994), + [anon_sym_export] = ACTIONS(2279), + [anon_sym_alias] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_let_DASHenv] = ACTIONS(2279), + [anon_sym_mut] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [sym_cmd_identifier] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2279), + [anon_sym_def_DASHenv] = ACTIONS(2279), + [anon_sym_export_DASHenv] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_module] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_do] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_source] = ACTIONS(2279), + [anon_sym_source_DASHenv] = ACTIONS(2279), + [anon_sym_register] = ACTIONS(2279), + [anon_sym_hide] = ACTIONS(2279), + [anon_sym_hide_DASHenv] = ACTIONS(2279), + [anon_sym_overlay] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_not] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [sym_val_nothing] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [aux_sym_val_number_token1] = ACTIONS(2279), + [aux_sym_val_number_token2] = ACTIONS(2279), + [aux_sym_val_number_token3] = ACTIONS(2279), + [aux_sym_val_number_token4] = ACTIONS(2279), + [aux_sym_val_number_token5] = ACTIONS(2279), + [anon_sym_inf] = ACTIONS(2279), + [anon_sym_DASHinf] = ACTIONS(2279), + [anon_sym_NaN] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2279), + [anon_sym_0o] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2279), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_CARET] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [995] = { + [sym_comment] = STATE(995), + [anon_sym_export] = ACTIONS(2283), + [anon_sym_alias] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_let_DASHenv] = ACTIONS(2283), + [anon_sym_mut] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [sym_cmd_identifier] = ACTIONS(2283), + [anon_sym_LF] = ACTIONS(2285), + [anon_sym_def] = ACTIONS(2283), + [anon_sym_def_DASHenv] = ACTIONS(2283), + [anon_sym_export_DASHenv] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym_module] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_DOLLAR] = ACTIONS(2283), + [anon_sym_error] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_source] = ACTIONS(2283), + [anon_sym_source_DASHenv] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_hide] = ACTIONS(2283), + [anon_sym_hide_DASHenv] = ACTIONS(2283), + [anon_sym_overlay] = ACTIONS(2283), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_DOT_DOT_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2283), + [sym_val_nothing] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2283), + [anon_sym_false] = ACTIONS(2283), + [aux_sym_val_number_token1] = ACTIONS(2283), + [aux_sym_val_number_token2] = ACTIONS(2283), + [aux_sym_val_number_token3] = ACTIONS(2283), + [aux_sym_val_number_token4] = ACTIONS(2283), + [aux_sym_val_number_token5] = ACTIONS(2283), + [anon_sym_inf] = ACTIONS(2283), + [anon_sym_DASHinf] = ACTIONS(2283), + [anon_sym_NaN] = ACTIONS(2283), + [anon_sym_0b] = ACTIONS(2283), + [anon_sym_0o] = ACTIONS(2283), + [anon_sym_0x] = ACTIONS(2283), + [sym_val_date] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2283), + [sym__str_single_quotes] = ACTIONS(2283), + [sym__str_back_ticks] = ACTIONS(2283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(3), + }, + [996] = { + [sym_comment] = STATE(996), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [sym_cmd_identifier] = ACTIONS(2287), + [anon_sym_LF] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_def_DASHenv] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_where] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_DOT_DOT_LT] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2287), + [sym_val_nothing] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [aux_sym_val_number_token1] = ACTIONS(2287), + [aux_sym_val_number_token2] = ACTIONS(2287), + [aux_sym_val_number_token3] = ACTIONS(2287), + [aux_sym_val_number_token4] = ACTIONS(2287), + [aux_sym_val_number_token5] = ACTIONS(2287), + [anon_sym_inf] = ACTIONS(2287), + [anon_sym_DASHinf] = ACTIONS(2287), + [anon_sym_NaN] = ACTIONS(2287), + [anon_sym_0b] = ACTIONS(2287), + [anon_sym_0o] = ACTIONS(2287), + [anon_sym_0x] = ACTIONS(2287), + [sym_val_date] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2287), + [sym__str_single_quotes] = ACTIONS(2287), + [sym__str_back_ticks] = ACTIONS(2287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + }, + [997] = { + [sym_comment] = STATE(997), + [anon_sym_export] = ACTIONS(2291), + [anon_sym_alias] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_let_DASHenv] = ACTIONS(2291), + [anon_sym_mut] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [sym_cmd_identifier] = ACTIONS(2291), + [anon_sym_LF] = ACTIONS(2296), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_def_DASHenv] = ACTIONS(2291), + [anon_sym_export_DASHenv] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_error] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_source] = ACTIONS(2291), + [anon_sym_source_DASHenv] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_hide] = ACTIONS(2291), + [anon_sym_hide_DASHenv] = ACTIONS(2291), + [anon_sym_overlay] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_DOT_DOT_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), + [sym_val_nothing] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [aux_sym_val_number_token1] = ACTIONS(2291), + [aux_sym_val_number_token2] = ACTIONS(2291), + [aux_sym_val_number_token3] = ACTIONS(2291), + [aux_sym_val_number_token4] = ACTIONS(2291), + [aux_sym_val_number_token5] = ACTIONS(2291), + [anon_sym_inf] = ACTIONS(2291), + [anon_sym_DASHinf] = ACTIONS(2291), + [anon_sym_NaN] = ACTIONS(2291), + [anon_sym_0b] = ACTIONS(2291), + [anon_sym_0o] = ACTIONS(2291), + [anon_sym_0x] = ACTIONS(2291), + [sym_val_date] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(3), + }, + [998] = { + [sym_comment] = STATE(998), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [sym_cmd_identifier] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_def_DASHenv] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [sym_val_nothing] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym_val_number_token1] = ACTIONS(1022), + [aux_sym_val_number_token2] = ACTIONS(1022), + [aux_sym_val_number_token3] = ACTIONS(1022), + [aux_sym_val_number_token4] = ACTIONS(1022), + [aux_sym_val_number_token5] = ACTIONS(1022), + [anon_sym_inf] = ACTIONS(1022), + [anon_sym_DASHinf] = ACTIONS(1022), + [anon_sym_NaN] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), + }, + [999] = { + [sym_comment] = STATE(999), + [anon_sym_export] = ACTIONS(2301), + [anon_sym_alias] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_let_DASHenv] = ACTIONS(2301), + [anon_sym_mut] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2301), + [sym_cmd_identifier] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2301), + [anon_sym_def_DASHenv] = ACTIONS(2301), + [anon_sym_export_DASHenv] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_module] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_RPAREN] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_error] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_source] = ACTIONS(2301), + [anon_sym_source_DASHenv] = ACTIONS(2301), + [anon_sym_register] = ACTIONS(2301), + [anon_sym_hide] = ACTIONS(2301), + [anon_sym_hide_DASHenv] = ACTIONS(2301), + [anon_sym_overlay] = ACTIONS(2301), + [anon_sym_where] = ACTIONS(2301), + [anon_sym_not] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [sym_val_nothing] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [aux_sym_val_number_token1] = ACTIONS(2301), + [aux_sym_val_number_token2] = ACTIONS(2301), + [aux_sym_val_number_token3] = ACTIONS(2301), + [aux_sym_val_number_token4] = ACTIONS(2301), + [aux_sym_val_number_token5] = ACTIONS(2301), + [anon_sym_inf] = ACTIONS(2301), + [anon_sym_DASHinf] = ACTIONS(2301), + [anon_sym_NaN] = ACTIONS(2301), + [anon_sym_0b] = ACTIONS(2301), + [anon_sym_0o] = ACTIONS(2301), + [anon_sym_0x] = ACTIONS(2301), + [sym_val_date] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym__str_single_quotes] = ACTIONS(2301), + [sym__str_back_ticks] = ACTIONS(2301), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(3), + }, + [1000] = { + [sym_comment] = STATE(1000), + [anon_sym_export] = ACTIONS(2279), + [anon_sym_alias] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_let_DASHenv] = ACTIONS(2279), + [anon_sym_mut] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [sym_cmd_identifier] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2279), + [anon_sym_def_DASHenv] = ACTIONS(2279), + [anon_sym_export_DASHenv] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_module] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_do] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_source] = ACTIONS(2279), + [anon_sym_source_DASHenv] = ACTIONS(2279), + [anon_sym_register] = ACTIONS(2279), + [anon_sym_hide] = ACTIONS(2279), + [anon_sym_hide_DASHenv] = ACTIONS(2279), + [anon_sym_overlay] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_not] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [sym_val_nothing] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [aux_sym_val_number_token1] = ACTIONS(2279), + [aux_sym_val_number_token2] = ACTIONS(2279), + [aux_sym_val_number_token3] = ACTIONS(2279), + [aux_sym_val_number_token4] = ACTIONS(2279), + [aux_sym_val_number_token5] = ACTIONS(2279), + [anon_sym_inf] = ACTIONS(2279), + [anon_sym_DASHinf] = ACTIONS(2279), + [anon_sym_NaN] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2279), + [anon_sym_0o] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2279), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_CARET] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [1001] = { + [sym_comment] = STATE(1001), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_export] = ACTIONS(788), + [anon_sym_alias] = ACTIONS(788), + [anon_sym_let] = ACTIONS(788), + [anon_sym_let_DASHenv] = ACTIONS(788), + [anon_sym_mut] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_SEMI] = ACTIONS(788), + [sym_cmd_identifier] = ACTIONS(788), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_def] = ACTIONS(788), + [anon_sym_def_DASHenv] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_module] = ACTIONS(788), + [anon_sym_use] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(788), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_error] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_break] = ACTIONS(788), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(788), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(788), + [anon_sym_if] = ACTIONS(788), + [anon_sym_match] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_try] = ACTIONS(788), + [anon_sym_return] = ACTIONS(788), + [anon_sym_source] = ACTIONS(788), + [anon_sym_source_DASHenv] = ACTIONS(788), + [anon_sym_register] = ACTIONS(788), + [anon_sym_hide] = ACTIONS(788), + [anon_sym_hide_DASHenv] = ACTIONS(788), + [anon_sym_overlay] = ACTIONS(788), + [anon_sym_where] = ACTIONS(788), + [anon_sym_not] = ACTIONS(788), + [anon_sym_DOT_DOT_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [sym_val_nothing] = ACTIONS(788), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [aux_sym_val_number_token1] = ACTIONS(788), + [aux_sym_val_number_token2] = ACTIONS(788), + [aux_sym_val_number_token3] = ACTIONS(788), + [aux_sym_val_number_token4] = ACTIONS(788), + [aux_sym_val_number_token5] = ACTIONS(788), + [anon_sym_inf] = ACTIONS(788), + [anon_sym_DASHinf] = ACTIONS(788), + [anon_sym_NaN] = ACTIONS(788), + [anon_sym_0b] = ACTIONS(788), + [anon_sym_0o] = ACTIONS(788), + [anon_sym_0x] = ACTIONS(788), + [sym_val_date] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym__str_single_quotes] = ACTIONS(788), + [sym__str_back_ticks] = ACTIONS(788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(788), + [anon_sym_CARET] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(3), + }, + [1002] = { + [sym_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_def_DASHenv] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_DOT_DOT_LT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [sym_val_nothing] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym_val_number_token1] = ACTIONS(903), + [aux_sym_val_number_token2] = ACTIONS(903), + [aux_sym_val_number_token3] = ACTIONS(903), + [aux_sym_val_number_token4] = ACTIONS(903), + [aux_sym_val_number_token5] = ACTIONS(903), + [anon_sym_inf] = ACTIONS(903), + [anon_sym_DASHinf] = ACTIONS(903), + [anon_sym_NaN] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(3), + }, + [1003] = { + [sym__terminator] = STATE(930), + [sym_comment] = STATE(1003), + [aux_sym__block_body_repeat1] = STATE(985), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2123), + [sym_cmd_identifier] = ACTIONS(2305), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_def_DASHenv] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_where] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(2305), + [anon_sym_DOT_DOT_LT] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2305), + [sym_val_nothing] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [aux_sym_val_number_token1] = ACTIONS(2305), + [aux_sym_val_number_token2] = ACTIONS(2305), + [aux_sym_val_number_token3] = ACTIONS(2305), + [aux_sym_val_number_token4] = ACTIONS(2305), + [aux_sym_val_number_token5] = ACTIONS(2305), + [anon_sym_inf] = ACTIONS(2305), + [anon_sym_DASHinf] = ACTIONS(2305), + [anon_sym_NaN] = ACTIONS(2305), + [anon_sym_0b] = ACTIONS(2305), + [anon_sym_0o] = ACTIONS(2305), + [anon_sym_0x] = ACTIONS(2305), + [sym_val_date] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), + [anon_sym_CARET] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(3), + }, + [1004] = { + [sym_comment] = STATE(1004), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_alias] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_let_DASHenv] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [sym_cmd_identifier] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2307), + [anon_sym_def_DASHenv] = ACTIONS(2307), + [anon_sym_export_DASHenv] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_source] = ACTIONS(2307), + [anon_sym_source_DASHenv] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_hide] = ACTIONS(2307), + [anon_sym_hide_DASHenv] = ACTIONS(2307), + [anon_sym_overlay] = ACTIONS(2307), + [anon_sym_where] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_DOT_DOT_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2307), + [sym_val_nothing] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [aux_sym_val_number_token1] = ACTIONS(2307), + [aux_sym_val_number_token2] = ACTIONS(2307), + [aux_sym_val_number_token3] = ACTIONS(2307), + [aux_sym_val_number_token4] = ACTIONS(2307), + [aux_sym_val_number_token5] = ACTIONS(2307), + [anon_sym_inf] = ACTIONS(2307), + [anon_sym_DASHinf] = ACTIONS(2307), + [anon_sym_NaN] = ACTIONS(2307), + [anon_sym_0b] = ACTIONS(2307), + [anon_sym_0o] = ACTIONS(2307), + [anon_sym_0x] = ACTIONS(2307), + [sym_val_date] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), + [anon_sym_CARET] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(3), + }, + [1005] = { + [sym_comment] = STATE(1005), + [ts_builtin_sym_end] = ACTIONS(2019), + [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), + [anon_sym_SEMI] = ACTIONS(2017), + [sym_cmd_identifier] = ACTIONS(2017), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_where] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_DOT_DOT_LT] = ACTIONS(2017), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), + [sym_val_nothing] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2017), + [anon_sym_DASHinf] = ACTIONS(2017), + [anon_sym_NaN] = ACTIONS(2017), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = 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_CARET] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(3), + }, + [1006] = { + [sym_comment] = STATE(1006), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [sym_cmd_identifier] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_def_DASHenv] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_not] = ACTIONS(2311), + [anon_sym_DOT_DOT_LT] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2311), + [sym_val_nothing] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [aux_sym_val_number_token1] = ACTIONS(2311), + [aux_sym_val_number_token2] = ACTIONS(2311), + [aux_sym_val_number_token3] = ACTIONS(2311), + [aux_sym_val_number_token4] = ACTIONS(2311), + [aux_sym_val_number_token5] = ACTIONS(2311), + [anon_sym_inf] = ACTIONS(2311), + [anon_sym_DASHinf] = ACTIONS(2311), + [anon_sym_NaN] = ACTIONS(2311), + [anon_sym_0b] = ACTIONS(2311), + [anon_sym_0o] = ACTIONS(2311), + [anon_sym_0x] = ACTIONS(2311), + [sym_val_date] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2311), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), + }, + [1007] = { + [sym_comment] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(2003), + [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), + [anon_sym_SEMI] = ACTIONS(2001), + [sym_cmd_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_where] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_DOT_DOT_LT] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), + [sym_val_nothing] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2001), + [anon_sym_DASHinf] = ACTIONS(2001), + [anon_sym_NaN] = ACTIONS(2001), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = 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_CARET] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [1008] = { + [sym_comment] = STATE(1008), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [sym_cmd_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_def_DASHenv] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_DOT_DOT_LT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2315), + [sym_val_nothing] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [aux_sym_val_number_token1] = ACTIONS(2315), + [aux_sym_val_number_token2] = ACTIONS(2315), + [aux_sym_val_number_token3] = ACTIONS(2315), + [aux_sym_val_number_token4] = ACTIONS(2315), + [aux_sym_val_number_token5] = ACTIONS(2315), + [anon_sym_inf] = ACTIONS(2315), + [anon_sym_DASHinf] = ACTIONS(2315), + [anon_sym_NaN] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [sym_val_date] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym__str_single_quotes] = ACTIONS(2315), + [sym__str_back_ticks] = ACTIONS(2315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(3), + }, + [1009] = { + [sym_comment] = STATE(1009), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_export] = ACTIONS(838), + [anon_sym_alias] = ACTIONS(838), + [anon_sym_let] = ACTIONS(838), + [anon_sym_let_DASHenv] = ACTIONS(838), + [anon_sym_mut] = ACTIONS(838), + [anon_sym_const] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(838), + [sym_cmd_identifier] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_def] = ACTIONS(838), + [anon_sym_def_DASHenv] = ACTIONS(838), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_use] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_match] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_source] = ACTIONS(838), + [anon_sym_source_DASHenv] = ACTIONS(838), + [anon_sym_register] = ACTIONS(838), + [anon_sym_hide] = ACTIONS(838), + [anon_sym_hide_DASHenv] = ACTIONS(838), + [anon_sym_overlay] = ACTIONS(838), + [anon_sym_where] = ACTIONS(838), + [anon_sym_not] = ACTIONS(838), + [anon_sym_DOT_DOT_LT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [sym_val_nothing] = ACTIONS(838), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_val_number_token1] = ACTIONS(838), + [aux_sym_val_number_token2] = ACTIONS(838), + [aux_sym_val_number_token3] = ACTIONS(838), + [aux_sym_val_number_token4] = ACTIONS(838), + [aux_sym_val_number_token5] = ACTIONS(838), + [anon_sym_inf] = ACTIONS(838), + [anon_sym_DASHinf] = ACTIONS(838), + [anon_sym_NaN] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(838), + [anon_sym_0o] = ACTIONS(838), + [anon_sym_0x] = ACTIONS(838), + [sym_val_date] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym__str_single_quotes] = ACTIONS(838), + [sym__str_back_ticks] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(3), + }, + [1010] = { + [sym_comment] = STATE(1010), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_DASHenv] = ACTIONS(2319), + [anon_sym_mut] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [sym_cmd_identifier] = ACTIONS(2319), + [anon_sym_LF] = ACTIONS(2321), + [anon_sym_def] = ACTIONS(2319), + [anon_sym_def_DASHenv] = ACTIONS(2319), + [anon_sym_export_DASHenv] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_error] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_source] = ACTIONS(2319), + [anon_sym_source_DASHenv] = ACTIONS(2319), + [anon_sym_register] = ACTIONS(2319), + [anon_sym_hide] = ACTIONS(2319), + [anon_sym_hide_DASHenv] = ACTIONS(2319), + [anon_sym_overlay] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2319), + [anon_sym_not] = ACTIONS(2319), + [anon_sym_DOT_DOT_LT] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2319), + [sym_val_nothing] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [aux_sym_val_number_token1] = ACTIONS(2319), + [aux_sym_val_number_token2] = ACTIONS(2319), + [aux_sym_val_number_token3] = ACTIONS(2319), + [aux_sym_val_number_token4] = ACTIONS(2319), + [aux_sym_val_number_token5] = ACTIONS(2319), + [anon_sym_inf] = ACTIONS(2319), + [anon_sym_DASHinf] = ACTIONS(2319), + [anon_sym_NaN] = ACTIONS(2319), + [anon_sym_0b] = ACTIONS(2319), + [anon_sym_0o] = ACTIONS(2319), + [anon_sym_0x] = ACTIONS(2319), + [sym_val_date] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(3), + }, + [1011] = { + [sym_comment] = STATE(1011), + [anon_sym_export] = ACTIONS(2323), + [anon_sym_alias] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_let_DASHenv] = ACTIONS(2323), + [anon_sym_mut] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [sym_cmd_identifier] = ACTIONS(2323), + [anon_sym_LF] = ACTIONS(2325), + [anon_sym_def] = ACTIONS(2323), + [anon_sym_def_DASHenv] = ACTIONS(2323), + [anon_sym_export_DASHenv] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_module] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2323), + [anon_sym_error] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_source] = ACTIONS(2323), + [anon_sym_source_DASHenv] = ACTIONS(2323), + [anon_sym_register] = ACTIONS(2323), + [anon_sym_hide] = ACTIONS(2323), + [anon_sym_hide_DASHenv] = ACTIONS(2323), + [anon_sym_overlay] = ACTIONS(2323), + [anon_sym_where] = ACTIONS(2323), + [anon_sym_not] = ACTIONS(2323), + [anon_sym_DOT_DOT_LT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2323), + [sym_val_nothing] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [aux_sym_val_number_token1] = ACTIONS(2323), + [aux_sym_val_number_token2] = ACTIONS(2323), + [aux_sym_val_number_token3] = ACTIONS(2323), + [aux_sym_val_number_token4] = ACTIONS(2323), + [aux_sym_val_number_token5] = ACTIONS(2323), + [anon_sym_inf] = ACTIONS(2323), + [anon_sym_DASHinf] = ACTIONS(2323), + [anon_sym_NaN] = ACTIONS(2323), + [anon_sym_0b] = ACTIONS(2323), + [anon_sym_0o] = ACTIONS(2323), + [anon_sym_0x] = ACTIONS(2323), + [sym_val_date] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym__str_single_quotes] = ACTIONS(2323), + [sym__str_back_ticks] = ACTIONS(2323), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2323), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2323), + [anon_sym_CARET] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(3), + }, + [1012] = { + [sym_comment] = STATE(1012), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_alias] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_let_DASHenv] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [sym_cmd_identifier] = ACTIONS(2327), + [anon_sym_LF] = ACTIONS(2329), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_def_DASHenv] = ACTIONS(2327), + [anon_sym_export_DASHenv] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_error] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_source] = ACTIONS(2327), + [anon_sym_source_DASHenv] = ACTIONS(2327), + [anon_sym_register] = ACTIONS(2327), + [anon_sym_hide] = ACTIONS(2327), + [anon_sym_hide_DASHenv] = ACTIONS(2327), + [anon_sym_overlay] = ACTIONS(2327), + [anon_sym_where] = ACTIONS(2327), + [anon_sym_not] = ACTIONS(2327), + [anon_sym_DOT_DOT_LT] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2327), + [sym_val_nothing] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [aux_sym_val_number_token1] = ACTIONS(2327), + [aux_sym_val_number_token2] = ACTIONS(2327), + [aux_sym_val_number_token3] = ACTIONS(2327), + [aux_sym_val_number_token4] = ACTIONS(2327), + [aux_sym_val_number_token5] = ACTIONS(2327), + [anon_sym_inf] = ACTIONS(2327), + [anon_sym_DASHinf] = ACTIONS(2327), + [anon_sym_NaN] = ACTIONS(2327), + [anon_sym_0b] = ACTIONS(2327), + [anon_sym_0o] = ACTIONS(2327), + [anon_sym_0x] = ACTIONS(2327), + [sym_val_date] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym__str_single_quotes] = ACTIONS(2327), + [sym__str_back_ticks] = ACTIONS(2327), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2327), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), + [anon_sym_CARET] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [1013] = { + [sym_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(2011), + [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), + [anon_sym_SEMI] = ACTIONS(2009), + [sym_cmd_identifier] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_where] = ACTIONS(2009), + [anon_sym_not] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [sym_val_nothing] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2009), + [anon_sym_DASHinf] = ACTIONS(2009), + [anon_sym_NaN] = ACTIONS(2009), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = 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_CARET] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(3), + }, + [1014] = { + [sym_comment] = STATE(1014), + [anon_sym_export] = ACTIONS(2331), + [anon_sym_alias] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_let_DASHenv] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [sym_cmd_identifier] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2333), + [anon_sym_def] = ACTIONS(2331), + [anon_sym_def_DASHenv] = ACTIONS(2331), + [anon_sym_export_DASHenv] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_module] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2331), + [anon_sym_error] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_do] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_source] = ACTIONS(2331), + [anon_sym_source_DASHenv] = ACTIONS(2331), + [anon_sym_register] = ACTIONS(2331), + [anon_sym_hide] = ACTIONS(2331), + [anon_sym_hide_DASHenv] = ACTIONS(2331), + [anon_sym_overlay] = ACTIONS(2331), + [anon_sym_where] = ACTIONS(2331), + [anon_sym_not] = ACTIONS(2331), + [anon_sym_DOT_DOT_LT] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2331), + [sym_val_nothing] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [aux_sym_val_number_token1] = ACTIONS(2331), + [aux_sym_val_number_token2] = ACTIONS(2331), + [aux_sym_val_number_token3] = ACTIONS(2331), + [aux_sym_val_number_token4] = ACTIONS(2331), + [aux_sym_val_number_token5] = ACTIONS(2331), + [anon_sym_inf] = ACTIONS(2331), + [anon_sym_DASHinf] = ACTIONS(2331), + [anon_sym_NaN] = ACTIONS(2331), + [anon_sym_0b] = ACTIONS(2331), + [anon_sym_0o] = ACTIONS(2331), + [anon_sym_0x] = ACTIONS(2331), + [sym_val_date] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym__str_single_quotes] = ACTIONS(2331), + [sym__str_back_ticks] = ACTIONS(2331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2331), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2331), + [anon_sym_CARET] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + }, + [1015] = { + [sym_comment] = STATE(1015), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [sym_cmd_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_def_DASHenv] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_where] = ACTIONS(2335), + [anon_sym_not] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [sym_val_nothing] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym_val_number_token1] = ACTIONS(2335), + [aux_sym_val_number_token2] = ACTIONS(2335), + [aux_sym_val_number_token3] = ACTIONS(2335), + [aux_sym_val_number_token4] = ACTIONS(2335), + [aux_sym_val_number_token5] = ACTIONS(2335), + [anon_sym_inf] = ACTIONS(2335), + [anon_sym_DASHinf] = ACTIONS(2335), + [anon_sym_NaN] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(3), + }, + [1016] = { + [sym_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [sym_cmd_identifier] = ACTIONS(1516), + [anon_sym_LF] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_def_DASHenv] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [sym_val_nothing] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = 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(1516), + [aux_sym_val_number_token5] = ACTIONS(1516), + [anon_sym_inf] = ACTIONS(1516), + [anon_sym_DASHinf] = ACTIONS(1516), + [anon_sym_NaN] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [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), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(3), + }, + [1017] = { + [sym_comment] = STATE(1017), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [sym_cmd_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_def_DASHenv] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_where] = ACTIONS(2335), + [anon_sym_not] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [sym_val_nothing] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym_val_number_token1] = ACTIONS(2335), + [aux_sym_val_number_token2] = ACTIONS(2335), + [aux_sym_val_number_token3] = ACTIONS(2335), + [aux_sym_val_number_token4] = ACTIONS(2335), + [aux_sym_val_number_token5] = ACTIONS(2335), + [anon_sym_inf] = ACTIONS(2335), + [anon_sym_DASHinf] = ACTIONS(2335), + [anon_sym_NaN] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(3), + }, + [1018] = { + [sym_comment] = STATE(1018), + [anon_sym_export] = ACTIONS(2339), + [anon_sym_alias] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_let_DASHenv] = ACTIONS(2339), + [anon_sym_mut] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [sym_cmd_identifier] = ACTIONS(2339), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2339), + [anon_sym_def_DASHenv] = ACTIONS(2339), + [anon_sym_export_DASHenv] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_module] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_error] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_do] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_source] = ACTIONS(2339), + [anon_sym_source_DASHenv] = ACTIONS(2339), + [anon_sym_register] = ACTIONS(2339), + [anon_sym_hide] = ACTIONS(2339), + [anon_sym_hide_DASHenv] = ACTIONS(2339), + [anon_sym_overlay] = ACTIONS(2339), + [anon_sym_where] = ACTIONS(2339), + [anon_sym_not] = ACTIONS(2339), + [anon_sym_DOT_DOT_LT] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), + [sym_val_nothing] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [aux_sym_val_number_token1] = ACTIONS(2339), + [aux_sym_val_number_token2] = ACTIONS(2339), + [aux_sym_val_number_token3] = ACTIONS(2339), + [aux_sym_val_number_token4] = ACTIONS(2339), + [aux_sym_val_number_token5] = ACTIONS(2339), + [anon_sym_inf] = ACTIONS(2339), + [anon_sym_DASHinf] = ACTIONS(2339), + [anon_sym_NaN] = ACTIONS(2339), + [anon_sym_0b] = ACTIONS(2339), + [anon_sym_0o] = ACTIONS(2339), + [anon_sym_0x] = ACTIONS(2339), + [sym_val_date] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym__str_single_quotes] = ACTIONS(2339), + [sym__str_back_ticks] = ACTIONS(2339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), + [anon_sym_CARET] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(3), + }, + [1019] = { + [sym_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [sym_cmd_identifier] = ACTIONS(1528), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_def_DASHenv] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_where] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [sym_val_nothing] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym_val_number_token1] = ACTIONS(1528), + [aux_sym_val_number_token2] = ACTIONS(1528), + [aux_sym_val_number_token3] = ACTIONS(1528), + [aux_sym_val_number_token4] = ACTIONS(1528), + [aux_sym_val_number_token5] = ACTIONS(1528), + [anon_sym_inf] = ACTIONS(1528), + [anon_sym_DASHinf] = ACTIONS(1528), + [anon_sym_NaN] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + }, + [1020] = { + [sym_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2333), + [anon_sym_export] = ACTIONS(2331), + [anon_sym_alias] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_let_DASHenv] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [sym_cmd_identifier] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2333), + [anon_sym_def] = ACTIONS(2331), + [anon_sym_def_DASHenv] = ACTIONS(2331), + [anon_sym_export_DASHenv] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_module] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2331), + [anon_sym_error] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_do] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_source] = ACTIONS(2331), + [anon_sym_source_DASHenv] = ACTIONS(2331), + [anon_sym_register] = ACTIONS(2331), + [anon_sym_hide] = ACTIONS(2331), + [anon_sym_hide_DASHenv] = ACTIONS(2331), + [anon_sym_overlay] = ACTIONS(2331), + [anon_sym_where] = ACTIONS(2331), + [anon_sym_not] = ACTIONS(2331), + [anon_sym_DOT_DOT_LT] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2331), + [sym_val_nothing] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [aux_sym_val_number_token1] = ACTIONS(2331), + [aux_sym_val_number_token2] = ACTIONS(2331), + [aux_sym_val_number_token3] = ACTIONS(2331), + [aux_sym_val_number_token4] = ACTIONS(2331), + [aux_sym_val_number_token5] = ACTIONS(2331), + [anon_sym_inf] = ACTIONS(2331), + [anon_sym_DASHinf] = ACTIONS(2331), + [anon_sym_NaN] = ACTIONS(2331), + [anon_sym_0b] = ACTIONS(2331), + [anon_sym_0o] = ACTIONS(2331), + [anon_sym_0x] = ACTIONS(2331), + [sym_val_date] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym__str_single_quotes] = ACTIONS(2331), + [sym__str_back_ticks] = ACTIONS(2331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2331), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2331), + [anon_sym_CARET] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + }, + [1021] = { + [sym_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_def_DASHenv] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), + [anon_sym_DOT_DOT_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2173), + [sym_val_nothing] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym_val_number_token1] = ACTIONS(2173), + [aux_sym_val_number_token2] = ACTIONS(2173), + [aux_sym_val_number_token3] = ACTIONS(2173), + [aux_sym_val_number_token4] = ACTIONS(2173), + [aux_sym_val_number_token5] = ACTIONS(2173), + [anon_sym_inf] = ACTIONS(2173), + [anon_sym_DASHinf] = ACTIONS(2173), + [anon_sym_NaN] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(3), + }, + [1022] = { + [sym_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [sym_cmd_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_def_DASHenv] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [sym_val_nothing] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [aux_sym_val_number_token1] = ACTIONS(2097), + [aux_sym_val_number_token2] = ACTIONS(2097), + [aux_sym_val_number_token3] = ACTIONS(2097), + [aux_sym_val_number_token4] = ACTIONS(2097), + [aux_sym_val_number_token5] = ACTIONS(2097), + [anon_sym_inf] = ACTIONS(2097), + [anon_sym_DASHinf] = ACTIONS(2097), + [anon_sym_NaN] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(3), + }, + [1023] = { + [sym_comment] = STATE(1023), + [ts_builtin_sym_end] = ACTIONS(2343), + [anon_sym_export] = ACTIONS(2291), + [anon_sym_alias] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_let_DASHenv] = ACTIONS(2291), + [anon_sym_mut] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [sym_cmd_identifier] = ACTIONS(2291), + [anon_sym_LF] = ACTIONS(2296), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_def_DASHenv] = ACTIONS(2291), + [anon_sym_export_DASHenv] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_error] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_source] = ACTIONS(2291), + [anon_sym_source_DASHenv] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_hide] = ACTIONS(2291), + [anon_sym_hide_DASHenv] = ACTIONS(2291), + [anon_sym_overlay] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_DOT_DOT_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), + [sym_val_nothing] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [aux_sym_val_number_token1] = ACTIONS(2291), + [aux_sym_val_number_token2] = ACTIONS(2291), + [aux_sym_val_number_token3] = ACTIONS(2291), + [aux_sym_val_number_token4] = ACTIONS(2291), + [aux_sym_val_number_token5] = ACTIONS(2291), + [anon_sym_inf] = ACTIONS(2291), + [anon_sym_DASHinf] = ACTIONS(2291), + [anon_sym_NaN] = ACTIONS(2291), + [anon_sym_0b] = ACTIONS(2291), + [anon_sym_0o] = ACTIONS(2291), + [anon_sym_0x] = ACTIONS(2291), + [sym_val_date] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(3), + }, + [1024] = { + [sym_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(2187), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [sym_cmd_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_def_DASHenv] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_not] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2185), + [sym_val_nothing] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [aux_sym_val_number_token1] = ACTIONS(2185), + [aux_sym_val_number_token2] = ACTIONS(2185), + [aux_sym_val_number_token3] = ACTIONS(2185), + [aux_sym_val_number_token4] = ACTIONS(2185), + [aux_sym_val_number_token5] = ACTIONS(2185), + [anon_sym_inf] = ACTIONS(2185), + [anon_sym_DASHinf] = ACTIONS(2185), + [anon_sym_NaN] = ACTIONS(2185), + [anon_sym_0b] = ACTIONS(2185), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(3), + }, + [1025] = { + [sym_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(2345), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_alias] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_let_DASHenv] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2267), + [sym_cmd_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_def] = ACTIONS(2265), + [anon_sym_def_DASHenv] = ACTIONS(2265), + [anon_sym_export_DASHenv] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_error] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_source] = ACTIONS(2265), + [anon_sym_source_DASHenv] = ACTIONS(2265), + [anon_sym_register] = ACTIONS(2265), + [anon_sym_hide] = ACTIONS(2265), + [anon_sym_hide_DASHenv] = ACTIONS(2265), + [anon_sym_overlay] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_DOT_DOT_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), + [sym_val_nothing] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [aux_sym_val_number_token1] = ACTIONS(2265), + [aux_sym_val_number_token2] = ACTIONS(2265), + [aux_sym_val_number_token3] = ACTIONS(2265), + [aux_sym_val_number_token4] = ACTIONS(2265), + [aux_sym_val_number_token5] = ACTIONS(2265), + [anon_sym_inf] = ACTIONS(2265), + [anon_sym_DASHinf] = ACTIONS(2265), + [anon_sym_NaN] = ACTIONS(2265), + [anon_sym_0b] = ACTIONS(2265), + [anon_sym_0o] = ACTIONS(2265), + [anon_sym_0x] = ACTIONS(2265), + [sym_val_date] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(3), + }, + [1026] = { + [sym_comment] = STATE(1026), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2349), + [sym_cmd_identifier] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2352), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_def_DASHenv] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_not] = ACTIONS(2347), + [anon_sym_DOT_DOT_LT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2347), + [sym_val_nothing] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [aux_sym_val_number_token1] = ACTIONS(2347), + [aux_sym_val_number_token2] = ACTIONS(2347), + [aux_sym_val_number_token3] = ACTIONS(2347), + [aux_sym_val_number_token4] = ACTIONS(2347), + [aux_sym_val_number_token5] = ACTIONS(2347), + [anon_sym_inf] = ACTIONS(2347), + [anon_sym_DASHinf] = ACTIONS(2347), + [anon_sym_NaN] = ACTIONS(2347), + [anon_sym_0b] = ACTIONS(2347), + [anon_sym_0o] = ACTIONS(2347), + [anon_sym_0x] = ACTIONS(2347), + [sym_val_date] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym__str_single_quotes] = ACTIONS(2347), + [sym__str_back_ticks] = ACTIONS(2347), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2347), + [anon_sym_CARET] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(3), + }, + [1027] = { + [sym_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_alias] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_let_DASHenv] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2261), + [sym_cmd_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2263), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_def_DASHenv] = ACTIONS(2261), + [anon_sym_export_DASHenv] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_error] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_source] = ACTIONS(2261), + [anon_sym_source_DASHenv] = ACTIONS(2261), + [anon_sym_register] = ACTIONS(2261), + [anon_sym_hide] = ACTIONS(2261), + [anon_sym_hide_DASHenv] = ACTIONS(2261), + [anon_sym_overlay] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(2261), + [anon_sym_not] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [sym_val_nothing] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [aux_sym_val_number_token1] = ACTIONS(2261), + [aux_sym_val_number_token2] = ACTIONS(2261), + [aux_sym_val_number_token3] = ACTIONS(2261), + [aux_sym_val_number_token4] = ACTIONS(2261), + [aux_sym_val_number_token5] = ACTIONS(2261), + [anon_sym_inf] = ACTIONS(2261), + [anon_sym_DASHinf] = ACTIONS(2261), + [anon_sym_NaN] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2261), + [anon_sym_0o] = ACTIONS(2261), + [anon_sym_0x] = ACTIONS(2261), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + }, + [1028] = { + [sym_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_alias] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_let_DASHenv] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [sym_cmd_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2253), + [anon_sym_def_DASHenv] = ACTIONS(2253), + [anon_sym_export_DASHenv] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_error] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_source] = ACTIONS(2253), + [anon_sym_source_DASHenv] = ACTIONS(2253), + [anon_sym_register] = ACTIONS(2253), + [anon_sym_hide] = ACTIONS(2253), + [anon_sym_hide_DASHenv] = ACTIONS(2253), + [anon_sym_overlay] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_not] = ACTIONS(2253), + [anon_sym_DOT_DOT_LT] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), + [sym_val_nothing] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [aux_sym_val_number_token1] = ACTIONS(2253), + [aux_sym_val_number_token2] = ACTIONS(2253), + [aux_sym_val_number_token3] = ACTIONS(2253), + [aux_sym_val_number_token4] = ACTIONS(2253), + [aux_sym_val_number_token5] = ACTIONS(2253), + [anon_sym_inf] = ACTIONS(2253), + [anon_sym_DASHinf] = ACTIONS(2253), + [anon_sym_NaN] = ACTIONS(2253), + [anon_sym_0b] = ACTIONS(2253), + [anon_sym_0o] = ACTIONS(2253), + [anon_sym_0x] = ACTIONS(2253), + [sym_val_date] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(3), + }, + [1029] = { + [sym_comment] = STATE(1029), + [ts_builtin_sym_end] = ACTIONS(2141), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_alias] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_let_DASHenv] = ACTIONS(2139), + [anon_sym_mut] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [sym_cmd_identifier] = ACTIONS(2139), + [anon_sym_LF] = ACTIONS(2141), + [anon_sym_def] = ACTIONS(2139), + [anon_sym_def_DASHenv] = ACTIONS(2139), + [anon_sym_export_DASHenv] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_error] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_do] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_source] = ACTIONS(2139), + [anon_sym_source_DASHenv] = ACTIONS(2139), + [anon_sym_register] = ACTIONS(2139), + [anon_sym_hide] = ACTIONS(2139), + [anon_sym_hide_DASHenv] = ACTIONS(2139), + [anon_sym_overlay] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2139), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2139), + [sym_val_nothing] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [aux_sym_val_number_token1] = ACTIONS(2139), + [aux_sym_val_number_token2] = ACTIONS(2139), + [aux_sym_val_number_token3] = ACTIONS(2139), + [aux_sym_val_number_token4] = ACTIONS(2139), + [aux_sym_val_number_token5] = ACTIONS(2139), + [anon_sym_inf] = ACTIONS(2139), + [anon_sym_DASHinf] = ACTIONS(2139), + [anon_sym_NaN] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2139), + [anon_sym_0o] = ACTIONS(2139), + [anon_sym_0x] = ACTIONS(2139), + [sym_val_date] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2139), + [sym__str_back_ticks] = ACTIONS(2139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(3), + }, + [1030] = { + [sym_comment] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_alias] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_let_DASHenv] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2065), + [sym_cmd_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_def] = ACTIONS(2065), + [anon_sym_def_DASHenv] = ACTIONS(2065), + [anon_sym_export_DASHenv] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_source] = ACTIONS(2065), + [anon_sym_source_DASHenv] = ACTIONS(2065), + [anon_sym_register] = ACTIONS(2065), + [anon_sym_hide] = ACTIONS(2065), + [anon_sym_hide_DASHenv] = ACTIONS(2065), + [anon_sym_overlay] = ACTIONS(2065), + [anon_sym_where] = ACTIONS(2065), + [anon_sym_not] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2065), + [sym_val_nothing] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym_val_number_token1] = ACTIONS(2065), + [aux_sym_val_number_token2] = ACTIONS(2065), + [aux_sym_val_number_token3] = ACTIONS(2065), + [aux_sym_val_number_token4] = ACTIONS(2065), + [aux_sym_val_number_token5] = ACTIONS(2065), + [anon_sym_inf] = ACTIONS(2065), + [anon_sym_DASHinf] = ACTIONS(2065), + [anon_sym_NaN] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2065), + [anon_sym_0o] = ACTIONS(2065), + [anon_sym_0x] = ACTIONS(2065), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(3), + }, + [1031] = { + [sym_comment] = STATE(1031), + [ts_builtin_sym_end] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2073), + [anon_sym_alias] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_let_DASHenv] = ACTIONS(2073), + [anon_sym_mut] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [sym_cmd_identifier] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_def] = ACTIONS(2073), + [anon_sym_def_DASHenv] = ACTIONS(2073), + [anon_sym_export_DASHenv] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_module] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_error] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_source] = ACTIONS(2073), + [anon_sym_source_DASHenv] = ACTIONS(2073), + [anon_sym_register] = ACTIONS(2073), + [anon_sym_hide] = ACTIONS(2073), + [anon_sym_hide_DASHenv] = ACTIONS(2073), + [anon_sym_overlay] = ACTIONS(2073), + [anon_sym_where] = ACTIONS(2073), + [anon_sym_not] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [sym_val_nothing] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = 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(2073), + [aux_sym_val_number_token5] = ACTIONS(2073), + [anon_sym_inf] = ACTIONS(2073), + [anon_sym_DASHinf] = ACTIONS(2073), + [anon_sym_NaN] = ACTIONS(2073), + [anon_sym_0b] = ACTIONS(2073), + [anon_sym_0o] = ACTIONS(2073), + [anon_sym_0x] = ACTIONS(2073), + [sym_val_date] = ACTIONS(2073), + [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_CARET] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), + }, + [1032] = { + [sym_comment] = STATE(1032), + [ts_builtin_sym_end] = ACTIONS(2277), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [sym_cmd_identifier] = ACTIONS(2275), + [anon_sym_LF] = ACTIONS(2277), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_def_DASHenv] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_where] = ACTIONS(2275), + [anon_sym_not] = ACTIONS(2275), + [anon_sym_DOT_DOT_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2275), + [sym_val_nothing] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [aux_sym_val_number_token1] = ACTIONS(2275), + [aux_sym_val_number_token2] = ACTIONS(2275), + [aux_sym_val_number_token3] = ACTIONS(2275), + [aux_sym_val_number_token4] = ACTIONS(2275), + [aux_sym_val_number_token5] = ACTIONS(2275), + [anon_sym_inf] = ACTIONS(2275), + [anon_sym_DASHinf] = ACTIONS(2275), + [anon_sym_NaN] = ACTIONS(2275), + [anon_sym_0b] = ACTIONS(2275), + [anon_sym_0o] = ACTIONS(2275), + [anon_sym_0x] = ACTIONS(2275), + [sym_val_date] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2275), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + }, + [1033] = { + [sym_comment] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2279), + [anon_sym_alias] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_let_DASHenv] = ACTIONS(2279), + [anon_sym_mut] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [sym_cmd_identifier] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2279), + [anon_sym_def_DASHenv] = ACTIONS(2279), + [anon_sym_export_DASHenv] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_module] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_do] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_source] = ACTIONS(2279), + [anon_sym_source_DASHenv] = ACTIONS(2279), + [anon_sym_register] = ACTIONS(2279), + [anon_sym_hide] = ACTIONS(2279), + [anon_sym_hide_DASHenv] = ACTIONS(2279), + [anon_sym_overlay] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_not] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [sym_val_nothing] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [aux_sym_val_number_token1] = ACTIONS(2279), + [aux_sym_val_number_token2] = ACTIONS(2279), + [aux_sym_val_number_token3] = ACTIONS(2279), + [aux_sym_val_number_token4] = ACTIONS(2279), + [aux_sym_val_number_token5] = ACTIONS(2279), + [anon_sym_inf] = ACTIONS(2279), + [anon_sym_DASHinf] = ACTIONS(2279), + [anon_sym_NaN] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2279), + [anon_sym_0o] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2279), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_CARET] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [1034] = { + [sym_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(2151), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_alias] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_let_DASHenv] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [sym_cmd_identifier] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2149), + [anon_sym_def_DASHenv] = ACTIONS(2149), + [anon_sym_export_DASHenv] = ACTIONS(2149), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_error] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_source] = ACTIONS(2149), + [anon_sym_source_DASHenv] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2149), + [anon_sym_hide] = ACTIONS(2149), + [anon_sym_hide_DASHenv] = ACTIONS(2149), + [anon_sym_overlay] = ACTIONS(2149), + [anon_sym_where] = ACTIONS(2149), + [anon_sym_not] = ACTIONS(2149), + [anon_sym_DOT_DOT_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2149), + [sym_val_nothing] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [aux_sym_val_number_token1] = ACTIONS(2149), + [aux_sym_val_number_token2] = ACTIONS(2149), + [aux_sym_val_number_token3] = ACTIONS(2149), + [aux_sym_val_number_token4] = ACTIONS(2149), + [aux_sym_val_number_token5] = ACTIONS(2149), + [anon_sym_inf] = ACTIONS(2149), + [anon_sym_DASHinf] = ACTIONS(2149), + [anon_sym_NaN] = ACTIONS(2149), + [anon_sym_0b] = ACTIONS(2149), + [anon_sym_0o] = ACTIONS(2149), + [anon_sym_0x] = ACTIONS(2149), + [sym_val_date] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [sym__str_single_quotes] = ACTIONS(2149), + [sym__str_back_ticks] = ACTIONS(2149), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(3), + }, + [1035] = { + [sym_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2279), + [anon_sym_alias] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_let_DASHenv] = ACTIONS(2279), + [anon_sym_mut] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [sym_cmd_identifier] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2279), + [anon_sym_def_DASHenv] = ACTIONS(2279), + [anon_sym_export_DASHenv] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_module] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_do] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_source] = ACTIONS(2279), + [anon_sym_source_DASHenv] = ACTIONS(2279), + [anon_sym_register] = ACTIONS(2279), + [anon_sym_hide] = ACTIONS(2279), + [anon_sym_hide_DASHenv] = ACTIONS(2279), + [anon_sym_overlay] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_not] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [sym_val_nothing] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [aux_sym_val_number_token1] = ACTIONS(2279), + [aux_sym_val_number_token2] = ACTIONS(2279), + [aux_sym_val_number_token3] = ACTIONS(2279), + [aux_sym_val_number_token4] = ACTIONS(2279), + [aux_sym_val_number_token5] = ACTIONS(2279), + [anon_sym_inf] = ACTIONS(2279), + [anon_sym_DASHinf] = ACTIONS(2279), + [anon_sym_NaN] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2279), + [anon_sym_0o] = ACTIONS(2279), + [anon_sym_0x] = ACTIONS(2279), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_CARET] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [1036] = { + [sym_comment] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(2079), + [anon_sym_export] = ACTIONS(2077), + [anon_sym_alias] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_let_DASHenv] = ACTIONS(2077), + [anon_sym_mut] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [sym_cmd_identifier] = ACTIONS(2077), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2077), + [anon_sym_def_DASHenv] = ACTIONS(2077), + [anon_sym_export_DASHenv] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_module] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_error] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_source] = ACTIONS(2077), + [anon_sym_source_DASHenv] = ACTIONS(2077), + [anon_sym_register] = ACTIONS(2077), + [anon_sym_hide] = ACTIONS(2077), + [anon_sym_hide_DASHenv] = ACTIONS(2077), + [anon_sym_overlay] = ACTIONS(2077), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_not] = ACTIONS(2077), + [anon_sym_DOT_DOT_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), + [sym_val_nothing] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = 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(2077), + [aux_sym_val_number_token5] = ACTIONS(2077), + [anon_sym_inf] = ACTIONS(2077), + [anon_sym_DASHinf] = ACTIONS(2077), + [anon_sym_NaN] = ACTIONS(2077), + [anon_sym_0b] = ACTIONS(2077), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(2077), + [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_CARET] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(3), + }, + [1037] = { + [sym_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(2095), + [anon_sym_export] = ACTIONS(2093), + [anon_sym_alias] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_let_DASHenv] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2093), + [sym_cmd_identifier] = ACTIONS(2093), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2093), + [anon_sym_def_DASHenv] = ACTIONS(2093), + [anon_sym_export_DASHenv] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_module] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2093), + [anon_sym_error] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_source] = ACTIONS(2093), + [anon_sym_source_DASHenv] = ACTIONS(2093), + [anon_sym_register] = ACTIONS(2093), + [anon_sym_hide] = ACTIONS(2093), + [anon_sym_hide_DASHenv] = ACTIONS(2093), + [anon_sym_overlay] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_not] = ACTIONS(2093), + [anon_sym_DOT_DOT_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2093), + [sym_val_nothing] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [aux_sym_val_number_token1] = ACTIONS(2093), + [aux_sym_val_number_token2] = ACTIONS(2093), + [aux_sym_val_number_token3] = ACTIONS(2093), + [aux_sym_val_number_token4] = ACTIONS(2093), + [aux_sym_val_number_token5] = ACTIONS(2093), + [anon_sym_inf] = ACTIONS(2093), + [anon_sym_DASHinf] = ACTIONS(2093), + [anon_sym_NaN] = ACTIONS(2093), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2093), + [anon_sym_0x] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2093), + [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_CARET] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(3), + }, + [1038] = { + [sym_ctrl_do] = STATE(850), + [sym_ctrl_if] = STATE(850), + [sym_ctrl_match] = STATE(850), + [sym_ctrl_try] = STATE(850), + [sym__expression] = STATE(2692), + [sym_expr_unary] = STATE(2630), + [sym_expr_binary] = STATE(2630), + [sym_expr_parenthesized] = STATE(2274), + [sym_val_range] = STATE(2630), + [sym__value] = STATE(2630), + [sym_val_bool] = STATE(2688), + [sym_val_variable] = STATE(2688), + [sym__var] = STATE(2259), + [sym_val_number] = STATE(128), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2486), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2690), + [sym__inter_double_quotes] = STATE(2691), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_comment] = STATE(1038), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(239), + [anon_sym_DOT_DOT_LT] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(243), + [sym_val_nothing] = ACTIONS(245), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [aux_sym_val_number_token1] = ACTIONS(249), + [aux_sym_val_number_token2] = ACTIONS(249), + [aux_sym_val_number_token3] = ACTIONS(249), + [aux_sym_val_number_token4] = ACTIONS(249), + [aux_sym_val_number_token5] = ACTIONS(249), + [anon_sym_inf] = ACTIONS(249), + [anon_sym_DASHinf] = ACTIONS(249), + [anon_sym_NaN] = ACTIONS(249), + [anon_sym_0b] = ACTIONS(253), + [anon_sym_0o] = ACTIONS(253), + [anon_sym_0x] = ACTIONS(253), + [sym_val_date] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym__str_single_quotes] = ACTIONS(2365), + [sym__str_back_ticks] = ACTIONS(2365), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(3), + }, + [1039] = { + [sym_comment] = STATE(1039), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2373), + [sym_cmd_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2376), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_def_DASHenv] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2371), + [anon_sym_not] = ACTIONS(2371), + [anon_sym_DOT_DOT_LT] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2371), + [sym_val_nothing] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [aux_sym_val_number_token1] = ACTIONS(2371), + [aux_sym_val_number_token2] = ACTIONS(2371), + [aux_sym_val_number_token3] = ACTIONS(2371), + [aux_sym_val_number_token4] = ACTIONS(2371), + [aux_sym_val_number_token5] = ACTIONS(2371), + [anon_sym_inf] = ACTIONS(2371), + [anon_sym_DASHinf] = ACTIONS(2371), + [anon_sym_NaN] = ACTIONS(2371), + [anon_sym_0b] = ACTIONS(2371), + [anon_sym_0o] = ACTIONS(2371), + [anon_sym_0x] = ACTIONS(2371), + [sym_val_date] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym__str_single_quotes] = ACTIONS(2371), + [sym__str_back_ticks] = ACTIONS(2371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(3), + }, + [1040] = { + [sym_comment] = STATE(1040), + [ts_builtin_sym_end] = ACTIONS(2053), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2051), + [sym_cmd_identifier] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_def_DASHenv] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_where] = ACTIONS(2051), + [anon_sym_not] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [sym_val_nothing] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [aux_sym_val_number_token1] = ACTIONS(2051), + [aux_sym_val_number_token2] = ACTIONS(2051), + [aux_sym_val_number_token3] = ACTIONS(2051), + [aux_sym_val_number_token4] = ACTIONS(2051), + [aux_sym_val_number_token5] = ACTIONS(2051), + [anon_sym_inf] = ACTIONS(2051), + [anon_sym_DASHinf] = ACTIONS(2051), + [anon_sym_NaN] = ACTIONS(2051), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + }, + [1041] = { + [sym_comment] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [sym_cmd_identifier] = ACTIONS(994), + [anon_sym_LF] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_def_DASHenv] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_not] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [sym_val_nothing] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(994), + [anon_sym_DASHinf] = ACTIONS(994), + [anon_sym_NaN] = ACTIONS(994), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [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_CARET] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(3), + }, + [1042] = { + [sym_comment] = STATE(1042), + [ts_builtin_sym_end] = ACTIONS(2179), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [sym_cmd_identifier] = ACTIONS(2177), + [anon_sym_LF] = ACTIONS(2179), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_def_DASHenv] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_not] = ACTIONS(2177), + [anon_sym_DOT_DOT_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2177), + [sym_val_nothing] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [aux_sym_val_number_token1] = ACTIONS(2177), + [aux_sym_val_number_token2] = ACTIONS(2177), + [aux_sym_val_number_token3] = ACTIONS(2177), + [aux_sym_val_number_token4] = ACTIONS(2177), + [aux_sym_val_number_token5] = ACTIONS(2177), + [anon_sym_inf] = ACTIONS(2177), + [anon_sym_DASHinf] = ACTIONS(2177), + [anon_sym_NaN] = ACTIONS(2177), + [anon_sym_0b] = ACTIONS(2177), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym__str_single_quotes] = ACTIONS(2177), + [sym__str_back_ticks] = ACTIONS(2177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(3), + }, + [1043] = { + [sym_comment] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(2341), + [anon_sym_export] = ACTIONS(2339), + [anon_sym_alias] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_let_DASHenv] = ACTIONS(2339), + [anon_sym_mut] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [sym_cmd_identifier] = ACTIONS(2339), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2339), + [anon_sym_def_DASHenv] = ACTIONS(2339), + [anon_sym_export_DASHenv] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_module] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_error] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_do] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_source] = ACTIONS(2339), + [anon_sym_source_DASHenv] = ACTIONS(2339), + [anon_sym_register] = ACTIONS(2339), + [anon_sym_hide] = ACTIONS(2339), + [anon_sym_hide_DASHenv] = ACTIONS(2339), + [anon_sym_overlay] = ACTIONS(2339), + [anon_sym_where] = ACTIONS(2339), + [anon_sym_not] = ACTIONS(2339), + [anon_sym_DOT_DOT_LT] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), + [sym_val_nothing] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [aux_sym_val_number_token1] = ACTIONS(2339), + [aux_sym_val_number_token2] = ACTIONS(2339), + [aux_sym_val_number_token3] = ACTIONS(2339), + [aux_sym_val_number_token4] = ACTIONS(2339), + [aux_sym_val_number_token5] = ACTIONS(2339), + [anon_sym_inf] = ACTIONS(2339), + [anon_sym_DASHinf] = ACTIONS(2339), + [anon_sym_NaN] = ACTIONS(2339), + [anon_sym_0b] = ACTIONS(2339), + [anon_sym_0o] = ACTIONS(2339), + [anon_sym_0x] = ACTIONS(2339), + [sym_val_date] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym__str_single_quotes] = ACTIONS(2339), + [sym__str_back_ticks] = ACTIONS(2339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), + [anon_sym_CARET] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(3), + }, + [1044] = { + [sym_comment] = STATE(1044), + [ts_builtin_sym_end] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_alias] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_let_DASHenv] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [sym_cmd_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_def] = ACTIONS(2189), + [anon_sym_def_DASHenv] = ACTIONS(2189), + [anon_sym_export_DASHenv] = ACTIONS(2189), + [anon_sym_extern] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_error] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_loop] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_source] = ACTIONS(2189), + [anon_sym_source_DASHenv] = ACTIONS(2189), + [anon_sym_register] = ACTIONS(2189), + [anon_sym_hide] = ACTIONS(2189), + [anon_sym_hide_DASHenv] = ACTIONS(2189), + [anon_sym_overlay] = ACTIONS(2189), + [anon_sym_where] = ACTIONS(2189), + [anon_sym_not] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), + [sym_val_nothing] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [aux_sym_val_number_token1] = ACTIONS(2189), + [aux_sym_val_number_token2] = ACTIONS(2189), + [aux_sym_val_number_token3] = ACTIONS(2189), + [aux_sym_val_number_token4] = ACTIONS(2189), + [aux_sym_val_number_token5] = ACTIONS(2189), + [anon_sym_inf] = ACTIONS(2189), + [anon_sym_DASHinf] = ACTIONS(2189), + [anon_sym_NaN] = ACTIONS(2189), + [anon_sym_0b] = ACTIONS(2189), + [anon_sym_0o] = ACTIONS(2189), + [anon_sym_0x] = ACTIONS(2189), + [sym_val_date] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2189), + [sym__str_back_ticks] = ACTIONS(2189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(3), + }, + [1045] = { + [sym_comment] = STATE(1045), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [sym_cmd_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_def_DASHenv] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [sym_val_nothing] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [aux_sym_val_number_token1] = ACTIONS(2097), + [aux_sym_val_number_token2] = ACTIONS(2097), + [aux_sym_val_number_token3] = ACTIONS(2097), + [aux_sym_val_number_token4] = ACTIONS(2097), + [aux_sym_val_number_token5] = ACTIONS(2097), + [anon_sym_inf] = ACTIONS(2097), + [anon_sym_DASHinf] = ACTIONS(2097), + [anon_sym_NaN] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(3), + }, + [1046] = { + [sym_comment] = STATE(1046), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_alias] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_let_DASHenv] = ACTIONS(2381), + [anon_sym_mut] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [sym_cmd_identifier] = ACTIONS(2381), + [anon_sym_LF] = ACTIONS(2386), + [anon_sym_def] = ACTIONS(2381), + [anon_sym_def_DASHenv] = ACTIONS(2381), + [anon_sym_export_DASHenv] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_source] = ACTIONS(2381), + [anon_sym_source_DASHenv] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_hide] = ACTIONS(2381), + [anon_sym_hide_DASHenv] = ACTIONS(2381), + [anon_sym_overlay] = ACTIONS(2381), + [anon_sym_where] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_DOT_DOT_LT] = ACTIONS(2381), + [anon_sym_DOT_DOT] = ACTIONS(2381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2381), + [sym_val_nothing] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [aux_sym_val_number_token1] = ACTIONS(2381), + [aux_sym_val_number_token2] = ACTIONS(2381), + [aux_sym_val_number_token3] = ACTIONS(2381), + [aux_sym_val_number_token4] = ACTIONS(2381), + [aux_sym_val_number_token5] = ACTIONS(2381), + [anon_sym_inf] = ACTIONS(2381), + [anon_sym_DASHinf] = ACTIONS(2381), + [anon_sym_NaN] = ACTIONS(2381), + [anon_sym_0b] = ACTIONS(2381), + [anon_sym_0o] = ACTIONS(2381), + [anon_sym_0x] = ACTIONS(2381), + [sym_val_date] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2381), + [anon_sym_CARET] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [1047] = { + [sym_comment] = STATE(1047), + [ts_builtin_sym_end] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2143), + [anon_sym_alias] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_let_DASHenv] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [sym_cmd_identifier] = ACTIONS(2143), + [anon_sym_LF] = ACTIONS(2145), + [anon_sym_def] = ACTIONS(2143), + [anon_sym_def_DASHenv] = ACTIONS(2143), + [anon_sym_export_DASHenv] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_module] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2143), + [anon_sym_error] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_do] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_source] = ACTIONS(2143), + [anon_sym_source_DASHenv] = ACTIONS(2143), + [anon_sym_register] = ACTIONS(2143), + [anon_sym_hide] = ACTIONS(2143), + [anon_sym_hide_DASHenv] = ACTIONS(2143), + [anon_sym_overlay] = ACTIONS(2143), + [anon_sym_where] = ACTIONS(2143), + [anon_sym_not] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), + [sym_val_nothing] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [aux_sym_val_number_token1] = ACTIONS(2143), + [aux_sym_val_number_token2] = ACTIONS(2143), + [aux_sym_val_number_token3] = ACTIONS(2143), + [aux_sym_val_number_token4] = ACTIONS(2143), + [aux_sym_val_number_token5] = ACTIONS(2143), + [anon_sym_inf] = ACTIONS(2143), + [anon_sym_DASHinf] = ACTIONS(2143), + [anon_sym_NaN] = ACTIONS(2143), + [anon_sym_0b] = ACTIONS(2143), + [anon_sym_0o] = ACTIONS(2143), + [anon_sym_0x] = ACTIONS(2143), + [sym_val_date] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [sym__str_single_quotes] = ACTIONS(2143), + [sym__str_back_ticks] = ACTIONS(2143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(3), + }, + [1048] = { + [sym_comment] = STATE(1048), + [ts_builtin_sym_end] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2135), + [anon_sym_alias] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_let_DASHenv] = ACTIONS(2135), + [anon_sym_mut] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [sym_cmd_identifier] = ACTIONS(2135), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_def_DASHenv] = ACTIONS(2135), + [anon_sym_export_DASHenv] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_module] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_do] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_source] = ACTIONS(2135), + [anon_sym_source_DASHenv] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2135), + [anon_sym_hide] = ACTIONS(2135), + [anon_sym_hide_DASHenv] = ACTIONS(2135), + [anon_sym_overlay] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), + [sym_val_nothing] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [aux_sym_val_number_token1] = ACTIONS(2135), + [aux_sym_val_number_token2] = ACTIONS(2135), + [aux_sym_val_number_token3] = ACTIONS(2135), + [aux_sym_val_number_token4] = ACTIONS(2135), + [aux_sym_val_number_token5] = ACTIONS(2135), + [anon_sym_inf] = ACTIONS(2135), + [anon_sym_DASHinf] = ACTIONS(2135), + [anon_sym_NaN] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2135), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(3), + }, + [1049] = { + [sym_comment] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2135), + [anon_sym_alias] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_let_DASHenv] = ACTIONS(2135), + [anon_sym_mut] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [sym_cmd_identifier] = ACTIONS(2135), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_def_DASHenv] = ACTIONS(2135), + [anon_sym_export_DASHenv] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_module] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_do] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_source] = ACTIONS(2135), + [anon_sym_source_DASHenv] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2135), + [anon_sym_hide] = ACTIONS(2135), + [anon_sym_hide_DASHenv] = ACTIONS(2135), + [anon_sym_overlay] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2135), + [sym_val_nothing] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [aux_sym_val_number_token1] = ACTIONS(2135), + [aux_sym_val_number_token2] = ACTIONS(2135), + [aux_sym_val_number_token3] = ACTIONS(2135), + [aux_sym_val_number_token4] = ACTIONS(2135), + [aux_sym_val_number_token5] = ACTIONS(2135), + [anon_sym_inf] = ACTIONS(2135), + [anon_sym_DASHinf] = ACTIONS(2135), + [anon_sym_NaN] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2135), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(3), + }, + [1050] = { + [sym_comment] = STATE(1050), + [ts_builtin_sym_end] = ACTIONS(2133), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [sym_cmd_identifier] = ACTIONS(2131), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_def_DASHenv] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_where] = ACTIONS(2131), + [anon_sym_not] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [sym_val_nothing] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [aux_sym_val_number_token1] = ACTIONS(2131), + [aux_sym_val_number_token2] = ACTIONS(2131), + [aux_sym_val_number_token3] = ACTIONS(2131), + [aux_sym_val_number_token4] = ACTIONS(2131), + [aux_sym_val_number_token5] = ACTIONS(2131), + [anon_sym_inf] = ACTIONS(2131), + [anon_sym_DASHinf] = ACTIONS(2131), + [anon_sym_NaN] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), + }, + [1051] = { + [sym_comment] = STATE(1051), + [ts_builtin_sym_end] = ACTIONS(2303), + [anon_sym_export] = ACTIONS(2301), + [anon_sym_alias] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_let_DASHenv] = ACTIONS(2301), + [anon_sym_mut] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2301), + [sym_cmd_identifier] = ACTIONS(2301), + [anon_sym_LF] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2301), + [anon_sym_def_DASHenv] = ACTIONS(2301), + [anon_sym_export_DASHenv] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_module] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_error] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_source] = ACTIONS(2301), + [anon_sym_source_DASHenv] = ACTIONS(2301), + [anon_sym_register] = ACTIONS(2301), + [anon_sym_hide] = ACTIONS(2301), + [anon_sym_hide_DASHenv] = ACTIONS(2301), + [anon_sym_overlay] = ACTIONS(2301), + [anon_sym_where] = ACTIONS(2301), + [anon_sym_not] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [sym_val_nothing] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [aux_sym_val_number_token1] = ACTIONS(2301), + [aux_sym_val_number_token2] = ACTIONS(2301), + [aux_sym_val_number_token3] = ACTIONS(2301), + [aux_sym_val_number_token4] = ACTIONS(2301), + [aux_sym_val_number_token5] = ACTIONS(2301), + [anon_sym_inf] = ACTIONS(2301), + [anon_sym_DASHinf] = ACTIONS(2301), + [anon_sym_NaN] = ACTIONS(2301), + [anon_sym_0b] = ACTIONS(2301), + [anon_sym_0o] = ACTIONS(2301), + [anon_sym_0x] = ACTIONS(2301), + [sym_val_date] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym__str_single_quotes] = ACTIONS(2301), + [sym__str_back_ticks] = ACTIONS(2301), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(3), + }, + [1052] = { + [sym_comment] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_alias] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_let_DASHenv] = ACTIONS(1029), + [anon_sym_mut] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [sym_cmd_identifier] = ACTIONS(1029), + [anon_sym_LF] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1029), + [anon_sym_def_DASHenv] = ACTIONS(1029), + [anon_sym_export_DASHenv] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_module] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_source] = ACTIONS(1029), + [anon_sym_source_DASHenv] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_hide] = ACTIONS(1029), + [anon_sym_hide_DASHenv] = ACTIONS(1029), + [anon_sym_overlay] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_not] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [sym_val_nothing] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [aux_sym_val_number_token1] = ACTIONS(1029), + [aux_sym_val_number_token2] = ACTIONS(1029), + [aux_sym_val_number_token3] = ACTIONS(1029), + [aux_sym_val_number_token4] = ACTIONS(1029), + [aux_sym_val_number_token5] = ACTIONS(1029), + [anon_sym_inf] = ACTIONS(1029), + [anon_sym_DASHinf] = ACTIONS(1029), + [anon_sym_NaN] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1029), + [anon_sym_0o] = ACTIONS(1029), + [anon_sym_0x] = ACTIONS(1029), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(3), + }, + [1053] = { + [sym_comment] = STATE(1053), + [ts_builtin_sym_end] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2127), + [anon_sym_alias] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_let_DASHenv] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [sym_cmd_identifier] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2129), + [anon_sym_def] = ACTIONS(2127), + [anon_sym_def_DASHenv] = ACTIONS(2127), + [anon_sym_export_DASHenv] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_module] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2127), + [anon_sym_error] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_do] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_source] = ACTIONS(2127), + [anon_sym_source_DASHenv] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2127), + [anon_sym_hide] = ACTIONS(2127), + [anon_sym_hide_DASHenv] = ACTIONS(2127), + [anon_sym_overlay] = ACTIONS(2127), + [anon_sym_where] = ACTIONS(2127), + [anon_sym_not] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [sym_val_nothing] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [aux_sym_val_number_token1] = ACTIONS(2127), + [aux_sym_val_number_token2] = ACTIONS(2127), + [aux_sym_val_number_token3] = ACTIONS(2127), + [aux_sym_val_number_token4] = ACTIONS(2127), + [aux_sym_val_number_token5] = ACTIONS(2127), + [anon_sym_inf] = ACTIONS(2127), + [anon_sym_DASHinf] = ACTIONS(2127), + [anon_sym_NaN] = ACTIONS(2127), + [anon_sym_0b] = ACTIONS(2127), + [anon_sym_0o] = ACTIONS(2127), + [anon_sym_0x] = ACTIONS(2127), + [sym_val_date] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(3), + }, + [1054] = { + [sym_comment] = STATE(1054), + [ts_builtin_sym_end] = ACTIONS(2337), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [sym_cmd_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_def_DASHenv] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_where] = ACTIONS(2335), + [anon_sym_not] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [sym_val_nothing] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym_val_number_token1] = ACTIONS(2335), + [aux_sym_val_number_token2] = ACTIONS(2335), + [aux_sym_val_number_token3] = ACTIONS(2335), + [aux_sym_val_number_token4] = ACTIONS(2335), + [aux_sym_val_number_token5] = ACTIONS(2335), + [anon_sym_inf] = ACTIONS(2335), + [anon_sym_DASHinf] = ACTIONS(2335), + [anon_sym_NaN] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(3), + }, + [1055] = { + [sym_comment] = STATE(1055), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2393), + [sym_cmd_identifier] = ACTIONS(2391), + [anon_sym_LF] = ACTIONS(2396), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_def_DASHenv] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_not] = ACTIONS(2391), + [anon_sym_DOT_DOT_LT] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2391), + [sym_val_nothing] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [aux_sym_val_number_token1] = ACTIONS(2391), + [aux_sym_val_number_token2] = ACTIONS(2391), + [aux_sym_val_number_token3] = ACTIONS(2391), + [aux_sym_val_number_token4] = ACTIONS(2391), + [aux_sym_val_number_token5] = ACTIONS(2391), + [anon_sym_inf] = ACTIONS(2391), + [anon_sym_DASHinf] = ACTIONS(2391), + [anon_sym_NaN] = ACTIONS(2391), + [anon_sym_0b] = ACTIONS(2391), + [anon_sym_0o] = ACTIONS(2391), + [anon_sym_0x] = ACTIONS(2391), + [sym_val_date] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2391), + [anon_sym_CARET] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(3), + }, + [1056] = { + [sym_comment] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2239), + [anon_sym_alias] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_let_DASHenv] = ACTIONS(2239), + [anon_sym_mut] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [sym_cmd_identifier] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2239), + [anon_sym_def_DASHenv] = ACTIONS(2239), + [anon_sym_export_DASHenv] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2239), + [anon_sym_module] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2239), + [anon_sym_error] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_do] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_source] = ACTIONS(2239), + [anon_sym_source_DASHenv] = ACTIONS(2239), + [anon_sym_register] = ACTIONS(2239), + [anon_sym_hide] = ACTIONS(2239), + [anon_sym_hide_DASHenv] = ACTIONS(2239), + [anon_sym_overlay] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_not] = ACTIONS(2239), + [anon_sym_DOT_DOT_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2239), + [sym_val_nothing] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [aux_sym_val_number_token1] = ACTIONS(2239), + [aux_sym_val_number_token2] = ACTIONS(2239), + [aux_sym_val_number_token3] = ACTIONS(2239), + [aux_sym_val_number_token4] = ACTIONS(2239), + [aux_sym_val_number_token5] = ACTIONS(2239), + [anon_sym_inf] = ACTIONS(2239), + [anon_sym_DASHinf] = ACTIONS(2239), + [anon_sym_NaN] = ACTIONS(2239), + [anon_sym_0b] = ACTIONS(2239), + [anon_sym_0o] = ACTIONS(2239), + [anon_sym_0x] = ACTIONS(2239), + [sym_val_date] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [sym__str_single_quotes] = ACTIONS(2239), + [sym__str_back_ticks] = ACTIONS(2239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + }, + [1057] = { + [sym_comment] = STATE(1057), + [ts_builtin_sym_end] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_DASHenv] = ACTIONS(2319), + [anon_sym_mut] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [sym_cmd_identifier] = ACTIONS(2319), + [anon_sym_LF] = ACTIONS(2321), + [anon_sym_def] = ACTIONS(2319), + [anon_sym_def_DASHenv] = ACTIONS(2319), + [anon_sym_export_DASHenv] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_error] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_source] = ACTIONS(2319), + [anon_sym_source_DASHenv] = ACTIONS(2319), + [anon_sym_register] = ACTIONS(2319), + [anon_sym_hide] = ACTIONS(2319), + [anon_sym_hide_DASHenv] = ACTIONS(2319), + [anon_sym_overlay] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2319), + [anon_sym_not] = ACTIONS(2319), + [anon_sym_DOT_DOT_LT] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2319), + [sym_val_nothing] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [aux_sym_val_number_token1] = ACTIONS(2319), + [aux_sym_val_number_token2] = ACTIONS(2319), + [aux_sym_val_number_token3] = ACTIONS(2319), + [aux_sym_val_number_token4] = ACTIONS(2319), + [aux_sym_val_number_token5] = ACTIONS(2319), + [anon_sym_inf] = ACTIONS(2319), + [anon_sym_DASHinf] = ACTIONS(2319), + [anon_sym_NaN] = ACTIONS(2319), + [anon_sym_0b] = ACTIONS(2319), + [anon_sym_0o] = ACTIONS(2319), + [anon_sym_0x] = ACTIONS(2319), + [sym_val_date] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(3), + }, + [1058] = { + [sym_comment] = STATE(1058), + [ts_builtin_sym_end] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [sym_cmd_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_def_DASHenv] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_DOT_DOT_LT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2315), + [sym_val_nothing] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [aux_sym_val_number_token1] = ACTIONS(2315), + [aux_sym_val_number_token2] = ACTIONS(2315), + [aux_sym_val_number_token3] = ACTIONS(2315), + [aux_sym_val_number_token4] = ACTIONS(2315), + [aux_sym_val_number_token5] = ACTIONS(2315), + [anon_sym_inf] = ACTIONS(2315), + [anon_sym_DASHinf] = ACTIONS(2315), + [anon_sym_NaN] = ACTIONS(2315), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [sym_val_date] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym__str_single_quotes] = ACTIONS(2315), + [sym__str_back_ticks] = ACTIONS(2315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(3), + }, + [1059] = { + [sym_comment] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_alias] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_let_DASHenv] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), + [sym_cmd_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2219), + [anon_sym_def] = ACTIONS(2217), + [anon_sym_def_DASHenv] = ACTIONS(2217), + [anon_sym_export_DASHenv] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_source] = ACTIONS(2217), + [anon_sym_source_DASHenv] = ACTIONS(2217), + [anon_sym_register] = ACTIONS(2217), + [anon_sym_hide] = ACTIONS(2217), + [anon_sym_hide_DASHenv] = ACTIONS(2217), + [anon_sym_overlay] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(2217), + [anon_sym_not] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2217), + [sym_val_nothing] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [aux_sym_val_number_token1] = ACTIONS(2217), + [aux_sym_val_number_token2] = ACTIONS(2217), + [aux_sym_val_number_token3] = ACTIONS(2217), + [aux_sym_val_number_token4] = ACTIONS(2217), + [aux_sym_val_number_token5] = ACTIONS(2217), + [anon_sym_inf] = ACTIONS(2217), + [anon_sym_DASHinf] = ACTIONS(2217), + [anon_sym_NaN] = ACTIONS(2217), + [anon_sym_0b] = ACTIONS(2217), + [anon_sym_0o] = ACTIONS(2217), + [anon_sym_0x] = ACTIONS(2217), + [sym_val_date] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + }, + [1060] = { + [sym_comment] = STATE(1060), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_alias] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_let_DASHenv] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2403), + [sym_cmd_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2406), + [anon_sym_def] = ACTIONS(2401), + [anon_sym_def_DASHenv] = ACTIONS(2401), + [anon_sym_export_DASHenv] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_source] = ACTIONS(2401), + [anon_sym_source_DASHenv] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), + [sym_val_nothing] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [aux_sym_val_number_token1] = ACTIONS(2401), + [aux_sym_val_number_token2] = ACTIONS(2401), + [aux_sym_val_number_token3] = ACTIONS(2401), + [aux_sym_val_number_token4] = ACTIONS(2401), + [aux_sym_val_number_token5] = ACTIONS(2401), + [anon_sym_inf] = ACTIONS(2401), + [anon_sym_DASHinf] = ACTIONS(2401), + [anon_sym_NaN] = ACTIONS(2401), + [anon_sym_0b] = ACTIONS(2401), + [anon_sym_0o] = ACTIONS(2401), + [anon_sym_0x] = ACTIONS(2401), + [sym_val_date] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2401), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(3), + }, + [1061] = { + [sym_comment] = STATE(1061), + [ts_builtin_sym_end] = ACTIONS(2211), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_alias] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_let_DASHenv] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2209), + [sym_cmd_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_def] = ACTIONS(2209), + [anon_sym_def_DASHenv] = ACTIONS(2209), + [anon_sym_export_DASHenv] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_module] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_error] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_source] = ACTIONS(2209), + [anon_sym_source_DASHenv] = ACTIONS(2209), + [anon_sym_register] = ACTIONS(2209), + [anon_sym_hide] = ACTIONS(2209), + [anon_sym_hide_DASHenv] = ACTIONS(2209), + [anon_sym_overlay] = ACTIONS(2209), + [anon_sym_where] = ACTIONS(2209), + [anon_sym_not] = ACTIONS(2209), + [anon_sym_DOT_DOT_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2209), + [sym_val_nothing] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [aux_sym_val_number_token1] = ACTIONS(2209), + [aux_sym_val_number_token2] = ACTIONS(2209), + [aux_sym_val_number_token3] = ACTIONS(2209), + [aux_sym_val_number_token4] = ACTIONS(2209), + [aux_sym_val_number_token5] = ACTIONS(2209), + [anon_sym_inf] = ACTIONS(2209), + [anon_sym_DASHinf] = ACTIONS(2209), + [anon_sym_NaN] = ACTIONS(2209), + [anon_sym_0b] = ACTIONS(2209), + [anon_sym_0o] = ACTIONS(2209), + [anon_sym_0x] = ACTIONS(2209), + [sym_val_date] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym__str_single_quotes] = ACTIONS(2209), + [sym__str_back_ticks] = ACTIONS(2209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(3), + }, + [1062] = { + [sym_comment] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [sym_cmd_identifier] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_def_DASHenv] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_not] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [sym_val_nothing] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(980), + [anon_sym_DASHinf] = ACTIONS(980), + [anon_sym_NaN] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [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_CARET] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + }, + [1063] = { + [sym_comment] = STATE(1063), + [ts_builtin_sym_end] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2283), + [anon_sym_alias] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_let_DASHenv] = ACTIONS(2283), + [anon_sym_mut] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [sym_cmd_identifier] = ACTIONS(2283), + [anon_sym_LF] = ACTIONS(2285), + [anon_sym_def] = ACTIONS(2283), + [anon_sym_def_DASHenv] = ACTIONS(2283), + [anon_sym_export_DASHenv] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym_module] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_DOLLAR] = ACTIONS(2283), + [anon_sym_error] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_source] = ACTIONS(2283), + [anon_sym_source_DASHenv] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_hide] = ACTIONS(2283), + [anon_sym_hide_DASHenv] = ACTIONS(2283), + [anon_sym_overlay] = ACTIONS(2283), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_DOT_DOT_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2283), + [sym_val_nothing] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2283), + [anon_sym_false] = ACTIONS(2283), + [aux_sym_val_number_token1] = ACTIONS(2283), + [aux_sym_val_number_token2] = ACTIONS(2283), + [aux_sym_val_number_token3] = ACTIONS(2283), + [aux_sym_val_number_token4] = ACTIONS(2283), + [aux_sym_val_number_token5] = ACTIONS(2283), + [anon_sym_inf] = ACTIONS(2283), + [anon_sym_DASHinf] = ACTIONS(2283), + [anon_sym_NaN] = ACTIONS(2283), + [anon_sym_0b] = ACTIONS(2283), + [anon_sym_0o] = ACTIONS(2283), + [anon_sym_0x] = ACTIONS(2283), + [sym_val_date] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2283), + [sym__str_single_quotes] = ACTIONS(2283), + [sym__str_back_ticks] = ACTIONS(2283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(3), + }, + [1064] = { + [sym_comment] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(2207), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_alias] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_let_DASHenv] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [sym_cmd_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2205), + [anon_sym_def_DASHenv] = ACTIONS(2205), + [anon_sym_export_DASHenv] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_error] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_source] = ACTIONS(2205), + [anon_sym_source_DASHenv] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_hide] = ACTIONS(2205), + [anon_sym_hide_DASHenv] = ACTIONS(2205), + [anon_sym_overlay] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_not] = ACTIONS(2205), + [anon_sym_DOT_DOT_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2205), + [sym_val_nothing] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [aux_sym_val_number_token1] = ACTIONS(2205), + [aux_sym_val_number_token2] = ACTIONS(2205), + [aux_sym_val_number_token3] = ACTIONS(2205), + [aux_sym_val_number_token4] = ACTIONS(2205), + [aux_sym_val_number_token5] = ACTIONS(2205), + [anon_sym_inf] = ACTIONS(2205), + [anon_sym_DASHinf] = ACTIONS(2205), + [anon_sym_NaN] = ACTIONS(2205), + [anon_sym_0b] = ACTIONS(2205), + [anon_sym_0o] = ACTIONS(2205), + [anon_sym_0x] = ACTIONS(2205), + [sym_val_date] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [sym__str_single_quotes] = ACTIONS(2205), + [sym__str_back_ticks] = ACTIONS(2205), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(3), + }, + [1065] = { + [sym_comment] = STATE(1065), + [ts_builtin_sym_end] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [sym_cmd_identifier] = ACTIONS(2287), + [anon_sym_LF] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_def_DASHenv] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_where] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_DOT_DOT_LT] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2287), + [sym_val_nothing] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [aux_sym_val_number_token1] = ACTIONS(2287), + [aux_sym_val_number_token2] = ACTIONS(2287), + [aux_sym_val_number_token3] = ACTIONS(2287), + [aux_sym_val_number_token4] = ACTIONS(2287), + [aux_sym_val_number_token5] = ACTIONS(2287), + [anon_sym_inf] = ACTIONS(2287), + [anon_sym_DASHinf] = ACTIONS(2287), + [anon_sym_NaN] = ACTIONS(2287), + [anon_sym_0b] = ACTIONS(2287), + [anon_sym_0o] = ACTIONS(2287), + [anon_sym_0x] = ACTIONS(2287), + [sym_val_date] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2287), + [sym__str_single_quotes] = ACTIONS(2287), + [sym__str_back_ticks] = ACTIONS(2287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + }, + [1066] = { + [sym_comment] = STATE(1066), + [ts_builtin_sym_end] = ACTIONS(2313), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [sym_cmd_identifier] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_def_DASHenv] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_not] = ACTIONS(2311), + [anon_sym_DOT_DOT_LT] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2311), + [sym_val_nothing] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [aux_sym_val_number_token1] = ACTIONS(2311), + [aux_sym_val_number_token2] = ACTIONS(2311), + [aux_sym_val_number_token3] = ACTIONS(2311), + [aux_sym_val_number_token4] = ACTIONS(2311), + [aux_sym_val_number_token5] = ACTIONS(2311), + [anon_sym_inf] = ACTIONS(2311), + [anon_sym_DASHinf] = ACTIONS(2311), + [anon_sym_NaN] = ACTIONS(2311), + [anon_sym_0b] = ACTIONS(2311), + [anon_sym_0o] = ACTIONS(2311), + [anon_sym_0x] = ACTIONS(2311), + [sym_val_date] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2311), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), + }, + [1067] = { + [sym_comment] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_alias] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_let_DASHenv] = ACTIONS(2161), + [anon_sym_mut] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2163), + [sym_cmd_identifier] = ACTIONS(2161), + [anon_sym_LF] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2161), + [anon_sym_def_DASHenv] = ACTIONS(2161), + [anon_sym_export_DASHenv] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_error] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_source] = ACTIONS(2161), + [anon_sym_source_DASHenv] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_hide] = ACTIONS(2161), + [anon_sym_hide_DASHenv] = ACTIONS(2161), + [anon_sym_overlay] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_not] = ACTIONS(2161), + [anon_sym_DOT_DOT_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2161), + [sym_val_nothing] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [aux_sym_val_number_token1] = ACTIONS(2161), + [aux_sym_val_number_token2] = ACTIONS(2161), + [aux_sym_val_number_token3] = ACTIONS(2161), + [aux_sym_val_number_token4] = ACTIONS(2161), + [aux_sym_val_number_token5] = ACTIONS(2161), + [anon_sym_inf] = ACTIONS(2161), + [anon_sym_DASHinf] = ACTIONS(2161), + [anon_sym_NaN] = ACTIONS(2161), + [anon_sym_0b] = ACTIONS(2161), + [anon_sym_0o] = ACTIONS(2161), + [anon_sym_0x] = ACTIONS(2161), + [sym_val_date] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym__str_single_quotes] = ACTIONS(2161), + [sym__str_back_ticks] = ACTIONS(2161), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2161), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(3), + }, + [1068] = { + [sym_comment] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(2155), + [anon_sym_export] = ACTIONS(2153), + [anon_sym_alias] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_let_DASHenv] = ACTIONS(2153), + [anon_sym_mut] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2153), + [sym_cmd_identifier] = ACTIONS(2153), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2153), + [anon_sym_def_DASHenv] = ACTIONS(2153), + [anon_sym_export_DASHenv] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym_module] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_error] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_source] = ACTIONS(2153), + [anon_sym_source_DASHenv] = ACTIONS(2153), + [anon_sym_register] = ACTIONS(2153), + [anon_sym_hide] = ACTIONS(2153), + [anon_sym_hide_DASHenv] = ACTIONS(2153), + [anon_sym_overlay] = ACTIONS(2153), + [anon_sym_where] = ACTIONS(2153), + [anon_sym_not] = ACTIONS(2153), + [anon_sym_DOT_DOT_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2153), + [sym_val_nothing] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [aux_sym_val_number_token1] = ACTIONS(2153), + [aux_sym_val_number_token2] = ACTIONS(2153), + [aux_sym_val_number_token3] = ACTIONS(2153), + [aux_sym_val_number_token4] = ACTIONS(2153), + [aux_sym_val_number_token5] = ACTIONS(2153), + [anon_sym_inf] = ACTIONS(2153), + [anon_sym_DASHinf] = ACTIONS(2153), + [anon_sym_NaN] = ACTIONS(2153), + [anon_sym_0b] = ACTIONS(2153), + [anon_sym_0o] = ACTIONS(2153), + [anon_sym_0x] = ACTIONS(2153), + [sym_val_date] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym__str_single_quotes] = ACTIONS(2153), + [sym__str_back_ticks] = ACTIONS(2153), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(3), + }, + [1069] = { + [sym_comment] = STATE(1069), + [ts_builtin_sym_end] = ACTIONS(2309), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_alias] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_let_DASHenv] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [sym_cmd_identifier] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2307), + [anon_sym_def_DASHenv] = ACTIONS(2307), + [anon_sym_export_DASHenv] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_source] = ACTIONS(2307), + [anon_sym_source_DASHenv] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_hide] = ACTIONS(2307), + [anon_sym_hide_DASHenv] = ACTIONS(2307), + [anon_sym_overlay] = ACTIONS(2307), + [anon_sym_where] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_DOT_DOT_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2307), + [sym_val_nothing] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [aux_sym_val_number_token1] = ACTIONS(2307), + [aux_sym_val_number_token2] = ACTIONS(2307), + [aux_sym_val_number_token3] = ACTIONS(2307), + [aux_sym_val_number_token4] = ACTIONS(2307), + [aux_sym_val_number_token5] = ACTIONS(2307), + [anon_sym_inf] = ACTIONS(2307), + [anon_sym_DASHinf] = ACTIONS(2307), + [anon_sym_NaN] = ACTIONS(2307), + [anon_sym_0b] = ACTIONS(2307), + [anon_sym_0o] = ACTIONS(2307), + [anon_sym_0x] = ACTIONS(2307), + [sym_val_date] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), + [anon_sym_CARET] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(3), + }, + [1070] = { + [sym_comment] = STATE(1070), + [ts_builtin_sym_end] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_alias] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_let_DASHenv] = ACTIONS(2243), + [anon_sym_mut] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [sym_cmd_identifier] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_def] = ACTIONS(2243), + [anon_sym_def_DASHenv] = ACTIONS(2243), + [anon_sym_export_DASHenv] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_module] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_error] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_source] = ACTIONS(2243), + [anon_sym_source_DASHenv] = ACTIONS(2243), + [anon_sym_register] = ACTIONS(2243), + [anon_sym_hide] = ACTIONS(2243), + [anon_sym_hide_DASHenv] = ACTIONS(2243), + [anon_sym_overlay] = ACTIONS(2243), + [anon_sym_where] = ACTIONS(2243), + [anon_sym_not] = ACTIONS(2243), + [anon_sym_DOT_DOT_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), + [sym_val_nothing] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [aux_sym_val_number_token1] = ACTIONS(2243), + [aux_sym_val_number_token2] = ACTIONS(2243), + [aux_sym_val_number_token3] = ACTIONS(2243), + [aux_sym_val_number_token4] = ACTIONS(2243), + [aux_sym_val_number_token5] = ACTIONS(2243), + [anon_sym_inf] = ACTIONS(2243), + [anon_sym_DASHinf] = ACTIONS(2243), + [anon_sym_NaN] = ACTIONS(2243), + [anon_sym_0b] = ACTIONS(2243), + [anon_sym_0o] = ACTIONS(2243), + [anon_sym_0x] = ACTIONS(2243), + [sym_val_date] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [sym__str_single_quotes] = ACTIONS(2243), + [sym__str_back_ticks] = ACTIONS(2243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), + }, + [1071] = { + [sym_comment] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(2413), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2231), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_def_DASHenv] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [sym_val_nothing] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym_val_number_token1] = ACTIONS(2229), + [aux_sym_val_number_token2] = ACTIONS(2229), + [aux_sym_val_number_token3] = ACTIONS(2229), + [aux_sym_val_number_token4] = ACTIONS(2229), + [aux_sym_val_number_token5] = ACTIONS(2229), + [anon_sym_inf] = ACTIONS(2229), + [anon_sym_DASHinf] = ACTIONS(2229), + [anon_sym_NaN] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(3), + }, + [1072] = { + [sym_comment] = STATE(1072), + [ts_builtin_sym_end] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [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_CARET] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + }, + [1073] = { + [sym_comment] = STATE(1073), + [ts_builtin_sym_end] = ACTIONS(2071), + [anon_sym_export] = ACTIONS(2069), + [anon_sym_alias] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_let_DASHenv] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [sym_cmd_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2069), + [anon_sym_def_DASHenv] = ACTIONS(2069), + [anon_sym_export_DASHenv] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_module] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_source] = ACTIONS(2069), + [anon_sym_source_DASHenv] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_hide] = ACTIONS(2069), + [anon_sym_hide_DASHenv] = ACTIONS(2069), + [anon_sym_overlay] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_not] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [sym_val_nothing] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = 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(2069), + [aux_sym_val_number_token5] = ACTIONS(2069), + [anon_sym_inf] = ACTIONS(2069), + [anon_sym_DASHinf] = ACTIONS(2069), + [anon_sym_NaN] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2069), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2069), + [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_CARET] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(3), + }, + [1074] = { + [sym_comment] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(2087), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_alias] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_let_DASHenv] = ACTIONS(2085), + [anon_sym_mut] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [sym_cmd_identifier] = ACTIONS(2085), + [anon_sym_LF] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2085), + [anon_sym_def_DASHenv] = ACTIONS(2085), + [anon_sym_export_DASHenv] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_module] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_source] = ACTIONS(2085), + [anon_sym_source_DASHenv] = ACTIONS(2085), + [anon_sym_register] = ACTIONS(2085), + [anon_sym_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_where] = ACTIONS(2085), + [anon_sym_not] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [sym_val_nothing] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [aux_sym_val_number_token1] = ACTIONS(2085), + [aux_sym_val_number_token2] = ACTIONS(2085), + [aux_sym_val_number_token3] = ACTIONS(2085), + [aux_sym_val_number_token4] = ACTIONS(2085), + [aux_sym_val_number_token5] = ACTIONS(2085), + [anon_sym_inf] = ACTIONS(2085), + [anon_sym_DASHinf] = ACTIONS(2085), + [anon_sym_NaN] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + }, + [1075] = { + [sym_comment] = STATE(1075), + [ts_builtin_sym_end] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [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_CARET] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + }, + [1076] = { + [sym_comment] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(2071), + [anon_sym_export] = ACTIONS(2069), + [anon_sym_alias] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_let_DASHenv] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [sym_cmd_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2069), + [anon_sym_def_DASHenv] = ACTIONS(2069), + [anon_sym_export_DASHenv] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_module] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_source] = ACTIONS(2069), + [anon_sym_source_DASHenv] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_hide] = ACTIONS(2069), + [anon_sym_hide_DASHenv] = ACTIONS(2069), + [anon_sym_overlay] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_not] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [sym_val_nothing] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = 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(2069), + [aux_sym_val_number_token5] = ACTIONS(2069), + [anon_sym_inf] = ACTIONS(2069), + [anon_sym_DASHinf] = ACTIONS(2069), + [anon_sym_NaN] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2069), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2069), + [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_CARET] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(3), + }, + [1077] = { + [sym_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(2195), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_alias] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_let_DASHenv] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [sym_cmd_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2195), + [anon_sym_def] = ACTIONS(2193), + [anon_sym_def_DASHenv] = ACTIONS(2193), + [anon_sym_export_DASHenv] = ACTIONS(2193), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2193), + [anon_sym_error] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_source] = ACTIONS(2193), + [anon_sym_source_DASHenv] = ACTIONS(2193), + [anon_sym_register] = ACTIONS(2193), + [anon_sym_hide] = ACTIONS(2193), + [anon_sym_hide_DASHenv] = ACTIONS(2193), + [anon_sym_overlay] = ACTIONS(2193), + [anon_sym_where] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2193), + [anon_sym_DOT_DOT_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2193), + [sym_val_nothing] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [aux_sym_val_number_token1] = ACTIONS(2193), + [aux_sym_val_number_token2] = ACTIONS(2193), + [aux_sym_val_number_token3] = ACTIONS(2193), + [aux_sym_val_number_token4] = ACTIONS(2193), + [aux_sym_val_number_token5] = ACTIONS(2193), + [anon_sym_inf] = ACTIONS(2193), + [anon_sym_DASHinf] = ACTIONS(2193), + [anon_sym_NaN] = ACTIONS(2193), + [anon_sym_0b] = ACTIONS(2193), + [anon_sym_0o] = ACTIONS(2193), + [anon_sym_0x] = ACTIONS(2193), + [sym_val_date] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym__str_single_quotes] = ACTIONS(2193), + [sym__str_back_ticks] = ACTIONS(2193), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(3), + }, + [1078] = { + [sym_comment] = STATE(1078), + [ts_builtin_sym_end] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_alias] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_let_DASHenv] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [sym_cmd_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2225), + [anon_sym_def_DASHenv] = ACTIONS(2225), + [anon_sym_export_DASHenv] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_error] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_source] = ACTIONS(2225), + [anon_sym_source_DASHenv] = ACTIONS(2225), + [anon_sym_register] = ACTIONS(2225), + [anon_sym_hide] = ACTIONS(2225), + [anon_sym_hide_DASHenv] = ACTIONS(2225), + [anon_sym_overlay] = ACTIONS(2225), + [anon_sym_where] = ACTIONS(2225), + [anon_sym_not] = ACTIONS(2225), + [anon_sym_DOT_DOT_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2225), + [sym_val_nothing] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [aux_sym_val_number_token1] = ACTIONS(2225), + [aux_sym_val_number_token2] = ACTIONS(2225), + [aux_sym_val_number_token3] = ACTIONS(2225), + [aux_sym_val_number_token4] = ACTIONS(2225), + [aux_sym_val_number_token5] = ACTIONS(2225), + [anon_sym_inf] = ACTIONS(2225), + [anon_sym_DASHinf] = ACTIONS(2225), + [anon_sym_NaN] = ACTIONS(2225), + [anon_sym_0b] = ACTIONS(2225), + [anon_sym_0o] = ACTIONS(2225), + [anon_sym_0x] = ACTIONS(2225), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [sym__str_single_quotes] = ACTIONS(2225), + [sym__str_back_ticks] = ACTIONS(2225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(3), + }, + [1079] = { + [sym_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [sym_cmd_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_def_DASHenv] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_not] = ACTIONS(2197), + [anon_sym_DOT_DOT_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2197), + [sym_val_nothing] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [aux_sym_val_number_token1] = ACTIONS(2197), + [aux_sym_val_number_token2] = ACTIONS(2197), + [aux_sym_val_number_token3] = ACTIONS(2197), + [aux_sym_val_number_token4] = ACTIONS(2197), + [aux_sym_val_number_token5] = ACTIONS(2197), + [anon_sym_inf] = ACTIONS(2197), + [anon_sym_DASHinf] = ACTIONS(2197), + [anon_sym_NaN] = ACTIONS(2197), + [anon_sym_0b] = ACTIONS(2197), + [anon_sym_0o] = ACTIONS(2197), + [anon_sym_0x] = ACTIONS(2197), + [sym_val_date] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(3), + }, + [1080] = { + [sym_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2337), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [sym_cmd_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_def_DASHenv] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_where] = ACTIONS(2335), + [anon_sym_not] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [sym_val_nothing] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym_val_number_token1] = ACTIONS(2335), + [aux_sym_val_number_token2] = ACTIONS(2335), + [aux_sym_val_number_token3] = ACTIONS(2335), + [aux_sym_val_number_token4] = ACTIONS(2335), + [aux_sym_val_number_token5] = ACTIONS(2335), + [anon_sym_inf] = ACTIONS(2335), + [anon_sym_DASHinf] = ACTIONS(2335), + [anon_sym_NaN] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(3), + }, + [1081] = { + [sym_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2181), + [anon_sym_alias] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_let_DASHenv] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2181), + [sym_cmd_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2181), + [anon_sym_def_DASHenv] = ACTIONS(2181), + [anon_sym_export_DASHenv] = ACTIONS(2181), + [anon_sym_extern] = ACTIONS(2181), + [anon_sym_module] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_error] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_source] = ACTIONS(2181), + [anon_sym_source_DASHenv] = ACTIONS(2181), + [anon_sym_register] = ACTIONS(2181), + [anon_sym_hide] = ACTIONS(2181), + [anon_sym_hide_DASHenv] = ACTIONS(2181), + [anon_sym_overlay] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_not] = ACTIONS(2181), + [anon_sym_DOT_DOT_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2181), + [sym_val_nothing] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [aux_sym_val_number_token1] = ACTIONS(2181), + [aux_sym_val_number_token2] = ACTIONS(2181), + [aux_sym_val_number_token3] = ACTIONS(2181), + [aux_sym_val_number_token4] = ACTIONS(2181), + [aux_sym_val_number_token5] = ACTIONS(2181), + [anon_sym_inf] = ACTIONS(2181), + [anon_sym_DASHinf] = ACTIONS(2181), + [anon_sym_NaN] = ACTIONS(2181), + [anon_sym_0b] = ACTIONS(2181), + [anon_sym_0o] = ACTIONS(2181), + [anon_sym_0x] = ACTIONS(2181), + [sym_val_date] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(3), + }, + [1082] = { + [sym_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(2325), + [anon_sym_export] = ACTIONS(2323), + [anon_sym_alias] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_let_DASHenv] = ACTIONS(2323), + [anon_sym_mut] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [sym_cmd_identifier] = ACTIONS(2323), + [anon_sym_LF] = ACTIONS(2325), + [anon_sym_def] = ACTIONS(2323), + [anon_sym_def_DASHenv] = ACTIONS(2323), + [anon_sym_export_DASHenv] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_module] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2323), + [anon_sym_error] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_source] = ACTIONS(2323), + [anon_sym_source_DASHenv] = ACTIONS(2323), + [anon_sym_register] = ACTIONS(2323), + [anon_sym_hide] = ACTIONS(2323), + [anon_sym_hide_DASHenv] = ACTIONS(2323), + [anon_sym_overlay] = ACTIONS(2323), + [anon_sym_where] = ACTIONS(2323), + [anon_sym_not] = ACTIONS(2323), + [anon_sym_DOT_DOT_LT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2323), + [sym_val_nothing] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [aux_sym_val_number_token1] = ACTIONS(2323), + [aux_sym_val_number_token2] = ACTIONS(2323), + [aux_sym_val_number_token3] = ACTIONS(2323), + [aux_sym_val_number_token4] = ACTIONS(2323), + [aux_sym_val_number_token5] = ACTIONS(2323), + [anon_sym_inf] = ACTIONS(2323), + [anon_sym_DASHinf] = ACTIONS(2323), + [anon_sym_NaN] = ACTIONS(2323), + [anon_sym_0b] = ACTIONS(2323), + [anon_sym_0o] = ACTIONS(2323), + [anon_sym_0x] = ACTIONS(2323), + [sym_val_date] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym__str_single_quotes] = ACTIONS(2323), + [sym__str_back_ticks] = ACTIONS(2323), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2323), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2323), + [anon_sym_CARET] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(3), + }, + [1083] = { + [sym_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(2115), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2113), + [sym_cmd_identifier] = ACTIONS(2113), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_def_DASHenv] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_where] = ACTIONS(2113), + [anon_sym_not] = ACTIONS(2113), + [anon_sym_DOT_DOT_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), + [sym_val_nothing] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [aux_sym_val_number_token1] = ACTIONS(2113), + [aux_sym_val_number_token2] = ACTIONS(2113), + [aux_sym_val_number_token3] = ACTIONS(2113), + [aux_sym_val_number_token4] = ACTIONS(2113), + [aux_sym_val_number_token5] = ACTIONS(2113), + [anon_sym_inf] = ACTIONS(2113), + [anon_sym_DASHinf] = ACTIONS(2113), + [anon_sym_NaN] = ACTIONS(2113), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [sym__str_single_quotes] = ACTIONS(2113), + [sym__str_back_ticks] = ACTIONS(2113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2113), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(3), + }, + [1084] = { + [sym_comment] = STATE(1084), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(782), + [sym_cmd_identifier] = ACTIONS(780), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_in] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_QMARK2] = ACTIONS(782), + [anon_sym_STAR_STAR] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_bit_DASHshl] = ACTIONS(780), + [anon_sym_bit_DASHshr] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(782), + [anon_sym_LT2] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_not_DASHin] = ACTIONS(780), + [anon_sym_starts_DASHwith] = ACTIONS(780), + [anon_sym_ends_DASHwith] = ACTIONS(780), + [anon_sym_EQ_TILDE] = ACTIONS(782), + [anon_sym_BANG_TILDE] = ACTIONS(782), + [anon_sym_bit_DASHand] = ACTIONS(780), + [anon_sym_bit_DASHxor] = ACTIONS(780), + [anon_sym_bit_DASHor] = ACTIONS(780), + [anon_sym_and] = ACTIONS(780), + [anon_sym_xor] = ACTIONS(780), + [anon_sym_or] = ACTIONS(780), + [anon_sym_not] = ACTIONS(780), + [anon_sym_DOT_DOT_LT] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(782), + [sym_val_nothing] = ACTIONS(780), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [aux_sym_val_number_token1] = ACTIONS(780), + [aux_sym_val_number_token2] = ACTIONS(780), + [aux_sym_val_number_token3] = ACTIONS(782), + [aux_sym_val_number_token4] = ACTIONS(782), + [aux_sym_val_number_token5] = ACTIONS(782), + [anon_sym_inf] = ACTIONS(780), + [anon_sym_DASHinf] = ACTIONS(782), + [anon_sym_NaN] = ACTIONS(780), + [anon_sym_0b] = ACTIONS(780), + [anon_sym_0o] = ACTIONS(780), + [anon_sym_0x] = ACTIONS(780), + [sym_val_date] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(782), + [sym__str_single_quotes] = ACTIONS(782), + [sym__str_back_ticks] = ACTIONS(782), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(157), + }, + [1085] = { + [sym_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [sym_cmd_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_def_DASHenv] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [sym_val_nothing] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym_val_number_token1] = ACTIONS(2249), + [aux_sym_val_number_token2] = ACTIONS(2249), + [aux_sym_val_number_token3] = ACTIONS(2249), + [aux_sym_val_number_token4] = ACTIONS(2249), + [aux_sym_val_number_token5] = ACTIONS(2249), + [anon_sym_inf] = ACTIONS(2249), + [anon_sym_DASHinf] = ACTIONS(2249), + [anon_sym_NaN] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym__str_single_quotes] = ACTIONS(2249), + [sym__str_back_ticks] = ACTIONS(2249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [1086] = { + [sym_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [sym_cmd_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_def_DASHenv] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [sym_val_nothing] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym_val_number_token1] = ACTIONS(2249), + [aux_sym_val_number_token2] = ACTIONS(2249), + [aux_sym_val_number_token3] = ACTIONS(2249), + [aux_sym_val_number_token4] = ACTIONS(2249), + [aux_sym_val_number_token5] = ACTIONS(2249), + [anon_sym_inf] = ACTIONS(2249), + [anon_sym_DASHinf] = ACTIONS(2249), + [anon_sym_NaN] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym__str_single_quotes] = ACTIONS(2249), + [sym__str_back_ticks] = ACTIONS(2249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [1087] = { + [sym_comment] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_let_DASHenv] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [sym_cmd_identifier] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_def_DASHenv] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_error] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_source] = ACTIONS(2257), + [anon_sym_source_DASHenv] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_hide] = ACTIONS(2257), + [anon_sym_hide_DASHenv] = ACTIONS(2257), + [anon_sym_overlay] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [sym_val_nothing] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [aux_sym_val_number_token1] = ACTIONS(2257), + [aux_sym_val_number_token2] = ACTIONS(2257), + [aux_sym_val_number_token3] = ACTIONS(2257), + [aux_sym_val_number_token4] = ACTIONS(2257), + [aux_sym_val_number_token5] = ACTIONS(2257), + [anon_sym_inf] = ACTIONS(2257), + [anon_sym_DASHinf] = ACTIONS(2257), + [anon_sym_NaN] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2257), + [anon_sym_0o] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2257), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym__str_single_quotes] = ACTIONS(2257), + [sym__str_back_ticks] = ACTIONS(2257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(3), + }, + [1088] = { + [sym_comment] = STATE(1088), + [ts_builtin_sym_end] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_alias] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_let_DASHenv] = ACTIONS(2109), + [anon_sym_mut] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [sym_cmd_identifier] = ACTIONS(2109), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2109), + [anon_sym_def_DASHenv] = ACTIONS(2109), + [anon_sym_export_DASHenv] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_error] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_source] = ACTIONS(2109), + [anon_sym_source_DASHenv] = ACTIONS(2109), + [anon_sym_register] = ACTIONS(2109), + [anon_sym_hide] = ACTIONS(2109), + [anon_sym_hide_DASHenv] = ACTIONS(2109), + [anon_sym_overlay] = ACTIONS(2109), + [anon_sym_where] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2109), + [anon_sym_DOT_DOT_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), + [sym_val_nothing] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [aux_sym_val_number_token1] = ACTIONS(2109), + [aux_sym_val_number_token2] = ACTIONS(2109), + [aux_sym_val_number_token3] = ACTIONS(2109), + [aux_sym_val_number_token4] = ACTIONS(2109), + [aux_sym_val_number_token5] = ACTIONS(2109), + [anon_sym_inf] = ACTIONS(2109), + [anon_sym_DASHinf] = ACTIONS(2109), + [anon_sym_NaN] = ACTIONS(2109), + [anon_sym_0b] = ACTIONS(2109), + [anon_sym_0o] = ACTIONS(2109), + [anon_sym_0x] = ACTIONS(2109), + [sym_val_date] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [sym__str_single_quotes] = ACTIONS(2109), + [sym__str_back_ticks] = ACTIONS(2109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [1089] = { + [sym_comment] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2109), + [anon_sym_alias] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_let_DASHenv] = ACTIONS(2109), + [anon_sym_mut] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [sym_cmd_identifier] = ACTIONS(2109), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2109), + [anon_sym_def_DASHenv] = ACTIONS(2109), + [anon_sym_export_DASHenv] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_error] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_source] = ACTIONS(2109), + [anon_sym_source_DASHenv] = ACTIONS(2109), + [anon_sym_register] = ACTIONS(2109), + [anon_sym_hide] = ACTIONS(2109), + [anon_sym_hide_DASHenv] = ACTIONS(2109), + [anon_sym_overlay] = ACTIONS(2109), + [anon_sym_where] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2109), + [anon_sym_DOT_DOT_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), + [sym_val_nothing] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [aux_sym_val_number_token1] = ACTIONS(2109), + [aux_sym_val_number_token2] = ACTIONS(2109), + [aux_sym_val_number_token3] = ACTIONS(2109), + [aux_sym_val_number_token4] = ACTIONS(2109), + [aux_sym_val_number_token5] = ACTIONS(2109), + [anon_sym_inf] = ACTIONS(2109), + [anon_sym_DASHinf] = ACTIONS(2109), + [anon_sym_NaN] = ACTIONS(2109), + [anon_sym_0b] = ACTIONS(2109), + [anon_sym_0o] = ACTIONS(2109), + [anon_sym_0x] = ACTIONS(2109), + [sym_val_date] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [sym__str_single_quotes] = ACTIONS(2109), + [sym__str_back_ticks] = ACTIONS(2109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [1090] = { + [sym_comment] = STATE(1090), + [ts_builtin_sym_end] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_alias] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_let_DASHenv] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [sym_cmd_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_def_DASHenv] = ACTIONS(2213), + [anon_sym_export_DASHenv] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_source] = ACTIONS(2213), + [anon_sym_source_DASHenv] = ACTIONS(2213), + [anon_sym_register] = ACTIONS(2213), + [anon_sym_hide] = ACTIONS(2213), + [anon_sym_hide_DASHenv] = ACTIONS(2213), + [anon_sym_overlay] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2213), + [sym_val_nothing] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [aux_sym_val_number_token1] = ACTIONS(2213), + [aux_sym_val_number_token2] = ACTIONS(2213), + [aux_sym_val_number_token3] = ACTIONS(2213), + [aux_sym_val_number_token4] = ACTIONS(2213), + [aux_sym_val_number_token5] = ACTIONS(2213), + [anon_sym_inf] = ACTIONS(2213), + [anon_sym_DASHinf] = ACTIONS(2213), + [anon_sym_NaN] = ACTIONS(2213), + [anon_sym_0b] = ACTIONS(2213), + [anon_sym_0o] = ACTIONS(2213), + [anon_sym_0x] = ACTIONS(2213), + [sym_val_date] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(3), + }, + [1091] = { + [sym_comment] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2057), + [sym_cmd_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_def_DASHenv] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_where] = ACTIONS(2055), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [sym_val_nothing] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [aux_sym_val_number_token1] = ACTIONS(2055), + [aux_sym_val_number_token2] = ACTIONS(2055), + [aux_sym_val_number_token3] = ACTIONS(2055), + [aux_sym_val_number_token4] = ACTIONS(2055), + [aux_sym_val_number_token5] = ACTIONS(2055), + [anon_sym_inf] = ACTIONS(2055), + [anon_sym_DASHinf] = ACTIONS(2055), + [anon_sym_NaN] = ACTIONS(2055), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(3), + }, + [1092] = { + [sym_comment] = STATE(1092), + [anon_sym_EQ] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(786), + [sym_cmd_identifier] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_in] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_QMARK2] = ACTIONS(786), + [anon_sym_STAR_STAR] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_mod] = ACTIONS(784), + [anon_sym_SLASH_SLASH] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_bit_DASHshl] = ACTIONS(784), + [anon_sym_bit_DASHshr] = ACTIONS(784), + [anon_sym_EQ_EQ] = ACTIONS(786), + [anon_sym_BANG_EQ] = ACTIONS(786), + [anon_sym_LT2] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(786), + [anon_sym_not_DASHin] = ACTIONS(784), + [anon_sym_starts_DASHwith] = ACTIONS(784), + [anon_sym_ends_DASHwith] = ACTIONS(784), + [anon_sym_EQ_TILDE] = ACTIONS(786), + [anon_sym_BANG_TILDE] = ACTIONS(786), + [anon_sym_bit_DASHand] = ACTIONS(784), + [anon_sym_bit_DASHxor] = ACTIONS(784), + [anon_sym_bit_DASHor] = ACTIONS(784), + [anon_sym_and] = ACTIONS(784), + [anon_sym_xor] = ACTIONS(784), + [anon_sym_or] = ACTIONS(784), + [anon_sym_not] = ACTIONS(784), + [anon_sym_DOT_DOT_LT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(786), + [sym_val_nothing] = ACTIONS(784), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [aux_sym_val_number_token1] = ACTIONS(784), + [aux_sym_val_number_token2] = ACTIONS(784), + [aux_sym_val_number_token3] = ACTIONS(786), + [aux_sym_val_number_token4] = ACTIONS(786), + [aux_sym_val_number_token5] = ACTIONS(786), + [anon_sym_inf] = ACTIONS(784), + [anon_sym_DASHinf] = ACTIONS(786), + [anon_sym_NaN] = ACTIONS(784), + [anon_sym_0b] = ACTIONS(784), + [anon_sym_0o] = ACTIONS(784), + [anon_sym_0x] = ACTIONS(784), + [sym_val_date] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(786), + [sym__str_single_quotes] = ACTIONS(786), + [sym__str_back_ticks] = ACTIONS(786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(157), + }, + [1093] = { + [sym_comment] = STATE(1093), + [ts_builtin_sym_end] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_alias] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_let_DASHenv] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [sym_cmd_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_def_DASHenv] = ACTIONS(2213), + [anon_sym_export_DASHenv] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_source] = ACTIONS(2213), + [anon_sym_source_DASHenv] = ACTIONS(2213), + [anon_sym_register] = ACTIONS(2213), + [anon_sym_hide] = ACTIONS(2213), + [anon_sym_hide_DASHenv] = ACTIONS(2213), + [anon_sym_overlay] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2213), + [sym_val_nothing] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [aux_sym_val_number_token1] = ACTIONS(2213), + [aux_sym_val_number_token2] = ACTIONS(2213), + [aux_sym_val_number_token3] = ACTIONS(2213), + [aux_sym_val_number_token4] = ACTIONS(2213), + [aux_sym_val_number_token5] = ACTIONS(2213), + [anon_sym_inf] = ACTIONS(2213), + [anon_sym_DASHinf] = ACTIONS(2213), + [anon_sym_NaN] = ACTIONS(2213), + [anon_sym_0b] = ACTIONS(2213), + [anon_sym_0o] = ACTIONS(2213), + [anon_sym_0x] = ACTIONS(2213), + [sym_val_date] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(3), + }, + [1094] = { + [sym_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2081), + [anon_sym_alias] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_let_DASHenv] = ACTIONS(2081), + [anon_sym_mut] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2081), + [sym_cmd_identifier] = ACTIONS(2081), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2081), + [anon_sym_def_DASHenv] = ACTIONS(2081), + [anon_sym_export_DASHenv] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_module] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_source] = ACTIONS(2081), + [anon_sym_source_DASHenv] = ACTIONS(2081), + [anon_sym_register] = ACTIONS(2081), + [anon_sym_hide] = ACTIONS(2081), + [anon_sym_hide_DASHenv] = ACTIONS(2081), + [anon_sym_overlay] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_not] = ACTIONS(2081), + [anon_sym_DOT_DOT_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), + [sym_val_nothing] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = 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(2081), + [aux_sym_val_number_token5] = ACTIONS(2081), + [anon_sym_inf] = ACTIONS(2081), + [anon_sym_DASHinf] = ACTIONS(2081), + [anon_sym_NaN] = ACTIONS(2081), + [anon_sym_0b] = ACTIONS(2081), + [anon_sym_0o] = ACTIONS(2081), + [anon_sym_0x] = ACTIONS(2081), + [sym_val_date] = ACTIONS(2081), + [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_CARET] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(3), + }, + [1095] = { + [sym_comment] = STATE(1095), + [ts_builtin_sym_end] = ACTIONS(2329), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_alias] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_let_DASHenv] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [sym_cmd_identifier] = ACTIONS(2327), + [anon_sym_LF] = ACTIONS(2329), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_def_DASHenv] = ACTIONS(2327), + [anon_sym_export_DASHenv] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_error] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_source] = ACTIONS(2327), + [anon_sym_source_DASHenv] = ACTIONS(2327), + [anon_sym_register] = ACTIONS(2327), + [anon_sym_hide] = ACTIONS(2327), + [anon_sym_hide_DASHenv] = ACTIONS(2327), + [anon_sym_overlay] = ACTIONS(2327), + [anon_sym_where] = ACTIONS(2327), + [anon_sym_not] = ACTIONS(2327), + [anon_sym_DOT_DOT_LT] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2327), + [sym_val_nothing] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [aux_sym_val_number_token1] = ACTIONS(2327), + [aux_sym_val_number_token2] = ACTIONS(2327), + [aux_sym_val_number_token3] = ACTIONS(2327), + [aux_sym_val_number_token4] = ACTIONS(2327), + [aux_sym_val_number_token5] = ACTIONS(2327), + [anon_sym_inf] = ACTIONS(2327), + [anon_sym_DASHinf] = ACTIONS(2327), + [anon_sym_NaN] = ACTIONS(2327), + [anon_sym_0b] = ACTIONS(2327), + [anon_sym_0o] = ACTIONS(2327), + [anon_sym_0x] = ACTIONS(2327), + [sym_val_date] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym__str_single_quotes] = ACTIONS(2327), + [sym__str_back_ticks] = ACTIONS(2327), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2327), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), + [anon_sym_CARET] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [1096] = { + [sym_comment] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(2091), + [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), + [anon_sym_SEMI] = ACTIONS(2089), + [sym_cmd_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2089), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_source] = ACTIONS(2089), + [anon_sym_source_DASHenv] = ACTIONS(2089), + [anon_sym_register] = ACTIONS(2089), + [anon_sym_hide] = ACTIONS(2089), + [anon_sym_hide_DASHenv] = ACTIONS(2089), + [anon_sym_overlay] = ACTIONS(2089), + [anon_sym_where] = ACTIONS(2089), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [sym_val_nothing] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2089), + [anon_sym_DASHinf] = ACTIONS(2089), + [anon_sym_NaN] = 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(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_CARET] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(3), + }, + [1097] = { + [sym_comment] = STATE(1097), + [ts_builtin_sym_end] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2101), + [anon_sym_alias] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_let_DASHenv] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2101), + [sym_cmd_identifier] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2103), + [anon_sym_def] = ACTIONS(2101), + [anon_sym_def_DASHenv] = ACTIONS(2101), + [anon_sym_export_DASHenv] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_module] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2101), + [anon_sym_error] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_source] = ACTIONS(2101), + [anon_sym_source_DASHenv] = ACTIONS(2101), + [anon_sym_register] = ACTIONS(2101), + [anon_sym_hide] = ACTIONS(2101), + [anon_sym_hide_DASHenv] = ACTIONS(2101), + [anon_sym_overlay] = ACTIONS(2101), + [anon_sym_where] = ACTIONS(2101), + [anon_sym_not] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [sym_val_nothing] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [aux_sym_val_number_token1] = ACTIONS(2101), + [aux_sym_val_number_token2] = ACTIONS(2101), + [aux_sym_val_number_token3] = ACTIONS(2101), + [aux_sym_val_number_token4] = ACTIONS(2101), + [aux_sym_val_number_token5] = ACTIONS(2101), + [anon_sym_inf] = ACTIONS(2101), + [anon_sym_DASHinf] = ACTIONS(2101), + [anon_sym_NaN] = ACTIONS(2101), + [anon_sym_0b] = ACTIONS(2101), + [anon_sym_0o] = ACTIONS(2101), + [anon_sym_0x] = ACTIONS(2101), + [sym_val_date] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(3), + }, + [1098] = { + [sym_comment] = STATE(1098), + [ts_builtin_sym_end] = ACTIONS(2159), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2157), + [sym_cmd_identifier] = ACTIONS(2157), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_def_DASHenv] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_not] = ACTIONS(2157), + [anon_sym_DOT_DOT_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), + [sym_val_nothing] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [aux_sym_val_number_token1] = ACTIONS(2157), + [aux_sym_val_number_token2] = ACTIONS(2157), + [aux_sym_val_number_token3] = ACTIONS(2157), + [aux_sym_val_number_token4] = ACTIONS(2157), + [aux_sym_val_number_token5] = ACTIONS(2157), + [anon_sym_inf] = ACTIONS(2157), + [anon_sym_DASHinf] = ACTIONS(2157), + [anon_sym_NaN] = ACTIONS(2157), + [anon_sym_0b] = ACTIONS(2157), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(3), + }, + [1099] = { + [sym_comment] = STATE(1099), + [ts_builtin_sym_end] = ACTIONS(2107), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [sym_cmd_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2107), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_def_DASHenv] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_where] = ACTIONS(2105), + [anon_sym_not] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [sym_val_nothing] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [aux_sym_val_number_token1] = ACTIONS(2105), + [aux_sym_val_number_token2] = ACTIONS(2105), + [aux_sym_val_number_token3] = ACTIONS(2105), + [aux_sym_val_number_token4] = ACTIONS(2105), + [aux_sym_val_number_token5] = ACTIONS(2105), + [anon_sym_inf] = ACTIONS(2105), + [anon_sym_DASHinf] = ACTIONS(2105), + [anon_sym_NaN] = ACTIONS(2105), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [sym__str_single_quotes] = ACTIONS(2105), + [sym__str_back_ticks] = ACTIONS(2105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(3), + }, + [1100] = { + [sym_comment] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_alias] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_let_DASHenv] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [sym_cmd_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2223), + [anon_sym_def] = ACTIONS(2221), + [anon_sym_def_DASHenv] = ACTIONS(2221), + [anon_sym_export_DASHenv] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_error] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_source] = ACTIONS(2221), + [anon_sym_source_DASHenv] = ACTIONS(2221), + [anon_sym_register] = ACTIONS(2221), + [anon_sym_hide] = ACTIONS(2221), + [anon_sym_hide_DASHenv] = ACTIONS(2221), + [anon_sym_overlay] = ACTIONS(2221), + [anon_sym_where] = ACTIONS(2221), + [anon_sym_not] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2221), + [sym_val_nothing] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [aux_sym_val_number_token1] = ACTIONS(2221), + [aux_sym_val_number_token2] = ACTIONS(2221), + [aux_sym_val_number_token3] = ACTIONS(2221), + [aux_sym_val_number_token4] = ACTIONS(2221), + [aux_sym_val_number_token5] = ACTIONS(2221), + [anon_sym_inf] = ACTIONS(2221), + [anon_sym_DASHinf] = ACTIONS(2221), + [anon_sym_NaN] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2221), + [anon_sym_0o] = ACTIONS(2221), + [anon_sym_0x] = ACTIONS(2221), + [sym_val_date] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(3), + }, + [1101] = { + [sym_comment] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_alias] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_let_DASHenv] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2201), + [sym_cmd_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_def_DASHenv] = ACTIONS(2201), + [anon_sym_export_DASHenv] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_error] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_source] = ACTIONS(2201), + [anon_sym_source_DASHenv] = ACTIONS(2201), + [anon_sym_register] = ACTIONS(2201), + [anon_sym_hide] = ACTIONS(2201), + [anon_sym_hide_DASHenv] = ACTIONS(2201), + [anon_sym_overlay] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_not] = ACTIONS(2201), + [anon_sym_DOT_DOT_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2201), + [sym_val_nothing] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [aux_sym_val_number_token1] = ACTIONS(2201), + [aux_sym_val_number_token2] = ACTIONS(2201), + [aux_sym_val_number_token3] = ACTIONS(2201), + [aux_sym_val_number_token4] = ACTIONS(2201), + [aux_sym_val_number_token5] = ACTIONS(2201), + [anon_sym_inf] = ACTIONS(2201), + [anon_sym_DASHinf] = ACTIONS(2201), + [anon_sym_NaN] = ACTIONS(2201), + [anon_sym_0b] = ACTIONS(2201), + [anon_sym_0o] = ACTIONS(2201), + [anon_sym_0x] = ACTIONS(2201), + [sym_val_date] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym__str_single_quotes] = ACTIONS(2201), + [sym__str_back_ticks] = ACTIONS(2201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + }, + [1102] = { + [sym_comment] = STATE(1102), + [ts_builtin_sym_end] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_alias] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_let_DASHenv] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2201), + [sym_cmd_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_def_DASHenv] = ACTIONS(2201), + [anon_sym_export_DASHenv] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_module] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_error] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_source] = ACTIONS(2201), + [anon_sym_source_DASHenv] = ACTIONS(2201), + [anon_sym_register] = ACTIONS(2201), + [anon_sym_hide] = ACTIONS(2201), + [anon_sym_hide_DASHenv] = ACTIONS(2201), + [anon_sym_overlay] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_not] = ACTIONS(2201), + [anon_sym_DOT_DOT_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2201), + [sym_val_nothing] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [aux_sym_val_number_token1] = ACTIONS(2201), + [aux_sym_val_number_token2] = ACTIONS(2201), + [aux_sym_val_number_token3] = ACTIONS(2201), + [aux_sym_val_number_token4] = ACTIONS(2201), + [aux_sym_val_number_token5] = ACTIONS(2201), + [anon_sym_inf] = ACTIONS(2201), + [anon_sym_DASHinf] = ACTIONS(2201), + [anon_sym_NaN] = ACTIONS(2201), + [anon_sym_0b] = ACTIONS(2201), + [anon_sym_0o] = ACTIONS(2201), + [anon_sym_0x] = ACTIONS(2201), + [sym_val_date] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym__str_single_quotes] = ACTIONS(2201), + [sym__str_back_ticks] = ACTIONS(2201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + }, + [1103] = { + [sym_comment] = STATE(1103), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [sym_cmd_identifier] = ACTIONS(2391), + [anon_sym_LF] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_def_DASHenv] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_not] = ACTIONS(2391), + [anon_sym_DOT_DOT_LT] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2391), + [sym_val_nothing] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [aux_sym_val_number_token1] = ACTIONS(2391), + [aux_sym_val_number_token2] = ACTIONS(2391), + [aux_sym_val_number_token3] = ACTIONS(2391), + [aux_sym_val_number_token4] = ACTIONS(2391), + [aux_sym_val_number_token5] = ACTIONS(2391), + [anon_sym_inf] = ACTIONS(2391), + [anon_sym_DASHinf] = ACTIONS(2391), + [anon_sym_NaN] = ACTIONS(2391), + [anon_sym_0b] = ACTIONS(2391), + [anon_sym_0o] = ACTIONS(2391), + [anon_sym_0x] = ACTIONS(2391), + [sym_val_date] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2391), + [anon_sym_CARET] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(3), + }, + [1104] = { + [sym_comment] = STATE(1104), + [anon_sym_export] = ACTIONS(2291), + [anon_sym_alias] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_let_DASHenv] = ACTIONS(2291), + [anon_sym_mut] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [sym_cmd_identifier] = ACTIONS(2291), + [anon_sym_LF] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_def_DASHenv] = ACTIONS(2291), + [anon_sym_export_DASHenv] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_error] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_source] = ACTIONS(2291), + [anon_sym_source_DASHenv] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_hide] = ACTIONS(2291), + [anon_sym_hide_DASHenv] = ACTIONS(2291), + [anon_sym_overlay] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_DOT_DOT_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2291), + [sym_val_nothing] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [aux_sym_val_number_token1] = ACTIONS(2291), + [aux_sym_val_number_token2] = ACTIONS(2291), + [aux_sym_val_number_token3] = ACTIONS(2291), + [aux_sym_val_number_token4] = ACTIONS(2291), + [aux_sym_val_number_token5] = ACTIONS(2291), + [anon_sym_inf] = ACTIONS(2291), + [anon_sym_DASHinf] = ACTIONS(2291), + [anon_sym_NaN] = ACTIONS(2291), + [anon_sym_0b] = ACTIONS(2291), + [anon_sym_0o] = ACTIONS(2291), + [anon_sym_0x] = ACTIONS(2291), + [sym_val_date] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(3), + }, + [1105] = { + [sym_comment] = STATE(1105), + [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), + [anon_sym_SEMI] = ACTIONS(2421), + [sym_cmd_identifier] = ACTIONS(2421), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_where] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2421), + [anon_sym_DOT_DOT_LT] = ACTIONS(2421), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2421), + [sym_val_nothing] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2421), + [anon_sym_DASHinf] = ACTIONS(2421), + [anon_sym_NaN] = ACTIONS(2421), + [anon_sym_0b] = ACTIONS(2421), + [anon_sym_0o] = ACTIONS(2421), + [anon_sym_0x] = ACTIONS(2421), + [sym_val_date] = 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_CARET] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(3), + }, + [1106] = { + [sym_path] = STATE(1161), + [sym_comment] = STATE(1106), + [aux_sym_cell_path_repeat1] = STATE(1109), + [anon_sym_SEMI] = ACTIONS(754), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(754), + [anon_sym_BANG_TILDE] = ACTIONS(754), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(754), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(754), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(754), + [aux_sym_val_number_token4] = ACTIONS(754), + [aux_sym_val_number_token5] = ACTIONS(754), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(754), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [sym__str_single_quotes] = ACTIONS(754), + [sym__str_back_ticks] = ACTIONS(754), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(754), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(157), + }, + [1107] = { + [sym_comment] = STATE(1107), + [anon_sym_export] = ACTIONS(2427), + [anon_sym_alias] = ACTIONS(2427), + [anon_sym_let] = ACTIONS(2427), + [anon_sym_let_DASHenv] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [sym_cmd_identifier] = ACTIONS(2427), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2427), + [anon_sym_def_DASHenv] = ACTIONS(2427), + [anon_sym_export_DASHenv] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_module] = ACTIONS(2427), + [anon_sym_use] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_loop] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_source] = ACTIONS(2427), + [anon_sym_source_DASHenv] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_hide] = ACTIONS(2427), + [anon_sym_hide_DASHenv] = ACTIONS(2427), + [anon_sym_overlay] = ACTIONS(2427), + [anon_sym_where] = ACTIONS(2427), + [anon_sym_not] = ACTIONS(2427), + [anon_sym_DOT_DOT_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2427), + [sym_val_nothing] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = 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(2427), + [aux_sym_val_number_token5] = ACTIONS(2427), + [anon_sym_inf] = ACTIONS(2427), + [anon_sym_DASHinf] = ACTIONS(2427), + [anon_sym_NaN] = ACTIONS(2427), + [anon_sym_0b] = ACTIONS(2427), + [anon_sym_0o] = ACTIONS(2427), + [anon_sym_0x] = ACTIONS(2427), + [sym_val_date] = ACTIONS(2427), + [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_CARET] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(3), + }, + [1108] = { + [sym_path] = STATE(1161), + [sym_comment] = STATE(1108), + [aux_sym_cell_path_repeat1] = STATE(1106), + [anon_sym_SEMI] = ACTIONS(758), + [sym_cmd_identifier] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_SLASH_SLASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_bit_DASHshl] = ACTIONS(756), + [anon_sym_bit_DASHshr] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_LT2] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_not_DASHin] = ACTIONS(756), + [anon_sym_starts_DASHwith] = ACTIONS(756), + [anon_sym_ends_DASHwith] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_bit_DASHand] = ACTIONS(756), + [anon_sym_bit_DASHxor] = ACTIONS(756), + [anon_sym_bit_DASHor] = ACTIONS(756), + [anon_sym_and] = ACTIONS(756), + [anon_sym_xor] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_not] = ACTIONS(756), + [anon_sym_DOT_DOT_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(758), + [sym_val_nothing] = ACTIONS(756), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [aux_sym_val_number_token1] = ACTIONS(756), + [aux_sym_val_number_token2] = ACTIONS(756), + [aux_sym_val_number_token3] = ACTIONS(758), + [aux_sym_val_number_token4] = ACTIONS(758), + [aux_sym_val_number_token5] = ACTIONS(758), + [anon_sym_inf] = ACTIONS(756), + [anon_sym_DASHinf] = ACTIONS(758), + [anon_sym_NaN] = ACTIONS(756), + [anon_sym_0b] = ACTIONS(756), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym__str_single_quotes] = ACTIONS(758), + [sym__str_back_ticks] = ACTIONS(758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(157), + }, + [1109] = { + [sym_path] = STATE(1161), + [sym_comment] = STATE(1109), + [aux_sym_cell_path_repeat1] = STATE(1109), + [anon_sym_SEMI] = ACTIONS(725), + [sym_cmd_identifier] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_RBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_in] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_mod] = ACTIONS(723), + [anon_sym_SLASH_SLASH] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_bit_DASHshl] = ACTIONS(723), + [anon_sym_bit_DASHshr] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_LT2] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_not_DASHin] = ACTIONS(723), + [anon_sym_starts_DASHwith] = ACTIONS(723), + [anon_sym_ends_DASHwith] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_bit_DASHand] = ACTIONS(723), + [anon_sym_bit_DASHxor] = ACTIONS(723), + [anon_sym_bit_DASHor] = ACTIONS(723), + [anon_sym_and] = ACTIONS(723), + [anon_sym_xor] = ACTIONS(723), + [anon_sym_or] = ACTIONS(723), + [anon_sym_not] = ACTIONS(723), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(723), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [aux_sym_val_number_token1] = ACTIONS(723), + [aux_sym_val_number_token2] = ACTIONS(723), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(723), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(723), + [anon_sym_0b] = ACTIONS(723), + [anon_sym_0o] = ACTIONS(723), + [anon_sym_0x] = ACTIONS(723), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(157), + }, + [1110] = { + [sym_comment] = STATE(1110), + [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), + [anon_sym_SEMI] = ACTIONS(2434), + [sym_cmd_identifier] = ACTIONS(2434), + [anon_sym_LF] = ACTIONS(2436), + [anon_sym_def] = ACTIONS(2434), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_DOLLAR] = ACTIONS(2434), + [anon_sym_error] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_source] = ACTIONS(2434), + [anon_sym_source_DASHenv] = ACTIONS(2434), + [anon_sym_register] = ACTIONS(2434), + [anon_sym_hide] = ACTIONS(2434), + [anon_sym_hide_DASHenv] = ACTIONS(2434), + [anon_sym_overlay] = ACTIONS(2434), + [anon_sym_where] = ACTIONS(2434), + [anon_sym_not] = ACTIONS(2434), + [anon_sym_DOT_DOT_LT] = ACTIONS(2434), + [anon_sym_DOT_DOT] = ACTIONS(2434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2434), + [sym_val_nothing] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2434), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2434), + [anon_sym_DASHinf] = ACTIONS(2434), + [anon_sym_NaN] = ACTIONS(2434), + [anon_sym_0b] = ACTIONS(2434), + [anon_sym_0o] = ACTIONS(2434), + [anon_sym_0x] = ACTIONS(2434), + [sym_val_date] = 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_CARET] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(3), + }, + [1111] = { + [sym_comment] = STATE(1111), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_alias] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_let_DASHenv] = ACTIONS(2438), + [anon_sym_mut] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [sym_cmd_identifier] = ACTIONS(2438), + [anon_sym_LF] = ACTIONS(2440), + [anon_sym_def] = ACTIONS(2438), + [anon_sym_def_DASHenv] = ACTIONS(2438), + [anon_sym_export_DASHenv] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_DOLLAR] = ACTIONS(2438), + [anon_sym_error] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_source] = ACTIONS(2438), + [anon_sym_source_DASHenv] = ACTIONS(2438), + [anon_sym_register] = ACTIONS(2438), + [anon_sym_hide] = ACTIONS(2438), + [anon_sym_hide_DASHenv] = ACTIONS(2438), + [anon_sym_overlay] = ACTIONS(2438), + [anon_sym_where] = ACTIONS(2438), + [anon_sym_not] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [sym_val_nothing] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2438), + [anon_sym_false] = 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(2438), + [aux_sym_val_number_token5] = ACTIONS(2438), + [anon_sym_inf] = ACTIONS(2438), + [anon_sym_DASHinf] = ACTIONS(2438), + [anon_sym_NaN] = ACTIONS(2438), + [anon_sym_0b] = ACTIONS(2438), + [anon_sym_0o] = ACTIONS(2438), + [anon_sym_0x] = ACTIONS(2438), + [sym_val_date] = ACTIONS(2438), + [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_CARET] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(3), + }, + [1112] = { + [sym_comment] = STATE(1112), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_alias] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_let_DASHenv] = ACTIONS(2442), + [anon_sym_mut] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [sym_cmd_identifier] = ACTIONS(2442), + [anon_sym_LF] = ACTIONS(2444), + [anon_sym_def] = ACTIONS(2442), + [anon_sym_def_DASHenv] = ACTIONS(2442), + [anon_sym_export_DASHenv] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_error] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_source] = ACTIONS(2442), + [anon_sym_source_DASHenv] = ACTIONS(2442), + [anon_sym_register] = ACTIONS(2442), + [anon_sym_hide] = ACTIONS(2442), + [anon_sym_hide_DASHenv] = ACTIONS(2442), + [anon_sym_overlay] = ACTIONS(2442), + [anon_sym_where] = ACTIONS(2442), + [anon_sym_not] = ACTIONS(2442), + [anon_sym_DOT_DOT_LT] = ACTIONS(2442), + [anon_sym_DOT_DOT] = ACTIONS(2442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2442), + [sym_val_nothing] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2442), + [anon_sym_false] = ACTIONS(2442), + [aux_sym_val_number_token1] = ACTIONS(2442), + [aux_sym_val_number_token2] = ACTIONS(2442), + [aux_sym_val_number_token3] = ACTIONS(2442), + [aux_sym_val_number_token4] = ACTIONS(2442), + [aux_sym_val_number_token5] = ACTIONS(2442), + [anon_sym_inf] = ACTIONS(2442), + [anon_sym_DASHinf] = ACTIONS(2442), + [anon_sym_NaN] = ACTIONS(2442), + [anon_sym_0b] = ACTIONS(2442), + [anon_sym_0o] = ACTIONS(2442), + [anon_sym_0x] = ACTIONS(2442), + [sym_val_date] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym__str_single_quotes] = ACTIONS(2442), + [sym__str_back_ticks] = ACTIONS(2442), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2442), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [1113] = { + [sym_comment] = STATE(1113), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_let_DASHenv] = ACTIONS(2446), + [anon_sym_mut] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2446), + [sym_cmd_identifier] = ACTIONS(2446), + [anon_sym_LF] = ACTIONS(2448), + [anon_sym_def] = ACTIONS(2446), + [anon_sym_def_DASHenv] = ACTIONS(2446), + [anon_sym_export_DASHenv] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_error] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_source] = ACTIONS(2446), + [anon_sym_source_DASHenv] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_hide] = ACTIONS(2446), + [anon_sym_hide_DASHenv] = ACTIONS(2446), + [anon_sym_overlay] = ACTIONS(2446), + [anon_sym_where] = ACTIONS(2446), + [anon_sym_not] = ACTIONS(2446), + [anon_sym_DOT_DOT_LT] = ACTIONS(2446), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2446), + [sym_val_nothing] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [aux_sym_val_number_token1] = ACTIONS(2446), + [aux_sym_val_number_token2] = ACTIONS(2446), + [aux_sym_val_number_token3] = ACTIONS(2446), + [aux_sym_val_number_token4] = ACTIONS(2446), + [aux_sym_val_number_token5] = ACTIONS(2446), + [anon_sym_inf] = ACTIONS(2446), + [anon_sym_DASHinf] = ACTIONS(2446), + [anon_sym_NaN] = ACTIONS(2446), + [anon_sym_0b] = ACTIONS(2446), + [anon_sym_0o] = ACTIONS(2446), + [anon_sym_0x] = ACTIONS(2446), + [sym_val_date] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym__str_single_quotes] = ACTIONS(2446), + [sym__str_back_ticks] = ACTIONS(2446), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2446), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(3), + }, + [1114] = { + [sym_comment] = STATE(1114), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_alias] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_let_DASHenv] = ACTIONS(2450), + [anon_sym_mut] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [sym_cmd_identifier] = ACTIONS(2450), + [anon_sym_LF] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2450), + [anon_sym_def_DASHenv] = ACTIONS(2450), + [anon_sym_export_DASHenv] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_module] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_error] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_source] = ACTIONS(2450), + [anon_sym_source_DASHenv] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_hide] = ACTIONS(2450), + [anon_sym_hide_DASHenv] = ACTIONS(2450), + [anon_sym_overlay] = ACTIONS(2450), + [anon_sym_where] = ACTIONS(2450), + [anon_sym_not] = ACTIONS(2450), + [anon_sym_DOT_DOT_LT] = ACTIONS(2450), + [anon_sym_DOT_DOT] = ACTIONS(2450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2450), + [sym_val_nothing] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2450), + [anon_sym_false] = ACTIONS(2450), + [aux_sym_val_number_token1] = ACTIONS(2450), + [aux_sym_val_number_token2] = ACTIONS(2450), + [aux_sym_val_number_token3] = ACTIONS(2450), + [aux_sym_val_number_token4] = ACTIONS(2450), + [aux_sym_val_number_token5] = ACTIONS(2450), + [anon_sym_inf] = ACTIONS(2450), + [anon_sym_DASHinf] = ACTIONS(2450), + [anon_sym_NaN] = ACTIONS(2450), + [anon_sym_0b] = ACTIONS(2450), + [anon_sym_0o] = ACTIONS(2450), + [anon_sym_0x] = ACTIONS(2450), + [sym_val_date] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [sym__str_single_quotes] = ACTIONS(2450), + [sym__str_back_ticks] = ACTIONS(2450), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(3), + }, + [1115] = { + [sym_comment] = STATE(1115), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2454), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_def_DASHenv] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [sym_val_nothing] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym_val_number_token1] = ACTIONS(2229), + [aux_sym_val_number_token2] = ACTIONS(2229), + [aux_sym_val_number_token3] = ACTIONS(2229), + [aux_sym_val_number_token4] = ACTIONS(2229), + [aux_sym_val_number_token5] = ACTIONS(2229), + [anon_sym_inf] = ACTIONS(2229), + [anon_sym_DASHinf] = ACTIONS(2229), + [anon_sym_NaN] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(3), + }, + [1116] = { + [sym_comment] = STATE(1116), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_alias] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_let_DASHenv] = ACTIONS(2456), + [anon_sym_mut] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [sym_cmd_identifier] = ACTIONS(2456), + [anon_sym_LF] = ACTIONS(2458), + [anon_sym_def] = ACTIONS(2456), + [anon_sym_def_DASHenv] = ACTIONS(2456), + [anon_sym_export_DASHenv] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2456), + [anon_sym_error] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_source] = ACTIONS(2456), + [anon_sym_source_DASHenv] = ACTIONS(2456), + [anon_sym_register] = ACTIONS(2456), + [anon_sym_hide] = ACTIONS(2456), + [anon_sym_hide_DASHenv] = ACTIONS(2456), + [anon_sym_overlay] = ACTIONS(2456), + [anon_sym_where] = ACTIONS(2456), + [anon_sym_not] = ACTIONS(2456), + [anon_sym_DOT_DOT_LT] = ACTIONS(2456), + [anon_sym_DOT_DOT] = ACTIONS(2456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2456), + [sym_val_nothing] = ACTIONS(2456), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [aux_sym_val_number_token1] = ACTIONS(2456), + [aux_sym_val_number_token2] = ACTIONS(2456), + [aux_sym_val_number_token3] = ACTIONS(2456), + [aux_sym_val_number_token4] = ACTIONS(2456), + [aux_sym_val_number_token5] = ACTIONS(2456), + [anon_sym_inf] = ACTIONS(2456), + [anon_sym_DASHinf] = ACTIONS(2456), + [anon_sym_NaN] = ACTIONS(2456), + [anon_sym_0b] = ACTIONS(2456), + [anon_sym_0o] = ACTIONS(2456), + [anon_sym_0x] = ACTIONS(2456), + [sym_val_date] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym__str_single_quotes] = ACTIONS(2456), + [sym__str_back_ticks] = ACTIONS(2456), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2456), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(3), + }, + [1117] = { + [sym_comment] = STATE(1117), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_alias] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_let_DASHenv] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [sym_cmd_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2460), + [anon_sym_def] = ACTIONS(2265), + [anon_sym_def_DASHenv] = ACTIONS(2265), + [anon_sym_export_DASHenv] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_error] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_source] = ACTIONS(2265), + [anon_sym_source_DASHenv] = ACTIONS(2265), + [anon_sym_register] = ACTIONS(2265), + [anon_sym_hide] = ACTIONS(2265), + [anon_sym_hide_DASHenv] = ACTIONS(2265), + [anon_sym_overlay] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_DOT_DOT_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), + [sym_val_nothing] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [aux_sym_val_number_token1] = ACTIONS(2265), + [aux_sym_val_number_token2] = ACTIONS(2265), + [aux_sym_val_number_token3] = ACTIONS(2265), + [aux_sym_val_number_token4] = ACTIONS(2265), + [aux_sym_val_number_token5] = ACTIONS(2265), + [anon_sym_inf] = ACTIONS(2265), + [anon_sym_DASHinf] = ACTIONS(2265), + [anon_sym_NaN] = ACTIONS(2265), + [anon_sym_0b] = ACTIONS(2265), + [anon_sym_0o] = ACTIONS(2265), + [anon_sym_0x] = ACTIONS(2265), + [sym_val_date] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(3), + }, + [1118] = { + [sym_comment] = STATE(1118), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_alias] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_let_DASHenv] = ACTIONS(2462), + [anon_sym_mut] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [sym_cmd_identifier] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_def] = ACTIONS(2462), + [anon_sym_def_DASHenv] = ACTIONS(2462), + [anon_sym_export_DASHenv] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_error] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_source] = ACTIONS(2462), + [anon_sym_source_DASHenv] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_hide] = ACTIONS(2462), + [anon_sym_hide_DASHenv] = ACTIONS(2462), + [anon_sym_overlay] = ACTIONS(2462), + [anon_sym_where] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_DOT_DOT_LT] = ACTIONS(2462), + [anon_sym_DOT_DOT] = ACTIONS(2462), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2462), + [sym_val_nothing] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2462), + [anon_sym_false] = ACTIONS(2462), + [aux_sym_val_number_token1] = ACTIONS(2462), + [aux_sym_val_number_token2] = ACTIONS(2462), + [aux_sym_val_number_token3] = ACTIONS(2462), + [aux_sym_val_number_token4] = ACTIONS(2462), + [aux_sym_val_number_token5] = ACTIONS(2462), + [anon_sym_inf] = ACTIONS(2462), + [anon_sym_DASHinf] = ACTIONS(2462), + [anon_sym_NaN] = ACTIONS(2462), + [anon_sym_0b] = ACTIONS(2462), + [anon_sym_0o] = ACTIONS(2462), + [anon_sym_0x] = ACTIONS(2462), + [sym_val_date] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [sym__str_single_quotes] = ACTIONS(2462), + [sym__str_back_ticks] = ACTIONS(2462), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(3), + }, + [1119] = { + [sym_comment] = STATE(1119), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_alias] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_let_DASHenv] = ACTIONS(2466), + [anon_sym_mut] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [sym_cmd_identifier] = ACTIONS(2466), + [anon_sym_LF] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2466), + [anon_sym_def_DASHenv] = ACTIONS(2466), + [anon_sym_export_DASHenv] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_DOLLAR] = ACTIONS(2466), + [anon_sym_error] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_source] = ACTIONS(2466), + [anon_sym_source_DASHenv] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_hide] = ACTIONS(2466), + [anon_sym_hide_DASHenv] = ACTIONS(2466), + [anon_sym_overlay] = ACTIONS(2466), + [anon_sym_where] = ACTIONS(2466), + [anon_sym_not] = ACTIONS(2466), + [anon_sym_DOT_DOT_LT] = ACTIONS(2466), + [anon_sym_DOT_DOT] = ACTIONS(2466), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2466), + [sym_val_nothing] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2466), + [anon_sym_false] = ACTIONS(2466), + [aux_sym_val_number_token1] = ACTIONS(2466), + [aux_sym_val_number_token2] = ACTIONS(2466), + [aux_sym_val_number_token3] = ACTIONS(2466), + [aux_sym_val_number_token4] = ACTIONS(2466), + [aux_sym_val_number_token5] = ACTIONS(2466), + [anon_sym_inf] = ACTIONS(2466), + [anon_sym_DASHinf] = ACTIONS(2466), + [anon_sym_NaN] = ACTIONS(2466), + [anon_sym_0b] = ACTIONS(2466), + [anon_sym_0o] = ACTIONS(2466), + [anon_sym_0x] = ACTIONS(2466), + [sym_val_date] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym__str_single_quotes] = ACTIONS(2466), + [sym__str_back_ticks] = ACTIONS(2466), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(3), + }, + [1120] = { + [sym_comment] = STATE(1120), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_alias] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_let_DASHenv] = ACTIONS(2470), + [anon_sym_mut] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [sym_cmd_identifier] = ACTIONS(2470), + [anon_sym_LF] = ACTIONS(2472), + [anon_sym_def] = ACTIONS(2470), + [anon_sym_def_DASHenv] = ACTIONS(2470), + [anon_sym_export_DASHenv] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_error] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_source] = ACTIONS(2470), + [anon_sym_source_DASHenv] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_hide] = ACTIONS(2470), + [anon_sym_hide_DASHenv] = ACTIONS(2470), + [anon_sym_overlay] = ACTIONS(2470), + [anon_sym_where] = ACTIONS(2470), + [anon_sym_not] = ACTIONS(2470), + [anon_sym_DOT_DOT_LT] = ACTIONS(2470), + [anon_sym_DOT_DOT] = ACTIONS(2470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2470), + [sym_val_nothing] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2470), + [anon_sym_false] = ACTIONS(2470), + [aux_sym_val_number_token1] = ACTIONS(2470), + [aux_sym_val_number_token2] = ACTIONS(2470), + [aux_sym_val_number_token3] = ACTIONS(2470), + [aux_sym_val_number_token4] = ACTIONS(2470), + [aux_sym_val_number_token5] = ACTIONS(2470), + [anon_sym_inf] = ACTIONS(2470), + [anon_sym_DASHinf] = ACTIONS(2470), + [anon_sym_NaN] = ACTIONS(2470), + [anon_sym_0b] = ACTIONS(2470), + [anon_sym_0o] = ACTIONS(2470), + [anon_sym_0x] = ACTIONS(2470), + [sym_val_date] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym__str_single_quotes] = ACTIONS(2470), + [sym__str_back_ticks] = ACTIONS(2470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2470), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(3), + }, + [1121] = { + [sym_comment] = STATE(1121), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_alias] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_let_DASHenv] = ACTIONS(2474), + [anon_sym_mut] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [sym_cmd_identifier] = ACTIONS(2474), + [anon_sym_LF] = ACTIONS(2476), + [anon_sym_def] = ACTIONS(2474), + [anon_sym_def_DASHenv] = ACTIONS(2474), + [anon_sym_export_DASHenv] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_module] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_error] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_source] = ACTIONS(2474), + [anon_sym_source_DASHenv] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_hide] = ACTIONS(2474), + [anon_sym_hide_DASHenv] = ACTIONS(2474), + [anon_sym_overlay] = ACTIONS(2474), + [anon_sym_where] = ACTIONS(2474), + [anon_sym_not] = ACTIONS(2474), + [anon_sym_DOT_DOT_LT] = ACTIONS(2474), + [anon_sym_DOT_DOT] = ACTIONS(2474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2474), + [sym_val_nothing] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [aux_sym_val_number_token1] = ACTIONS(2474), + [aux_sym_val_number_token2] = ACTIONS(2474), + [aux_sym_val_number_token3] = ACTIONS(2474), + [aux_sym_val_number_token4] = ACTIONS(2474), + [aux_sym_val_number_token5] = ACTIONS(2474), + [anon_sym_inf] = ACTIONS(2474), + [anon_sym_DASHinf] = ACTIONS(2474), + [anon_sym_NaN] = ACTIONS(2474), + [anon_sym_0b] = ACTIONS(2474), + [anon_sym_0o] = ACTIONS(2474), + [anon_sym_0x] = ACTIONS(2474), + [sym_val_date] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym__str_single_quotes] = ACTIONS(2474), + [sym__str_back_ticks] = ACTIONS(2474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2474), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(3), + }, + [1122] = { + [sym_comment] = STATE(1122), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_alias] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_let_DASHenv] = ACTIONS(2478), + [anon_sym_mut] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [sym_cmd_identifier] = ACTIONS(2478), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_def] = ACTIONS(2478), + [anon_sym_def_DASHenv] = ACTIONS(2478), + [anon_sym_export_DASHenv] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_error] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_source] = ACTIONS(2478), + [anon_sym_source_DASHenv] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_hide] = ACTIONS(2478), + [anon_sym_hide_DASHenv] = ACTIONS(2478), + [anon_sym_overlay] = ACTIONS(2478), + [anon_sym_where] = ACTIONS(2478), + [anon_sym_not] = ACTIONS(2478), + [anon_sym_DOT_DOT_LT] = ACTIONS(2478), + [anon_sym_DOT_DOT] = ACTIONS(2478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2478), + [sym_val_nothing] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2478), + [anon_sym_false] = ACTIONS(2478), + [aux_sym_val_number_token1] = ACTIONS(2478), + [aux_sym_val_number_token2] = ACTIONS(2478), + [aux_sym_val_number_token3] = ACTIONS(2478), + [aux_sym_val_number_token4] = ACTIONS(2478), + [aux_sym_val_number_token5] = ACTIONS(2478), + [anon_sym_inf] = ACTIONS(2478), + [anon_sym_DASHinf] = ACTIONS(2478), + [anon_sym_NaN] = ACTIONS(2478), + [anon_sym_0b] = ACTIONS(2478), + [anon_sym_0o] = ACTIONS(2478), + [anon_sym_0x] = ACTIONS(2478), + [sym_val_date] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym__str_single_quotes] = ACTIONS(2478), + [sym__str_back_ticks] = ACTIONS(2478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2478), + [anon_sym_CARET] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(3), + }, + [1123] = { + [sym_comment] = STATE(1123), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_alias] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_let_DASHenv] = ACTIONS(2482), + [anon_sym_mut] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [sym_cmd_identifier] = ACTIONS(2482), + [anon_sym_LF] = ACTIONS(2484), + [anon_sym_def] = ACTIONS(2482), + [anon_sym_def_DASHenv] = ACTIONS(2482), + [anon_sym_export_DASHenv] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_error] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_source] = ACTIONS(2482), + [anon_sym_source_DASHenv] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_hide] = ACTIONS(2482), + [anon_sym_hide_DASHenv] = ACTIONS(2482), + [anon_sym_overlay] = ACTIONS(2482), + [anon_sym_where] = ACTIONS(2482), + [anon_sym_not] = ACTIONS(2482), + [anon_sym_DOT_DOT_LT] = ACTIONS(2482), + [anon_sym_DOT_DOT] = ACTIONS(2482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2482), + [sym_val_nothing] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [aux_sym_val_number_token1] = ACTIONS(2482), + [aux_sym_val_number_token2] = ACTIONS(2482), + [aux_sym_val_number_token3] = ACTIONS(2482), + [aux_sym_val_number_token4] = ACTIONS(2482), + [aux_sym_val_number_token5] = ACTIONS(2482), + [anon_sym_inf] = ACTIONS(2482), + [anon_sym_DASHinf] = ACTIONS(2482), + [anon_sym_NaN] = ACTIONS(2482), + [anon_sym_0b] = ACTIONS(2482), + [anon_sym_0o] = ACTIONS(2482), + [anon_sym_0x] = ACTIONS(2482), + [sym_val_date] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym__str_single_quotes] = ACTIONS(2482), + [sym__str_back_ticks] = ACTIONS(2482), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2482), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [1124] = { + [sym_comment] = STATE(1124), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_alias] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_let_DASHenv] = ACTIONS(2381), + [anon_sym_mut] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [sym_cmd_identifier] = ACTIONS(2381), + [anon_sym_LF] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2381), + [anon_sym_def_DASHenv] = ACTIONS(2381), + [anon_sym_export_DASHenv] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_source] = ACTIONS(2381), + [anon_sym_source_DASHenv] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_hide] = ACTIONS(2381), + [anon_sym_hide_DASHenv] = ACTIONS(2381), + [anon_sym_overlay] = ACTIONS(2381), + [anon_sym_where] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_DOT_DOT_LT] = ACTIONS(2381), + [anon_sym_DOT_DOT] = ACTIONS(2381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2381), + [sym_val_nothing] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [aux_sym_val_number_token1] = ACTIONS(2381), + [aux_sym_val_number_token2] = ACTIONS(2381), + [aux_sym_val_number_token3] = ACTIONS(2381), + [aux_sym_val_number_token4] = ACTIONS(2381), + [aux_sym_val_number_token5] = ACTIONS(2381), + [anon_sym_inf] = ACTIONS(2381), + [anon_sym_DASHinf] = ACTIONS(2381), + [anon_sym_NaN] = ACTIONS(2381), + [anon_sym_0b] = ACTIONS(2381), + [anon_sym_0o] = ACTIONS(2381), + [anon_sym_0x] = ACTIONS(2381), + [sym_val_date] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2381), + [anon_sym_CARET] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [1125] = { + [sym_comment] = STATE(1125), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_let_DASHenv] = ACTIONS(2488), + [anon_sym_mut] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [sym_cmd_identifier] = ACTIONS(2488), + [anon_sym_LF] = ACTIONS(2490), + [anon_sym_def] = ACTIONS(2488), + [anon_sym_def_DASHenv] = ACTIONS(2488), + [anon_sym_export_DASHenv] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2488), + [anon_sym_error] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_source] = ACTIONS(2488), + [anon_sym_source_DASHenv] = ACTIONS(2488), + [anon_sym_register] = ACTIONS(2488), + [anon_sym_hide] = ACTIONS(2488), + [anon_sym_hide_DASHenv] = ACTIONS(2488), + [anon_sym_overlay] = ACTIONS(2488), + [anon_sym_where] = ACTIONS(2488), + [anon_sym_not] = ACTIONS(2488), + [anon_sym_DOT_DOT_LT] = ACTIONS(2488), + [anon_sym_DOT_DOT] = ACTIONS(2488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2488), + [sym_val_nothing] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [aux_sym_val_number_token1] = ACTIONS(2488), + [aux_sym_val_number_token2] = ACTIONS(2488), + [aux_sym_val_number_token3] = ACTIONS(2488), + [aux_sym_val_number_token4] = ACTIONS(2488), + [aux_sym_val_number_token5] = ACTIONS(2488), + [anon_sym_inf] = ACTIONS(2488), + [anon_sym_DASHinf] = ACTIONS(2488), + [anon_sym_NaN] = ACTIONS(2488), + [anon_sym_0b] = ACTIONS(2488), + [anon_sym_0o] = ACTIONS(2488), + [anon_sym_0x] = ACTIONS(2488), + [sym_val_date] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2488), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2488), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(3), + }, + [1126] = { + [sym_comment] = STATE(1126), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_alias] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_DASHenv] = ACTIONS(2492), + [anon_sym_mut] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [sym_cmd_identifier] = ACTIONS(2492), + [anon_sym_LF] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2492), + [anon_sym_def_DASHenv] = ACTIONS(2492), + [anon_sym_export_DASHenv] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_error] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_source] = ACTIONS(2492), + [anon_sym_source_DASHenv] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_hide] = ACTIONS(2492), + [anon_sym_hide_DASHenv] = ACTIONS(2492), + [anon_sym_overlay] = ACTIONS(2492), + [anon_sym_where] = ACTIONS(2492), + [anon_sym_not] = ACTIONS(2492), + [anon_sym_DOT_DOT_LT] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2492), + [sym_val_nothing] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [aux_sym_val_number_token1] = ACTIONS(2492), + [aux_sym_val_number_token2] = ACTIONS(2492), + [aux_sym_val_number_token3] = ACTIONS(2492), + [aux_sym_val_number_token4] = ACTIONS(2492), + [aux_sym_val_number_token5] = ACTIONS(2492), + [anon_sym_inf] = ACTIONS(2492), + [anon_sym_DASHinf] = ACTIONS(2492), + [anon_sym_NaN] = ACTIONS(2492), + [anon_sym_0b] = ACTIONS(2492), + [anon_sym_0o] = ACTIONS(2492), + [anon_sym_0x] = ACTIONS(2492), + [sym_val_date] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym__str_single_quotes] = ACTIONS(2492), + [sym__str_back_ticks] = ACTIONS(2492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + }, + [1127] = { + [sym_comment] = STATE(1127), + [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), + [anon_sym_SEMI] = ACTIONS(2496), + [sym_cmd_identifier] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_where] = ACTIONS(2496), + [anon_sym_not] = ACTIONS(2496), + [anon_sym_DOT_DOT_LT] = ACTIONS(2496), + [anon_sym_DOT_DOT] = ACTIONS(2496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2496), + [sym_val_nothing] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [aux_sym_val_number_token1] = ACTIONS(2496), + [aux_sym_val_number_token2] = ACTIONS(2496), + [aux_sym_val_number_token3] = ACTIONS(2496), + [aux_sym_val_number_token4] = ACTIONS(2496), + [aux_sym_val_number_token5] = ACTIONS(2496), + [anon_sym_inf] = ACTIONS(2496), + [anon_sym_DASHinf] = ACTIONS(2496), + [anon_sym_NaN] = ACTIONS(2496), + [anon_sym_0b] = ACTIONS(2496), + [anon_sym_0o] = ACTIONS(2496), + [anon_sym_0x] = ACTIONS(2496), + [sym_val_date] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2496), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(3), + }, + [1128] = { + [sym_comment] = STATE(1128), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [sym_cmd_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2500), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_def_DASHenv] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_where] = ACTIONS(2055), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [sym_val_nothing] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [aux_sym_val_number_token1] = ACTIONS(2055), + [aux_sym_val_number_token2] = ACTIONS(2055), + [aux_sym_val_number_token3] = ACTIONS(2055), + [aux_sym_val_number_token4] = ACTIONS(2055), + [aux_sym_val_number_token5] = ACTIONS(2055), + [anon_sym_inf] = ACTIONS(2055), + [anon_sym_DASHinf] = ACTIONS(2055), + [anon_sym_NaN] = ACTIONS(2055), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(3), + }, + [1129] = { + [sym_ctrl_do] = STATE(914), + [sym_ctrl_if] = STATE(914), + [sym_ctrl_match] = STATE(914), + [sym_ctrl_try] = STATE(914), + [sym__expression] = STATE(2741), + [sym_expr_unary] = STATE(2831), + [sym_expr_binary] = STATE(2831), + [sym_expr_parenthesized] = STATE(2323), + [sym_val_range] = STATE(2831), + [sym__value] = STATE(2831), + [sym_val_bool] = STATE(2861), + [sym_val_variable] = STATE(2861), + [sym__var] = STATE(2344), + [sym_val_number] = STATE(129), + [sym_val_duration] = STATE(2861), + [sym_val_filesize] = STATE(2861), + [sym_val_binary] = STATE(2861), + [sym_val_string] = STATE(2861), + [sym__str_double_quotes] = STATE(2857), + [sym_val_interpolated] = STATE(2861), + [sym__inter_single_quotes] = STATE(2824), + [sym__inter_double_quotes] = STATE(2841), + [sym_val_list] = STATE(2861), + [sym_val_record] = STATE(2861), + [sym_val_table] = STATE(2861), + [sym_val_closure] = STATE(2861), + [sym_comment] = STATE(1129), + [ts_builtin_sym_end] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(85), + [aux_sym_val_number_token4] = ACTIONS(85), + [aux_sym_val_number_token5] = ACTIONS(85), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(85), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym__str_single_quotes] = ACTIONS(2510), + [sym__str_back_ticks] = ACTIONS(2510), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(3), + }, + [1130] = { + [sym_comment] = STATE(1130), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_alias] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_let_DASHenv] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2516), + [sym_cmd_identifier] = ACTIONS(2516), + [anon_sym_LF] = ACTIONS(2518), + [anon_sym_def] = ACTIONS(2516), + [anon_sym_def_DASHenv] = ACTIONS(2516), + [anon_sym_export_DASHenv] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_error] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_source] = ACTIONS(2516), + [anon_sym_source_DASHenv] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_hide] = ACTIONS(2516), + [anon_sym_hide_DASHenv] = ACTIONS(2516), + [anon_sym_overlay] = ACTIONS(2516), + [anon_sym_where] = ACTIONS(2516), + [anon_sym_not] = ACTIONS(2516), + [anon_sym_DOT_DOT_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2516), + [sym_val_nothing] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [aux_sym_val_number_token1] = ACTIONS(2516), + [aux_sym_val_number_token2] = ACTIONS(2516), + [aux_sym_val_number_token3] = ACTIONS(2516), + [aux_sym_val_number_token4] = ACTIONS(2516), + [aux_sym_val_number_token5] = ACTIONS(2516), + [anon_sym_inf] = ACTIONS(2516), + [anon_sym_DASHinf] = ACTIONS(2516), + [anon_sym_NaN] = ACTIONS(2516), + [anon_sym_0b] = ACTIONS(2516), + [anon_sym_0o] = ACTIONS(2516), + [anon_sym_0x] = ACTIONS(2516), + [sym_val_date] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(3), + }, + [1131] = { + [sym_cell_path] = STATE(1180), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1131), + [anon_sym_SEMI] = ACTIONS(738), + [sym_cmd_identifier] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(738), + [anon_sym_BANG_EQ] = ACTIONS(738), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(738), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(738), + [anon_sym_BANG_TILDE] = ACTIONS(738), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(738), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(738), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(738), + [aux_sym_val_number_token4] = ACTIONS(738), + [aux_sym_val_number_token5] = ACTIONS(738), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(738), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [sym__str_single_quotes] = ACTIONS(738), + [sym__str_back_ticks] = ACTIONS(738), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(157), + }, + [1132] = { + [sym_comment] = STATE(1132), + [anon_sym_export] = ACTIONS(2161), + [anon_sym_alias] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_let_DASHenv] = ACTIONS(2161), + [anon_sym_mut] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [sym_cmd_identifier] = ACTIONS(2161), + [anon_sym_LF] = ACTIONS(2520), + [anon_sym_def] = ACTIONS(2161), + [anon_sym_def_DASHenv] = ACTIONS(2161), + [anon_sym_export_DASHenv] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_error] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_source] = ACTIONS(2161), + [anon_sym_source_DASHenv] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_hide] = ACTIONS(2161), + [anon_sym_hide_DASHenv] = ACTIONS(2161), + [anon_sym_overlay] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_not] = ACTIONS(2161), + [anon_sym_DOT_DOT_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2161), + [sym_val_nothing] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [aux_sym_val_number_token1] = ACTIONS(2161), + [aux_sym_val_number_token2] = ACTIONS(2161), + [aux_sym_val_number_token3] = ACTIONS(2161), + [aux_sym_val_number_token4] = ACTIONS(2161), + [aux_sym_val_number_token5] = ACTIONS(2161), + [anon_sym_inf] = ACTIONS(2161), + [anon_sym_DASHinf] = ACTIONS(2161), + [anon_sym_NaN] = ACTIONS(2161), + [anon_sym_0b] = ACTIONS(2161), + [anon_sym_0o] = ACTIONS(2161), + [anon_sym_0x] = ACTIONS(2161), + [sym_val_date] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym__str_single_quotes] = ACTIONS(2161), + [sym__str_back_ticks] = ACTIONS(2161), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2161), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(3), + }, + [1133] = { + [sym_cell_path] = STATE(1185), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1133), + [anon_sym_SEMI] = ACTIONS(742), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(742), + [anon_sym_BANG_TILDE] = ACTIONS(742), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(742), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(742), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(742), + [aux_sym_val_number_token4] = ACTIONS(742), + [aux_sym_val_number_token5] = ACTIONS(742), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(742), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(742), + [sym__str_single_quotes] = ACTIONS(742), + [sym__str_back_ticks] = ACTIONS(742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(157), + }, + [1134] = { + [sym_comment] = STATE(1134), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_alias] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_let_DASHenv] = ACTIONS(2522), + [anon_sym_mut] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [sym_cmd_identifier] = ACTIONS(2522), + [anon_sym_LF] = ACTIONS(2524), + [anon_sym_def] = ACTIONS(2522), + [anon_sym_def_DASHenv] = ACTIONS(2522), + [anon_sym_export_DASHenv] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_module] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_DOLLAR] = ACTIONS(2522), + [anon_sym_error] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_source] = ACTIONS(2522), + [anon_sym_source_DASHenv] = ACTIONS(2522), + [anon_sym_register] = ACTIONS(2522), + [anon_sym_hide] = ACTIONS(2522), + [anon_sym_hide_DASHenv] = ACTIONS(2522), + [anon_sym_overlay] = ACTIONS(2522), + [anon_sym_where] = ACTIONS(2522), + [anon_sym_not] = ACTIONS(2522), + [anon_sym_DOT_DOT_LT] = ACTIONS(2522), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2522), + [sym_val_nothing] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [aux_sym_val_number_token1] = ACTIONS(2522), + [aux_sym_val_number_token2] = ACTIONS(2522), + [aux_sym_val_number_token3] = ACTIONS(2522), + [aux_sym_val_number_token4] = ACTIONS(2522), + [aux_sym_val_number_token5] = ACTIONS(2522), + [anon_sym_inf] = ACTIONS(2522), + [anon_sym_DASHinf] = ACTIONS(2522), + [anon_sym_NaN] = ACTIONS(2522), + [anon_sym_0b] = ACTIONS(2522), + [anon_sym_0o] = ACTIONS(2522), + [anon_sym_0x] = ACTIONS(2522), + [sym_val_date] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym__str_single_quotes] = ACTIONS(2522), + [sym__str_back_ticks] = ACTIONS(2522), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(3), + }, + [1135] = { + [sym_comment] = STATE(1135), + [anon_sym_export] = ACTIONS(2526), + [anon_sym_alias] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_let_DASHenv] = ACTIONS(2526), + [anon_sym_mut] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [sym_cmd_identifier] = ACTIONS(2526), + [anon_sym_LF] = ACTIONS(2528), + [anon_sym_def] = ACTIONS(2526), + [anon_sym_def_DASHenv] = ACTIONS(2526), + [anon_sym_export_DASHenv] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2526), + [anon_sym_module] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2526), + [anon_sym_error] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_loop] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_do] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_match] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_source] = ACTIONS(2526), + [anon_sym_source_DASHenv] = ACTIONS(2526), + [anon_sym_register] = ACTIONS(2526), + [anon_sym_hide] = ACTIONS(2526), + [anon_sym_hide_DASHenv] = ACTIONS(2526), + [anon_sym_overlay] = ACTIONS(2526), + [anon_sym_where] = ACTIONS(2526), + [anon_sym_not] = ACTIONS(2526), + [anon_sym_DOT_DOT_LT] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2526), + [sym_val_nothing] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [aux_sym_val_number_token1] = ACTIONS(2526), + [aux_sym_val_number_token2] = ACTIONS(2526), + [aux_sym_val_number_token3] = ACTIONS(2526), + [aux_sym_val_number_token4] = ACTIONS(2526), + [aux_sym_val_number_token5] = ACTIONS(2526), + [anon_sym_inf] = ACTIONS(2526), + [anon_sym_DASHinf] = ACTIONS(2526), + [anon_sym_NaN] = ACTIONS(2526), + [anon_sym_0b] = ACTIONS(2526), + [anon_sym_0o] = ACTIONS(2526), + [anon_sym_0x] = ACTIONS(2526), + [sym_val_date] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [sym__str_single_quotes] = ACTIONS(2526), + [sym__str_back_ticks] = ACTIONS(2526), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(3), + }, + [1136] = { + [sym_comment] = STATE(1136), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [sym_cmd_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2530), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_def_DASHenv] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2371), + [anon_sym_not] = ACTIONS(2371), + [anon_sym_DOT_DOT_LT] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2371), + [sym_val_nothing] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [aux_sym_val_number_token1] = ACTIONS(2371), + [aux_sym_val_number_token2] = ACTIONS(2371), + [aux_sym_val_number_token3] = ACTIONS(2371), + [aux_sym_val_number_token4] = ACTIONS(2371), + [aux_sym_val_number_token5] = ACTIONS(2371), + [anon_sym_inf] = ACTIONS(2371), + [anon_sym_DASHinf] = ACTIONS(2371), + [anon_sym_NaN] = ACTIONS(2371), + [anon_sym_0b] = ACTIONS(2371), + [anon_sym_0o] = ACTIONS(2371), + [anon_sym_0x] = ACTIONS(2371), + [sym_val_date] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym__str_single_quotes] = ACTIONS(2371), + [sym__str_back_ticks] = ACTIONS(2371), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(3), + }, + [1137] = { + [sym_comment] = STATE(1137), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [sym_cmd_identifier] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_def_DASHenv] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_not] = ACTIONS(2347), + [anon_sym_DOT_DOT_LT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2347), + [sym_val_nothing] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [aux_sym_val_number_token1] = ACTIONS(2347), + [aux_sym_val_number_token2] = ACTIONS(2347), + [aux_sym_val_number_token3] = ACTIONS(2347), + [aux_sym_val_number_token4] = ACTIONS(2347), + [aux_sym_val_number_token5] = ACTIONS(2347), + [anon_sym_inf] = ACTIONS(2347), + [anon_sym_DASHinf] = ACTIONS(2347), + [anon_sym_NaN] = ACTIONS(2347), + [anon_sym_0b] = ACTIONS(2347), + [anon_sym_0o] = ACTIONS(2347), + [anon_sym_0x] = ACTIONS(2347), + [sym_val_date] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym__str_single_quotes] = ACTIONS(2347), + [sym__str_back_ticks] = ACTIONS(2347), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2347), + [anon_sym_CARET] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(3), + }, + [1138] = { + [sym_comment] = STATE(1138), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_alias] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_let_DASHenv] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2401), + [sym_cmd_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2534), + [anon_sym_def] = ACTIONS(2401), + [anon_sym_def_DASHenv] = ACTIONS(2401), + [anon_sym_export_DASHenv] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_source] = ACTIONS(2401), + [anon_sym_source_DASHenv] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), + [sym_val_nothing] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [aux_sym_val_number_token1] = ACTIONS(2401), + [aux_sym_val_number_token2] = ACTIONS(2401), + [aux_sym_val_number_token3] = ACTIONS(2401), + [aux_sym_val_number_token4] = ACTIONS(2401), + [aux_sym_val_number_token5] = ACTIONS(2401), + [anon_sym_inf] = ACTIONS(2401), + [anon_sym_DASHinf] = ACTIONS(2401), + [anon_sym_NaN] = ACTIONS(2401), + [anon_sym_0b] = ACTIONS(2401), + [anon_sym_0o] = ACTIONS(2401), + [anon_sym_0x] = ACTIONS(2401), + [sym_val_date] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2401), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1139), 1, + sym_comment, + STATE(1140), 1, + sym_path, + STATE(1357), 1, + sym_cell_path, + ACTIONS(744), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(746), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [79] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_comment, + STATE(1160), 1, + aux_sym_cell_path_repeat1, + STATE(1198), 1, + sym_path, + ACTIONS(756), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(758), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [158] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1141), 1, + sym_comment, + STATE(1355), 1, + sym_cell_path, + ACTIONS(764), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(766), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [237] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1142), 1, + sym_comment, + STATE(1165), 1, + sym_cell_path, + ACTIONS(766), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(764), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [316] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1143), 1, + sym_comment, + STATE(1251), 1, + sym_cell_path, + ACTIONS(768), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(770), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [395] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1144), 1, + sym_comment, + STATE(1317), 1, + sym_cell_path, + ACTIONS(762), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(760), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [474] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1145), 1, + sym_comment, + STATE(1305), 1, + sym_cell_path, + ACTIONS(732), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(730), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [553] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1146), 1, + sym_comment, + STATE(1300), 1, + sym_cell_path, + ACTIONS(770), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(768), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [632] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2538), 1, + anon_sym_DOT, + STATE(1198), 1, + sym_path, + STATE(1147), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(725), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [709] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1148), 1, + sym_comment, + STATE(1289), 1, + sym_cell_path, + ACTIONS(750), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(748), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [788] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1149), 1, + sym_comment, + STATE(1359), 1, + sym_cell_path, + ACTIONS(730), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(732), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [867] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + anon_sym_DOLLAR, + ACTIONS(1607), 1, + sym_short_flag, + ACTIONS(1609), 1, + aux_sym_unquoted_token1, + ACTIONS(2541), 1, + anon_sym_LBRACK, + ACTIONS(2543), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_DASH_DASH, + ACTIONS(2547), 1, + anon_sym_LBRACE, + ACTIONS(2549), 1, + anon_sym_DQUOTE, + ACTIONS(2553), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2555), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(109), 1, + sym_val_number, + STATE(1150), 1, + sym_comment, + STATE(1799), 1, + sym__var, + STATE(1846), 1, + sym_expr_parenthesized, + STATE(1857), 1, + sym_redirection, + STATE(1862), 1, + sym__flag, + STATE(1867), 1, + sym__str_double_quotes, + STATE(1868), 1, + sym_long_flag, + STATE(1880), 1, + sym_unquoted, + STATE(1883), 1, + sym__inter_single_quotes, + STATE(1885), 1, + sym__inter_double_quotes, + STATE(1914), 1, + sym__cmd_arg, + ACTIONS(1589), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1591), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2551), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1873), 2, + sym_val_range, + sym__value, + ACTIONS(1587), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1595), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1593), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(1605), 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, + STATE(1844), 11, + sym_val_bool, + sym_val_variable, + 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, + [996] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1151), 1, + sym_comment, + ACTIONS(2557), 17, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(2559), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_def_DASHenv, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [1069] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DOT, + STATE(1108), 1, + sym_path, + STATE(1152), 1, + sym_comment, + STATE(1296), 1, + sym_cell_path, + ACTIONS(746), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(744), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [1148] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1153), 1, + sym_comment, + STATE(1356), 1, + sym_cell_path, + ACTIONS(748), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(750), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1227] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1154), 1, + sym_comment, + STATE(1315), 1, + sym_cell_path, + ACTIONS(760), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(762), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1306] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1155), 1, + sym_comment, + STATE(1306), 1, + sym_cell_path, + ACTIONS(736), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(738), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1385] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + anon_sym_QMARK2, + STATE(1156), 1, + sym_comment, + ACTIONS(774), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(772), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [1460] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + anon_sym_QMARK2, + STATE(1157), 1, + sym_comment, + ACTIONS(774), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(772), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [1535] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1158), 1, + sym_comment, + STATE(1264), 1, + sym_cell_path, + ACTIONS(740), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(742), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1614] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1140), 1, + sym_path, + STATE(1159), 1, + sym_comment, + STATE(1315), 1, + sym_cell_path, + ACTIONS(760), 6, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2566), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(762), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + ACTIONS(2563), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1697] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2536), 1, + anon_sym_DOT, + STATE(1147), 1, + aux_sym_cell_path_repeat1, + STATE(1160), 1, + sym_comment, + STATE(1198), 1, + sym_path, + ACTIONS(752), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(754), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1776] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1161), 1, + sym_comment, + ACTIONS(909), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(907), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [1848] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2569), 1, + anon_sym_QMARK2, + STATE(1162), 1, + sym_comment, + ACTIONS(772), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(774), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1922] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2569), 1, + anon_sym_QMARK2, + STATE(1163), 1, + sym_comment, + ACTIONS(772), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(774), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1996] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1164), 1, + sym_comment, + ACTIONS(2573), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(2571), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_def_DASHenv, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2068] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1165), 1, + sym_comment, + ACTIONS(1031), 27, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1029), 34, + anon_sym_EQ, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2140] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2575), 1, + anon_sym_LPAREN, + STATE(1166), 1, + sym_comment, + ACTIONS(2577), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(1351), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2579), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(826), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(828), 36, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2220] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1167), 1, + sym_comment, + ACTIONS(1024), 27, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1022), 34, + anon_sym_EQ, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2292] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1168), 1, + sym_comment, + ACTIONS(780), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(782), 44, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2364] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1169), 1, + sym_comment, + ACTIONS(784), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(786), 44, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2436] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + STATE(1170), 1, + sym_comment, + STATE(1311), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2583), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2585), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + ACTIONS(828), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(826), 29, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2516] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1171), 1, + sym_comment, + ACTIONS(905), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(903), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2588] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1172), 1, + sym_comment, + ACTIONS(2589), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(2587), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_def_DASHenv, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2660] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2591), 1, + anon_sym_SEMI, + STATE(1173), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2733] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1174), 1, + sym_comment, + STATE(1194), 1, + sym__flag, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2121), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(842), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [2860] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1175), 1, + sym_comment, + ACTIONS(899), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(901), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2931] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1176), 1, + sym_comment, + ACTIONS(903), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(905), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [3002] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2627), 1, + anon_sym_SEMI, + STATE(1177), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3075] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2629), 1, + anon_sym_SEMI, + STATE(1178), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3148] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2631), 1, + anon_sym_SEMI, + STATE(1179), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3221] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1180), 1, + sym_comment, + ACTIONS(958), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(956), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3292] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2633), 1, + anon_sym_SEMI, + STATE(1181), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3365] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2635), 1, + anon_sym_SEMI, + STATE(1182), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3438] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2637), 1, + anon_sym_SEMI, + STATE(1183), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3511] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2639), 1, + anon_sym_SEMI, + STATE(1184), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3584] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1185), 1, + sym_comment, + ACTIONS(936), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(934), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3655] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2641), 1, + anon_sym_SEMI, + STATE(1186), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [3728] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1187), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2108), 1, + sym__expression, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + STATE(3113), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(788), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [3855] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(863), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1187), 1, + sym__flag, + STATE(1188), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2112), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(861), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [3982] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(863), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1189), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2112), 1, + sym__expression, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + STATE(3118), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(861), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4109] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(824), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1188), 1, + sym__flag, + STATE(1190), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2116), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(822), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4236] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(824), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1189), 1, + sym__flag, + STATE(1191), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2116), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(822), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4363] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(824), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1192), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2116), 1, + sym__expression, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + STATE(3115), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(822), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4490] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(852), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1190), 1, + sym__flag, + STATE(1193), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2103), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(850), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4617] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(852), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1191), 1, + sym__flag, + STATE(1194), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2103), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(850), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4744] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(852), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1192), 1, + sym__flag, + STATE(1195), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2103), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(850), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4871] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(852), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1196), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2103), 1, + sym__expression, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + STATE(3111), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(850), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [4998] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1193), 1, + sym__flag, + STATE(1197), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2121), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(842), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5125] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1198), 1, + sym_comment, + ACTIONS(907), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(909), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [5196] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1195), 1, + sym__flag, + STATE(1199), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2121), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(842), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5323] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1196), 1, + sym__flag, + STATE(1200), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2121), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(842), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5450] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1201), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2121), 1, + sym__expression, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + STATE(3108), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(842), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5577] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2647), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [5650] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(836), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1174), 1, + sym__flag, + STATE(1203), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 16, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2125), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(834), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5777] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(836), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1199), 1, + sym__flag, + STATE(1204), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2125), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(759), 43, + ACTIONS(834), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [5904] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2649), 1, + anon_sym_SEMI, + STATE(1205), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [5977] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(836), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1200), 1, + sym__flag, + STATE(1206), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2125), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(834), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [6104] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1207), 1, + sym_comment, + STATE(1218), 1, + sym__flag, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2141), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(846), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [6231] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2651), 1, + anon_sym_SEMI, + STATE(1208), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [77] = 4, - ACTIONS(147), 1, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6304] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1056), 1, + ACTIONS(2653), 1, + anon_sym_SEMI, + STATE(1209), 1, sym_comment, - ACTIONS(2535), 17, - ts_builtin_sym_end, + ACTIONS(105), 26, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -139292,41 +152620,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(2537), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(103), 33, sym_cmd_identifier, - anon_sym_def, - anon_sym_def_DASHenv, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -139339,20 +152654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [150] = 7, - ACTIONS(147), 1, + [6377] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(2657), 1, anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1057), 1, + STATE(1210), 1, sym_comment, - STATE(1085), 1, - sym_cell_path, - ACTIONS(731), 26, + ACTIONS(901), 25, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -139377,7 +152689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(729), 33, + ACTIONS(899), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -139411,146 +152723,665 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [229] = 7, - ACTIONS(147), 1, + [6452] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1058), 1, + ACTIONS(2659), 1, + anon_sym_SEMI, + STATE(1211), 1, sym_comment, - STATE(1076), 1, - sym_path, - STATE(1163), 1, - sym_cell_path, - ACTIONS(729), 16, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(731), 43, + [6525] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(2593), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2595), 1, anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1212), 1, + sym_comment, + STATE(1219), 1, + sym__flag, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2141), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(846), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [6652] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2661), 1, + anon_sym_SEMI, + STATE(1213), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6725] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2663), 1, + anon_sym_SEMI, + STATE(1214), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [308] = 32, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6798] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1583), 1, + ACTIONS(1137), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, sym_short_flag, - ACTIONS(1611), 1, - aux_sym_unquoted_token1, - ACTIONS(2541), 1, + STATE(117), 1, + sym_val_number, + STATE(1212), 1, + sym__flag, + STATE(1215), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2186), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1135), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [6925] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(836), 1, + anon_sym_LF, + ACTIONS(2593), 1, anon_sym_LBRACK, - ACTIONS(2543), 1, + ACTIONS(2595), 1, anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, anon_sym_DASH_DASH, - ACTIONS(2547), 1, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, anon_sym_LBRACE, - ACTIONS(2549), 1, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_DQUOTE, - ACTIONS(2553), 1, + ACTIONS(2621), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2555), 1, + ACTIONS(2623), 1, anon_sym_DOLLAR_DQUOTE, - STATE(108), 1, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, sym_val_number, - STATE(1059), 1, + STATE(1201), 1, + sym__flag, + STATE(1216), 1, sym_comment, - STATE(1693), 1, + STATE(2077), 1, sym__var, - STATE(1730), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2125), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, sym__inter_double_quotes, - STATE(1739), 1, - sym_unquoted, - STATE(1747), 1, - sym_redirection, - STATE(1751), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(1752), 1, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(834), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [7052] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1204), 1, + sym__flag, + STATE(1217), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, sym_expr_parenthesized, - STATE(1754), 1, + STATE(2127), 1, + sym__expression, + STATE(2249), 1, sym_long_flag, - STATE(1756), 1, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, sym__str_double_quotes, - STATE(1763), 1, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2619), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(854), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [7179] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + anon_sym_LF, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, + anon_sym_DQUOTE, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1206), 1, sym__flag, - STATE(1820), 1, - sym__cmd_arg, - ACTIONS(1591), 2, + STATE(1218), 1, + sym_comment, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2127), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(1593), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(2551), 2, + ACTIONS(2619), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1732), 2, - sym_val_range, - sym__value, - ACTIONS(1589), 3, + ACTIONS(2607), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1597), 3, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1595), 8, + ACTIONS(854), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -139559,16 +153390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(1607), 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, - STATE(1761), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -139580,234 +153402,107 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [437] = 7, - ACTIONS(147), 1, + [7306] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1060), 1, - sym_comment, - STATE(1076), 1, - sym_path, - STATE(1219), 1, - sym_cell_path, - ACTIONS(733), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(735), 43, + ACTIONS(856), 1, + anon_sym_LF, + ACTIONS(2593), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2595), 1, anon_sym_LPAREN, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2599), 1, + anon_sym_DASH_DASH, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2603), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2621), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, anon_sym_DOLLAR_DQUOTE, - [516] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1061), 1, + ACTIONS(2625), 1, + sym_short_flag, + STATE(117), 1, + sym_val_number, + STATE(1216), 1, + sym__flag, + STATE(1219), 1, sym_comment, - STATE(1076), 1, - sym_path, - STATE(1212), 1, - sym_cell_path, - ACTIONS(737), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(739), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(2077), 1, + sym__var, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2127), 1, + sym__expression, + STATE(2249), 1, + sym_long_flag, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2619), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [595] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1062), 1, - sym_comment, - STATE(1076), 1, - sym_path, - STATE(1213), 1, - sym_cell_path, - ACTIONS(753), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(755), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(854), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [674] = 7, - ACTIONS(147), 1, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [7433] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1063), 1, + STATE(1220), 1, sym_comment, - STATE(1174), 1, - sym_cell_path, - ACTIONS(770), 26, + ACTIONS(901), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -139834,84 +153529,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(768), 33, + ACTIONS(899), 34, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [753] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2441), 1, anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1064), 1, - sym_comment, - STATE(1169), 1, - sym_cell_path, - ACTIONS(766), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(764), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -139940,15 +153564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [832] = 5, - ACTIONS(147), 1, + [7504] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2557), 1, - anon_sym_QMARK2, - STATE(1065), 1, - sym_comment, - ACTIONS(838), 27, + ACTIONS(2665), 1, anon_sym_SEMI, + STATE(1221), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -139975,13 +153598,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(836), 34, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -140010,15 +153632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [907] = 5, - ACTIONS(147), 1, + [7577] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2557), 1, - anon_sym_QMARK2, - STATE(1066), 1, - sym_comment, - ACTIONS(838), 27, + ACTIONS(2667), 1, anon_sym_SEMI, + STATE(1222), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -140045,13 +153666,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(836), 34, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -140080,18 +153700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [982] = 7, - ACTIONS(147), 1, + [7650] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1067), 1, + STATE(1223), 1, sym_comment, - STATE(1076), 1, - sym_path, - STATE(1210), 1, - sym_cell_path, - ACTIONS(764), 16, + ACTIONS(1014), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -140108,7 +153722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(766), 43, + ACTIONS(1016), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -140152,234 +153766,106 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1061] = 7, - ACTIONS(147), 1, + [7720] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1068), 1, - sym_comment, - STATE(1076), 1, - sym_path, - STATE(1209), 1, - sym_cell_path, - ACTIONS(768), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(770), 43, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - [1140] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1069), 1, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1224), 1, sym_comment, - STATE(1076), 1, - sym_path, - STATE(1208), 1, - sym_cell_path, - ACTIONS(741), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(743), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(1287), 1, + sym__flag, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2252), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(834), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(836), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1219] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1070), 1, - sym_comment, - STATE(1076), 1, - sym_path, - STATE(1207), 1, - sym_cell_path, - ACTIONS(723), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(725), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1298] = 7, - ACTIONS(147), 1, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [7846] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1071), 1, + STATE(1225), 1, sym_comment, - STATE(1167), 1, - sym_cell_path, - ACTIONS(725), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -140406,7 +153892,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(723), 33, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -140440,172 +153926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [1377] = 9, - ACTIONS(147), 1, + [7916] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1072), 1, - sym_comment, - STATE(1076), 1, - sym_path, - STATE(1208), 1, - sym_cell_path, - ACTIONS(741), 6, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2562), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(743), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, + ACTIONS(2709), 1, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - ACTIONS(2559), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1460] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1055), 1, - aux_sym_cell_path_repeat1, - STATE(1073), 1, + STATE(1226), 1, sym_comment, - STATE(1132), 1, - sym_path, - ACTIONS(745), 16, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2703), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(747), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1539] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1074), 1, - sym_comment, - STATE(1157), 1, - sym_cell_path, - ACTIONS(743), 26, + ACTIONS(1004), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -140624,16 +153967,11 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(741), 33, + ACTIONS(1002), 28, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_LT2, @@ -140658,18 +153996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [1618] = 7, - ACTIONS(147), 1, + [7994] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_path, - STATE(1075), 1, + STATE(1227), 1, sym_comment, - STATE(1162), 1, - sym_cell_path, - ACTIONS(739), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -140696,7 +154028,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(737), 33, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -140730,205 +154062,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [1697] = 7, - ACTIONS(147), 1, + [8064] = 12, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DOT, - STATE(1073), 1, - aux_sym_cell_path_repeat1, - STATE(1076), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + STATE(1228), 1, sym_comment, - STATE(1132), 1, - sym_path, - ACTIONS(749), 16, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2703), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(751), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1776] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_QMARK2, - STATE(1077), 1, - sym_comment, - ACTIONS(836), 17, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(838), 43, + ACTIONS(1004), 19, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1850] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - STATE(1078), 1, - sym_comment, - STATE(1161), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2569), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2571), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - ACTIONS(808), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(806), 29, + ACTIONS(1002), 20, sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -140940,84 +154129,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, anon_sym_true, anon_sym_false, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [1930] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1079), 1, - sym_comment, - ACTIONS(842), 17, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(844), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [2002] = 4, - ACTIONS(147), 1, + [8150] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1080), 1, + STATE(1229), 1, sym_comment, - ACTIONS(1031), 27, - anon_sym_COLON, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -141044,8 +154168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1029), 34, - anon_sym_EQ, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -141066,163 +154189,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [2074] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_QMARK2, - STATE(1081), 1, - sym_comment, - ACTIONS(836), 17, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(838), 43, + [8220] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + STATE(1230), 1, + sym_comment, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1004), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2148] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1082), 1, - sym_comment, - ACTIONS(846), 17, + ACTIONS(1002), 30, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(848), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [2220] = 4, - ACTIONS(147), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [8296] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1083), 1, + STATE(1231), 1, sym_comment, - ACTIONS(910), 27, - anon_sym_SEMI, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -141249,13 +154303,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(908), 34, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -141284,20 +154337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2292] = 4, - ACTIONS(147), 1, + [8366] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1084), 1, + STATE(1232), 1, sym_comment, - ACTIONS(903), 27, - anon_sym_SEMI, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1004), 24, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -141317,13 +154370,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(901), 34, + ACTIONS(1002), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -141352,13 +154404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2364] = 4, - ACTIONS(147), 1, + [8438] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1085), 1, + STATE(1233), 1, sym_comment, - ACTIONS(1020), 27, - anon_sym_COLON, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -141385,8 +154436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1018), 34, - anon_sym_EQ, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -141420,87 +154470,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2436] = 8, - ACTIONS(147), 1, + [8508] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - STATE(1086), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + STATE(1234), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1215), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2577), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(806), 14, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2703), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(808), 36, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(2715), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1004), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [2516] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1087), 1, - sym_comment, - ACTIONS(2581), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -141513,41 +154514,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(2579), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(1002), 26, sym_cmd_identifier, - anon_sym_def, - anon_sym_def_DASHenv, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -141560,15 +154541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2588] = 4, - ACTIONS(147), 1, + [8588] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1088), 1, + STATE(1235), 1, sym_comment, - ACTIONS(2585), 16, + ACTIONS(1012), 26, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -141581,41 +154573,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(2583), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(1010), 33, sym_cmd_identifier, - anon_sym_def, - anon_sym_def_DASHenv, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -141628,489 +154607,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2660] = 32, - ACTIONS(3), 1, + [8658] = 13, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + STATE(1236), 1, + sym_comment, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 17, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1089), 1, - sym_comment, - STATE(1135), 1, - sym__flag, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2078), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(850), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [2787] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(830), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1090), 1, - sym_comment, - STATE(1130), 1, - sym__flag, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2083), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [2914] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(830), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1091), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2083), 1, - sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - STATE(2855), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3041] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(1002), 20, + sym_cmd_identifier, anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1092), 1, - sym_comment, - STATE(1128), 1, - sym__flag, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2087), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3168] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1093), 1, - sym_comment, - STATE(1127), 1, - sym__flag, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2087), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3295] = 5, - ACTIONS(147), 1, + [8746] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2625), 1, - anon_sym_SEMI, - STATE(1094), 1, + STATE(1237), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -142137,7 +154714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -142171,394 +154748,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [3368] = 32, - ACTIONS(3), 1, + [8816] = 14, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1090), 1, - sym__flag, - STATE(1095), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + STATE(1238), 1, sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2087), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3495] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2703), 2, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1091), 1, - sym__flag, - STATE(1096), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2087), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3622] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2587), 1, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 17, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1097), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2087), 1, - sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - STATE(2878), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3749] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(856), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1093), 1, - sym__flag, - STATE(1098), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2079), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(854), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1002), 19, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [3876] = 5, - ACTIONS(147), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [8906] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2627), 1, - anon_sym_SEMI, - STATE(1099), 1, + STATE(1239), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -142585,7 +154856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -142619,584 +154890,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [3949] = 32, - ACTIONS(3), 1, + [8976] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(856), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + ACTIONS(2723), 1, + anon_sym_bit_DASHxor, + STATE(1240), 1, + sym_comment, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 17, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1095), 1, - sym__flag, - STATE(1100), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2079), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(854), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4076] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(856), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2615), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1096), 1, - sym__flag, - STATE(1101), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2079), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(1002), 18, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(854), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4203] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9068] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(856), 1, - anon_sym_LF, - ACTIONS(2587), 1, + STATE(1241), 1, + sym_comment, + ACTIONS(1012), 26, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2615), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1097), 1, - sym__flag, - STATE(1102), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2079), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(1010), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(854), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4330] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9138] = 16, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(774), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + ACTIONS(2723), 1, + anon_sym_bit_DASHxor, + ACTIONS(2725), 1, + anon_sym_bit_DASHor, + STATE(1242), 1, + sym_comment, + ACTIONS(2703), 2, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 17, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1100), 1, - sym__flag, - STATE(1103), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2076), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(772), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1004), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4457] = 32, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9232] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(774), 1, - anon_sym_LF, - ACTIONS(2587), 1, + STATE(1243), 1, + sym_comment, + ACTIONS(1012), 26, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2615), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1101), 1, - sym__flag, - STATE(1104), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2076), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(1010), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(772), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4584] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9302] = 17, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(774), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + ACTIONS(2723), 1, + anon_sym_bit_DASHxor, + ACTIONS(2725), 1, + anon_sym_bit_DASHor, + ACTIONS(2727), 1, + anon_sym_and, + STATE(1244), 1, + sym_comment, + ACTIONS(2703), 2, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 16, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_xor, + anon_sym_or, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1102), 1, - sym__flag, - STATE(1105), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2076), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(772), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1004), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4711] = 5, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9398] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2629), 1, - anon_sym_SEMI, - STATE(1106), 1, + STATE(1245), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -143223,7 +155288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -143257,297 +155322,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4784] = 32, - ACTIONS(3), 1, + [9468] = 18, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + ACTIONS(2723), 1, + anon_sym_bit_DASHxor, + ACTIONS(2725), 1, + anon_sym_bit_DASHor, + ACTIONS(2727), 1, + anon_sym_and, + ACTIONS(2729), 1, + anon_sym_xor, + STATE(1246), 1, + sym_comment, + ACTIONS(2703), 2, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_or, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1104), 1, - sym__flag, - STATE(1107), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2072), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(816), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1004), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [4911] = 32, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9566] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LF, - ACTIONS(2587), 1, + STATE(1247), 1, + sym_comment, + ACTIONS(1012), 26, anon_sym_LBRACK, - ACTIONS(2589), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2597), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, - anon_sym_not, - ACTIONS(2611), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2615), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1105), 1, - sym__flag, - STATE(1108), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2072), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(1010), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(816), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [5038] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9636] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1101), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, + anon_sym_bit_DASHand, + ACTIONS(2723), 1, + anon_sym_bit_DASHxor, + ACTIONS(2725), 1, + anon_sym_bit_DASHor, + ACTIONS(2727), 1, + anon_sym_and, + ACTIONS(2729), 1, + anon_sym_xor, + ACTIONS(2731), 1, + anon_sym_or, + STATE(1248), 1, + sym_comment, + ACTIONS(2703), 2, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2719), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2713), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2717), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 14, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1108), 1, - sym__flag, - STATE(1109), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2059), 1, - sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2603), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1099), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1004), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [5165] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9736] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1110), 1, + STATE(1249), 1, sym_comment, - ACTIONS(916), 26, + ACTIONS(1012), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -143574,13 +155581,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(914), 34, + ACTIONS(1010), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -143609,181 +155615,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5236] = 32, - ACTIONS(3), 1, + [9806] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(826), 1, - anon_sym_LF, - ACTIONS(2587), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, + STATE(1250), 1, + sym_comment, + ACTIONS(960), 16, anon_sym_DOLLAR, - ACTIONS(2595), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2597), 1, - anon_sym_LBRACE, - ACTIONS(2599), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2615), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(117), 1, - sym_val_number, - STATE(1111), 1, - sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2070), 1, - sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - STATE(2863), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(2603), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2605), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2613), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2601), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(824), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2607), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, - sym_val_bool, - sym_val_variable, - 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, - [5363] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_SEMI, - STATE(1112), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(962), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [9876] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1251), 1, + sym_comment, + ACTIONS(980), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(982), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [5436] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9946] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1113), 1, + STATE(1252), 1, sym_comment, - ACTIONS(914), 17, + ACTIONS(964), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -143795,7 +155769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(916), 43, + ACTIONS(966), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -143839,285 +155813,416 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [5507] = 5, - ACTIONS(147), 1, + [10016] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2633), 1, - anon_sym_SEMI, - STATE(1114), 1, + STATE(1253), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10086] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1254), 1, + sym_comment, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym__, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 39, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10162] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1255), 1, + sym_comment, + ACTIONS(968), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5580] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - anon_sym_SEMI, - STATE(1115), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(970), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10232] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1256), 1, + sym_comment, + ACTIONS(972), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5653] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2637), 1, - anon_sym_SEMI, - STATE(1116), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(974), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10302] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1257), 1, + sym_comment, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5726] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_SEMI, - STATE(1117), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(978), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10372] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1258), 1, + sym_comment, + ACTIONS(984), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(986), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [5799] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10442] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1118), 1, + ACTIONS(161), 1, + anon_sym_DOT_DOT, + STATE(1259), 1, sym_comment, - ACTIONS(990), 27, - anon_sym_SEMI, + ACTIONS(159), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(928), 24, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -144132,8 +156237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, @@ -144144,7 +156247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(988), 33, + ACTIONS(926), 32, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -144167,7 +156270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_not, - anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -144178,14 +156280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5870] = 5, - ACTIONS(147), 1, + [10516] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2641), 1, - anon_sym_SEMI, - STATE(1119), 1, + STATE(1260), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(928), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -144212,7 +156312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(926), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -144246,285 +156346,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5943] = 5, - ACTIONS(147), 1, + [10586] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2643), 1, - anon_sym_SEMI, - STATE(1120), 1, + STATE(1261), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(984), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(986), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10656] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1262), 1, + sym_comment, + ACTIONS(988), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6016] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2645), 1, - anon_sym_SEMI, - STATE(1121), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(990), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10726] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1263), 1, + sym_comment, + ACTIONS(1010), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6089] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2647), 1, - anon_sym_SEMI, - STATE(1122), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10796] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1264), 1, + sym_comment, + ACTIONS(934), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6162] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2649), 1, - anon_sym_SEMI, - STATE(1123), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(936), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [10866] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1265), 1, + sym_comment, + ACTIONS(103), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [6235] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10936] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1124), 1, + STATE(1266), 1, sym_comment, - ACTIONS(958), 27, - anon_sym_SEMI, + ACTIONS(1039), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -144551,7 +156708,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(956), 33, + ACTIONS(1037), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -144585,94 +156742,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6306] = 5, - ACTIONS(147), 1, + [11006] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2651), 1, - anon_sym_SEMI, - STATE(1125), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, + anon_sym_DQUOTE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1267), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2236), 1, + sym__expression, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(3136), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(788), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(790), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [11132] = 13, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2747), 1, + anon_sym_in, + STATE(1268), 1, + sym_comment, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 30, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [11220] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_LPAREN, + ACTIONS(2673), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2679), 1, + anon_sym_LBRACE, + ACTIONS(2681), 1, anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2693), 1, + anon_sym_DQUOTE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1267), 1, + sym__flag, + STATE(1269), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2238), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [11346] = 36, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2755), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, + anon_sym_DASH, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_RBRACE, + ACTIONS(2767), 1, + anon_sym__, + ACTIONS(2769), 1, + anon_sym_not, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(121), 1, + sym_val_number, + STATE(1270), 1, + sym_comment, + STATE(1292), 1, + aux_sym_ctrl_match_repeat1, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2622), 1, + sym__expression, + STATE(2867), 1, + sym_match_arm, + STATE(3967), 1, + sym_match_pattern, + STATE(4001), 1, + sym_default_arm, + STATE(4040), 1, + sym__match_list_destructure_pattern, + STATE(4057), 1, + sym__match_or_pattern, + ACTIONS(2771), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2775), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2777), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6379] = 5, - ACTIONS(147), 1, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2781), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2446), 11, + sym_val_bool, + sym_val_variable, + 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, + [11480] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2653), 1, - anon_sym_SEMI, - STATE(1126), 1, + ACTIONS(2709), 1, + anon_sym_SLASH_SLASH, + STATE(1271), 1, sym_comment, - ACTIONS(109), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2717), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1004), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, @@ -144687,19 +157151,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(1002), 24, sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -144721,81 +157176,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6452] = 32, + [11564] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(830), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2593), 1, - anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1089), 1, - sym__flag, - STATE(1127), 1, + STATE(1272), 1, sym_comment, - STATE(1935), 1, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2083), 1, + STATE(2238), 1, sym__expression, - STATE(2113), 1, - sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(2603), 2, + STATE(3139), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -144804,7 +157258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -144816,81 +157270,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6579] = 32, + [11690] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(830), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2593), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1128), 1, - sym_comment, - STATE(1131), 1, + STATE(1269), 1, sym__flag, - STATE(1935), 1, + STATE(1273), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2083), 1, + STATE(2240), 1, sym__expression, - STATE(2113), 1, + STATE(2335), 1, sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(822), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(824), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -144899,7 +157352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -144911,149 +157364,240 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6706] = 5, - ACTIONS(147), 1, + [11816] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2655), 1, - anon_sym_SEMI, - STATE(1129), 1, + STATE(1274), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1022), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1024), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + [11886] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_LPAREN, + ACTIONS(2673), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2679), 1, + anon_sym_LBRACE, + ACTIONS(2681), 1, anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2693), 1, + anon_sym_DQUOTE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1272), 1, + sym__flag, + STATE(1275), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2240), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(822), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(824), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [6779] = 32, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [12012] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2621), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1130), 1, + STATE(1276), 1, sym_comment, - STATE(1935), 1, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2078), 1, + STATE(2240), 1, sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - STATE(2871), 1, + STATE(3145), 1, sym__flag, - STATE(2993), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(2603), 2, + ACTIONS(822), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(824), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(850), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -145062,7 +157606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -145074,81 +157618,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6906] = 32, + [12138] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2593), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1131), 1, - sym_comment, - STATE(1137), 1, + STATE(1273), 1, sym__flag, - STATE(1935), 1, + STATE(1277), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2078), 1, + STATE(2244), 1, sym__expression, - STATE(2113), 1, + STATE(2335), 1, sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(850), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(852), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(850), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -145157,7 +157700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -145169,22 +157712,58 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7033] = 4, - ACTIONS(147), 1, + [12264] = 20, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1132), 1, - sym_comment, - ACTIONS(908), 17, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(2747), 1, anon_sym_in, - anon_sym__, - anon_sym_DOT, + ACTIONS(2799), 1, + anon_sym_bit_DASHand, + ACTIONS(2801), 1, + anon_sym_bit_DASHxor, + ACTIONS(2803), 1, + anon_sym_bit_DASHor, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_xor, + ACTIONS(2809), 1, + anon_sym_or, + STATE(1278), 1, + sym_comment, + ACTIONS(2733), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2797), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2795), 9, + anon_sym_DOLLAR, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, aux_sym_val_number_token1, @@ -145192,33 +157771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(910), 43, + ACTIONS(2793), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, sym_val_nothing, @@ -145236,86 +157794,205 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7104] = 5, - ACTIONS(147), 1, + [12366] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2657), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, + anon_sym_DQUOTE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1275), 1, + sym__flag, + STATE(1279), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2244), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(850), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(852), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, + anon_sym_NaN, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [12492] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_LPAREN, + ACTIONS(2673), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2679), 1, + anon_sym_LBRACE, + ACTIONS(2681), 1, anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2693), 1, + anon_sym_DQUOTE, + ACTIONS(2697), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1276), 1, + sym__flag, + STATE(1280), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2244), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(850), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(852), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [7177] = 4, - ACTIONS(147), 1, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [12618] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1134), 1, + STATE(1281), 1, sym_comment, - ACTIONS(901), 17, + ACTIONS(1037), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -145327,7 +158004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(903), 43, + ACTIONS(1039), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -145371,81 +158048,80 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7248] = 32, + [12688] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(834), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2621), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1135), 1, + STATE(1282), 1, sym_comment, - STATE(1935), 1, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2074), 1, + STATE(2244), 1, sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - STATE(2868), 1, + STATE(3150), 1, sym__flag, - STATE(2993), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(2603), 2, + ACTIONS(850), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(852), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(832), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -145454,7 +158130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -145466,150 +158142,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7375] = 6, - ACTIONS(147), 1, + [12814] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2659), 1, - anon_sym_COMMA, - ACTIONS(2661), 1, - anon_sym_DOT, - STATE(1136), 1, + STATE(1283), 1, sym_comment, - ACTIONS(916), 25, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(914), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [7450] = 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [12884] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(834), 1, - anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2593), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2595), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2597), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2599), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2615), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2617), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2619), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(117), 1, + STATE(122), 1, sym_val_number, - STATE(1111), 1, + STATE(1277), 1, sym__flag, - STATE(1137), 1, + STATE(1284), 1, sym_comment, - STATE(1935), 1, + STATE(2136), 1, sym__var, - STATE(1941), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2074), 1, + STATE(2248), 1, sym__expression, - STATE(2113), 1, + STATE(2335), 1, sym_long_flag, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(2603), 2, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2605), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2613), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2601), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2609), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(832), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(2167), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2607), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -145618,7 +158290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -145630,296 +158302,277 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7577] = 5, - ACTIONS(147), 1, + [13010] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2663), 1, - anon_sym_SEMI, - STATE(1138), 1, - sym_comment, - ACTIONS(109), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1279), 1, + sym__flag, + STATE(1285), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2248), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [7650] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1139), 1, - sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 39, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [7726] = 4, - ACTIONS(147), 1, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [13136] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1140), 1, - sym_comment, - ACTIONS(946), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(944), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1280), 1, + sym__flag, + STATE(1286), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2248), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [7796] = 36, - ACTIONS(147), 1, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [13262] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2671), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, ACTIONS(2677), 1, anon_sym_DASH, ACTIONS(2679), 1, anon_sym_LBRACE, ACTIONS(2681), 1, - anon_sym_RBRACE, - ACTIONS(2683), 1, - anon_sym__, - ACTIONS(2685), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - STATE(126), 1, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, sym_val_number, - STATE(1141), 1, + STATE(1282), 1, + sym__flag, + STATE(1287), 1, sym_comment, - STATE(1249), 1, - aux_sym_ctrl_match_repeat1, - STATE(1991), 1, + STATE(2136), 1, sym__var, - STATE(2001), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2484), 1, + STATE(2248), 1, sym__expression, - STATE(2663), 1, - sym_match_arm, - STATE(3691), 1, - sym__match_list_destructure_pattern, - STATE(3721), 1, - sym__match_or_pattern, - STATE(3765), 1, - sym_match_pattern, - STATE(3770), 1, - sym_default_arm, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -145931,93 +158584,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7930] = 36, - ACTIONS(147), 1, + [13388] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2671), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, ACTIONS(2677), 1, anon_sym_DASH, ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2683), 1, - anon_sym__, - ACTIONS(2685), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2709), 1, - anon_sym_RBRACE, - STATE(126), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + STATE(122), 1, sym_val_number, - STATE(1141), 1, - aux_sym_ctrl_match_repeat1, - STATE(1142), 1, + STATE(1288), 1, sym_comment, - STATE(1991), 1, + STATE(2136), 1, sym__var, - STATE(2001), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2484), 1, + STATE(2248), 1, sym__expression, - STATE(2663), 1, - sym_match_arm, - STATE(3690), 1, - sym_default_arm, - STATE(3691), 1, - sym__match_list_destructure_pattern, - STATE(3721), 1, - sym__match_or_pattern, - STATE(3765), 1, - sym_match_pattern, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(3156), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146029,94 +158678,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8064] = 20, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - ACTIONS(2733), 1, - anon_sym_bit_DASHor, - ACTIONS(2735), 1, - anon_sym_and, - ACTIONS(2737), 1, - anon_sym_xor, - ACTIONS(2739), 1, - anon_sym_or, - STATE(1143), 1, - sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2713), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2711), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [8166] = 4, - ACTIONS(147), 1, + [13514] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1144), 1, + STATE(1289), 1, sym_comment, - ACTIONS(109), 26, + ACTIONS(1020), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -146143,7 +158710,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(107), 33, + ACTIONS(1018), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -146177,278 +158744,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8236] = 4, - ACTIONS(147), 1, + [13584] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1145), 1, - sym_comment, - ACTIONS(986), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(984), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1285), 1, + sym__flag, + STATE(1290), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2252), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(834), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(836), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [8306] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1146), 1, - sym_comment, - ACTIONS(978), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(976), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8376] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1147), 1, - sym_comment, - ACTIONS(978), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(976), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [8446] = 32, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [13710] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1148), 1, - sym_comment, - STATE(1155), 1, + STATE(1286), 1, sym__flag, - STATE(1969), 1, + STATE(1291), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2127), 1, + STATE(2252), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(1099), 2, + ACTIONS(834), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1101), 2, + ACTIONS(836), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146457,7 +158920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146469,93 +158932,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8572] = 36, - ACTIONS(147), 1, + [13836] = 36, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2671), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2683), 1, + ACTIONS(2767), 1, anon_sym__, - ACTIONS(2685), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2775), 1, + ACTIONS(2811), 1, anon_sym_RBRACE, - STATE(126), 1, + STATE(121), 1, sym_val_number, - STATE(1149), 1, + STATE(1292), 1, sym_comment, - STATE(1225), 1, + STATE(1361), 1, aux_sym_ctrl_match_repeat1, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2484), 1, + STATE(2622), 1, sym__expression, - STATE(2663), 1, + STATE(2867), 1, sym_match_arm, - STATE(3691), 1, - sym__match_list_destructure_pattern, - STATE(3721), 1, - sym__match_or_pattern, - STATE(3756), 1, + STATE(3955), 1, sym_default_arm, - STATE(3765), 1, + STATE(3967), 1, sym_match_pattern, - ACTIONS(2687), 2, + STATE(4040), 1, + sym__match_list_destructure_pattern, + STATE(4057), 1, + sym__match_or_pattern, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, + ACTIONS(2779), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146567,513 +159030,257 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8706] = 4, - ACTIONS(147), 1, + [13970] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1150), 1, - sym_comment, - ACTIONS(926), 26, + ACTIONS(2669), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2671), 1, anon_sym_LPAREN, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2679), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(2693), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(924), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2701), 1, + sym_short_flag, + STATE(122), 1, + sym_val_number, + STATE(1288), 1, + sym__flag, + STATE(1293), 1, + sym_comment, + STATE(2136), 1, + sym__var, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2252), 1, + sym__expression, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + ACTIONS(834), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(836), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2685), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + ACTIONS(2695), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8776] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1151), 1, - sym_comment, - ACTIONS(934), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(932), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [8846] = 4, - ACTIONS(147), 1, + STATE(2457), 11, + sym_val_bool, + sym_val_variable, + 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, + [14096] = 8, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1152), 1, + STATE(1294), 1, sym_comment, - ACTIONS(938), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(936), 33, - sym_cmd_identifier, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1002), 12, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym__, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8916] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1153), 1, - sym_comment, - ACTIONS(942), 26, + ACTIONS(1004), 39, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(940), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [8986] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1154), 1, - sym_comment, - ACTIONS(954), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(952), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [9056] = 32, - ACTIONS(3), 1, + [14174] = 36, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, - anon_sym_DQUOTE, + ACTIONS(2767), 1, + anon_sym__, ACTIONS(2769), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, - anon_sym_DOLLAR_DQUOTE, + anon_sym_not, ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1155), 1, - sym_comment, - STATE(1164), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2105), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(816), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(818), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [9182] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, + ACTIONS(2813), 1, + anon_sym_RBRACE, + STATE(121), 1, sym_val_number, - STATE(1156), 1, + STATE(1295), 1, sym_comment, - STATE(1165), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(1361), 1, + aux_sym_ctrl_match_repeat1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2105), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(816), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(818), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + STATE(2622), 1, + sym__expression, + STATE(2867), 1, + sym_match_arm, + STATE(3967), 1, + sym_match_pattern, + STATE(3981), 1, + sym_default_arm, + STATE(4040), 1, + sym__match_list_destructure_pattern, + STATE(4057), 1, + sym__match_or_pattern, + ACTIONS(2771), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147085,12 +159292,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9308] = 4, - ACTIONS(147), 1, + [14308] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1157), 1, + STATE(1296), 1, sym_comment, - ACTIONS(1004), 26, + ACTIONS(924), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -147117,7 +159324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1002), 33, + ACTIONS(922), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -147151,144 +159358,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9378] = 4, - ACTIONS(147), 1, + [14378] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1158), 1, + STATE(1297), 1, sym_comment, - ACTIONS(966), 26, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(964), 33, - sym_cmd_identifier, + [14448] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1298), 1, + sym_comment, + ACTIONS(1010), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9448] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1159), 1, - sym_comment, - ACTIONS(970), 26, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(968), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [9518] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [14518] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1160), 1, + STATE(1299), 1, sym_comment, - ACTIONS(974), 26, + ACTIONS(1000), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -147315,7 +159522,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(972), 33, + ACTIONS(998), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -147349,10 +159556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9588] = 4, - ACTIONS(147), 1, + [14588] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1161), 1, + STATE(1300), 1, sym_comment, ACTIONS(982), 26, anon_sym_LBRACK, @@ -147415,12 +159622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9658] = 4, - ACTIONS(147), 1, + [14658] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1162), 1, + STATE(1301), 1, sym_comment, - ACTIONS(1008), 26, + ACTIONS(1016), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -147447,7 +159654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1006), 33, + ACTIONS(1014), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -147481,146 +159688,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9728] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_comment, - ACTIONS(1018), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1020), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [9798] = 32, + [14728] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1164), 1, - sym_comment, - STATE(1170), 1, + STATE(1291), 1, sym__flag, - STATE(1969), 1, + STATE(1302), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2102), 1, + STATE(2262), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(772), 2, + ACTIONS(854), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(774), 2, + ACTIONS(856), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147629,7 +159770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147641,80 +159782,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9924] = 32, + [14854] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1165), 1, - sym_comment, - STATE(1171), 1, + STATE(1224), 1, sym__flag, - STATE(1969), 1, + STATE(1303), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2102), 1, + STATE(2262), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(772), 2, + ACTIONS(854), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(774), 2, + ACTIONS(856), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147723,7 +159864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147735,80 +159876,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10050] = 32, + [14980] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1166), 1, - sym_comment, - STATE(1172), 1, + STATE(1293), 1, sym__flag, - STATE(1969), 1, + STATE(1304), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2102), 1, + STATE(2262), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(772), 2, + ACTIONS(854), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(774), 2, + ACTIONS(856), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147817,7 +159958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147829,12 +159970,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10176] = 4, - ACTIONS(147), 1, + [15106] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1167), 1, + STATE(1305), 1, sym_comment, - ACTIONS(994), 26, + ACTIONS(932), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -147861,7 +160002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(992), 33, + ACTIONS(930), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -147895,78 +160036,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [10246] = 4, - ACTIONS(147), 1, + [15176] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1168), 1, + STATE(1306), 1, sym_comment, - ACTIONS(1016), 26, + ACTIONS(956), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(958), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1014), 33, - sym_cmd_identifier, + [15246] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1307), 1, + sym_comment, + ACTIONS(1010), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [15316] = 20, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2747), 1, + anon_sym_in, + ACTIONS(2799), 1, anon_sym_bit_DASHand, + ACTIONS(2801), 1, anon_sym_bit_DASHxor, + ACTIONS(2803), 1, anon_sym_bit_DASHor, + ACTIONS(2805), 1, anon_sym_and, + ACTIONS(2807), 1, anon_sym_xor, + ACTIONS(2809), 1, anon_sym_or, + STATE(1308), 1, + sym_comment, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2797), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [15418] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1309), 1, + sym_comment, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [15488] = 19, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2747), 1, + anon_sym_in, + ACTIONS(2799), 1, + anon_sym_bit_DASHand, + ACTIONS(2801), 1, + anon_sym_bit_DASHxor, + ACTIONS(2803), 1, + anon_sym_bit_DASHor, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_xor, + STATE(1310), 1, + sym_comment, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2797), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [10316] = 4, - ACTIONS(147), 1, + ACTIONS(1004), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [15588] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1169), 1, + STATE(1311), 1, sym_comment, - ACTIONS(922), 26, + ACTIONS(940), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -147993,7 +160429,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(920), 33, + ACTIONS(938), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -148027,388 +160463,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [10386] = 32, - ACTIONS(3), 1, + [15658] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1312), 1, + sym_comment, + ACTIONS(920), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1170), 1, - sym_comment, - STATE(1175), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2091), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(854), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(856), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(918), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [10512] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [15728] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1313), 1, + sym_comment, + ACTIONS(944), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1171), 1, - sym_comment, - STATE(1176), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2091), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(854), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(856), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(942), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [10638] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [15798] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1314), 1, + sym_comment, + ACTIONS(948), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1172), 1, - sym_comment, - STATE(1177), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2091), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(854), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(856), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(946), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, + [15868] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1315), 1, + sym_comment, + ACTIONS(994), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(996), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [10764] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1173), 1, + [15938] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1316), 1, sym_comment, - STATE(1178), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2091), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(854), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(856), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 10, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym__, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1004), 33, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [10890] = 4, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [16022] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1174), 1, + STATE(1317), 1, sym_comment, - ACTIONS(1027), 26, + ACTIONS(996), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -148435,7 +160832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1025), 33, + ACTIONS(994), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -148469,80 +160866,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [10960] = 32, + [16092] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(2675), 1, + anon_sym_DASH_DASH, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1175), 1, + STATE(1303), 1, + sym__flag, + STATE(1318), 1, sym_comment, - STATE(1969), 1, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2097), 1, + STATE(2265), 1, sym__expression, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2335), 1, + sym_long_flag, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - STATE(2920), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(858), 2, + ACTIONS(846), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(860), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -148551,7 +160948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -148563,80 +160960,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11086] = 32, + [16218] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1176), 1, - sym_comment, - STATE(1180), 1, + STATE(1304), 1, sym__flag, - STATE(1969), 1, + STATE(1319), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2097), 1, + STATE(2265), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(858), 2, + ACTIONS(846), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(860), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -148645,7 +161042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -148657,1114 +161054,940 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11212] = 32, - ACTIONS(3), 1, + [16344] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, + STATE(1320), 1, + sym_comment, + ACTIONS(952), 16, anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(2765), 1, - anon_sym_DQUOTE, - ACTIONS(2769), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1177), 1, - sym_comment, - STATE(1181), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2097), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(858), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(860), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(954), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11338] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1178), 1, + [16414] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1321), 1, sym_comment, - STATE(1182), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2097), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(858), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(860), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11464] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1179), 1, + [16484] = 6, + ACTIONS(149), 1, + anon_sym_DOT_DOT, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1322), 1, sym_comment, - STATE(1183), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2097), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(858), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(860), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(147), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(926), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(928), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11590] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1180), 1, + [16558] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1323), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2099), 1, - sym__expression, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2917), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(828), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(830), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(1006), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(1008), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11716] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1181), 1, + [16628] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1324), 1, sym_comment, - STATE(1184), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2099), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(828), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(830), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(946), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(948), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11842] = 32, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [16698] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1325), 1, + sym_comment, + ACTIONS(962), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1182), 1, - sym_comment, - STATE(1185), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2099), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(828), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(830), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(960), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [11968] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [16768] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1326), 1, + sym_comment, + ACTIONS(966), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1183), 1, - sym_comment, - STATE(1186), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2099), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(828), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(830), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(964), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, + [16838] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1327), 1, + sym_comment, + ACTIONS(942), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(944), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [12094] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1184), 1, + [16908] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1328), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2108), 1, - sym__expression, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2933), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(850), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(852), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(970), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [12220] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, - anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1185), 1, - sym_comment, - STATE(1187), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2108), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(850), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(852), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(968), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [12346] = 32, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [16978] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1329), 1, + sym_comment, + ACTIONS(974), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2747), 1, - anon_sym_DASH_DASH, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1186), 1, - sym_comment, - STATE(1188), 1, - sym__flag, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2108), 1, - sym__expression, - STATE(2170), 1, - sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - ACTIONS(850), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(852), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(972), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, + [17048] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1330), 1, + sym_comment, + ACTIONS(926), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(928), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [12472] = 32, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [17118] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + STATE(1331), 1, + sym_comment, + ACTIONS(978), 26, anon_sym_LBRACK, - ACTIONS(2743), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2751), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_not, - ACTIONS(2765), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2769), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(119), 1, - sym_val_number, - STATE(1187), 1, - sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2117), 1, - sym__expression, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2909), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(832), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(834), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(976), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2761), 8, + [17188] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1332), 1, + sym_comment, + ACTIONS(918), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(920), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, - sym_val_bool, - sym_val_variable, - 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, - [12598] = 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [17258] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2675), 1, anon_sym_DASH_DASH, - ACTIONS(2749), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2679), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2693), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2773), 1, + ACTIONS(2701), 1, sym_short_flag, - STATE(119), 1, + STATE(122), 1, sym_val_number, - STATE(1188), 1, - sym_comment, - STATE(1189), 1, + STATE(1319), 1, sym__flag, - STATE(1969), 1, + STATE(1333), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1981), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2117), 1, + STATE(2281), 1, sym__expression, - STATE(2170), 1, + STATE(2335), 1, sym_long_flag, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(832), 2, + ACTIONS(1135), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(834), 2, + ACTIONS(1137), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2757), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2695), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, + ACTIONS(2683), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -149773,7 +161996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149785,89 +162008,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12724] = 32, - ACTIONS(3), 1, + [17384] = 36, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2741), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(2745), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(2751), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2767), 1, + anon_sym__, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(2769), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2771), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(119), 1, + ACTIONS(2815), 1, + anon_sym_RBRACE, + STATE(121), 1, sym_val_number, - STATE(1189), 1, + STATE(1295), 1, + aux_sym_ctrl_match_repeat1, + STATE(1334), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2125), 1, - sym__expression, - STATE(2242), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2906), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(824), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(826), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2757), 2, + STATE(2622), 1, + sym__expression, + STATE(2867), 1, + sym_match_arm, + STATE(3935), 1, + sym_default_arm, + STATE(3967), 1, + sym_match_pattern, + STATE(4040), 1, + sym__match_list_destructure_pattern, + STATE(4057), 1, + sym__match_or_pattern, + ACTIONS(2771), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(2759), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(2767), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2755), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2763), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149879,21 +162106,54 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12850] = 4, - ACTIONS(147), 1, + [17518] = 18, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1190), 1, - sym_comment, - ACTIONS(944), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(2747), 1, anon_sym_in, - anon_sym__, + ACTIONS(2799), 1, + anon_sym_bit_DASHand, + ACTIONS(2801), 1, + anon_sym_bit_DASHxor, + ACTIONS(2803), 1, + anon_sym_bit_DASHor, + ACTIONS(2805), 1, + anon_sym_and, + STATE(1335), 1, + sym_comment, + ACTIONS(2733), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2797), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, aux_sym_val_number_token1, @@ -149901,31 +162161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(946), 43, + ACTIONS(1004), 24, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, @@ -149945,78 +162186,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [12920] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1191), 1, - sym_comment, - ACTIONS(950), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(948), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [12990] = 4, - ACTIONS(147), 1, + [17616] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1192), 1, + STATE(1336), 1, sym_comment, - ACTIONS(1029), 16, + ACTIONS(1010), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -150033,7 +162208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1031), 43, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -150077,122 +162252,103 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13060] = 20, - ACTIONS(147), 1, + [17686] = 17, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_COMMA, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, + ACTIONS(2747), 1, + anon_sym_in, + ACTIONS(2799), 1, anon_sym_bit_DASHand, - ACTIONS(2807), 1, + ACTIONS(2801), 1, anon_sym_bit_DASHxor, - ACTIONS(2809), 1, + ACTIONS(2803), 1, anon_sym_bit_DASHor, - ACTIONS(2811), 1, - anon_sym_and, - ACTIONS(2813), 1, - anon_sym_xor, - ACTIONS(2815), 1, - anon_sym_or, - STATE(1193), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2789), 2, + ACTIONS(2745), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + ACTIONS(2749), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, + ACTIONS(2797), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, + ACTIONS(2753), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2801), 4, + ACTIONS(2751), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2781), 14, - sym_cmd_identifier, + ACTIONS(1002), 9, anon_sym_DOLLAR, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2783), 16, + ACTIONS(1004), 25, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13162] = 11, - ACTIONS(147), 1, + [17782] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1194), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, + ACTIONS(954), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2801), 4, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, @@ -150207,10 +162363,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 24, + ACTIONS(952), 33, sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -150232,29 +162397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13246] = 8, - ACTIONS(147), 1, + [17852] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1195), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(930), 23, + ACTIONS(986), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -150273,11 +162429,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 28, + ACTIONS(984), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_LT2, @@ -150302,45 +162463,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13324] = 12, - ACTIONS(147), 1, + [17922] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1196), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, + ACTIONS(986), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2801), 4, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, @@ -150355,9 +162495,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 20, + ACTIONS(984), 33, sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -150376,26 +162529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13410] = 7, - ACTIONS(147), 1, + [17992] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1197), 1, + STATE(1341), 1, sym_comment, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(930), 23, + ACTIONS(990), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -150414,12 +162561,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 30, + ACTIONS(988), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -150445,20 +162595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13486] = 5, - ACTIONS(147), 1, + [18062] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1198), 1, + STATE(1342), 1, sym_comment, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(930), 24, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -150478,7 +162627,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 33, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -150512,32 +162661,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13558] = 9, - ACTIONS(147), 1, + [18132] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1199), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2789), 2, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2795), 2, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18202] = 16, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2747), 1, + anon_sym_in, + ACTIONS(2799), 1, + anon_sym_bit_DASHand, + ACTIONS(2801), 1, + anon_sym_bit_DASHxor, + STATE(1344), 1, + sym_comment, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2793), 3, + ACTIONS(2797), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2753), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2751), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18296] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1345), 1, + sym_comment, + ACTIONS(1010), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, - ACTIONS(930), 23, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18366] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1346), 1, + sym_comment, + ACTIONS(115), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -150556,11 +162903,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 26, + ACTIONS(113), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -150583,441 +162937,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13638] = 13, - ACTIONS(147), 1, + [18436] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - STATE(1200), 1, + ACTIONS(2747), 1, + anon_sym_in, + ACTIONS(2799), 1, + anon_sym_bit_DASHand, + STATE(1347), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2789), 2, + ACTIONS(2745), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + ACTIONS(2749), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, + ACTIONS(2797), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, + ACTIONS(2753), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2801), 4, + ACTIONS(2751), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 17, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 20, - sym_cmd_identifier, + [18528] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1348), 1, + sym_comment, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 16, anon_sym_DOLLAR, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13726] = 14, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2797), 1, + ACTIONS(1004), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, - anon_sym_bit_DASHand, - STATE(1201), 1, - sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2801), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 19, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [13816] = 15, - ACTIONS(147), 1, + [18600] = 14, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, - anon_sym_bit_DASHand, - ACTIONS(2807), 1, - anon_sym_bit_DASHxor, - STATE(1202), 1, + ACTIONS(2747), 1, + anon_sym_in, + STATE(1349), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2789), 2, + ACTIONS(2745), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + ACTIONS(2749), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, + ACTIONS(2797), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, + ACTIONS(2753), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2801), 4, + ACTIONS(2751), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 17, + ACTIONS(1002), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 28, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(928), 18, - sym_cmd_identifier, + [18690] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1350), 1, + sym_comment, + ACTIONS(1010), 16, anon_sym_DOLLAR, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13908] = 16, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, - anon_sym_bit_DASHand, - ACTIONS(2807), 1, - anon_sym_bit_DASHxor, - ACTIONS(2809), 1, - anon_sym_bit_DASHor, - STATE(1203), 1, - sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, + ACTIONS(1012), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2801), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 17, - sym_cmd_identifier, - anon_sym_DOLLAR, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14002] = 17, - ACTIONS(147), 1, + [18760] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, - anon_sym_bit_DASHand, - ACTIONS(2807), 1, - anon_sym_bit_DASHxor, - ACTIONS(2809), 1, - anon_sym_bit_DASHor, - ACTIONS(2811), 1, - anon_sym_and, - STATE(1204), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(938), 16, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2803), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2793), 3, + anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2801), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 16, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_xor, - anon_sym_or, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(930), 17, + ACTIONS(940), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14098] = 18, - ACTIONS(147), 1, + [18830] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, + ACTIONS(2709), 1, anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, + ACTIONS(2721), 1, anon_sym_bit_DASHand, - ACTIONS(2807), 1, + ACTIONS(2723), 1, anon_sym_bit_DASHxor, - ACTIONS(2809), 1, + ACTIONS(2725), 1, anon_sym_bit_DASHor, - ACTIONS(2811), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2813), 1, + ACTIONS(2729), 1, anon_sym_xor, - STATE(1205), 1, + ACTIONS(2731), 1, + anon_sym_or, + ACTIONS(2821), 1, + anon_sym_COMMA, + STATE(1352), 1, sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2795), 2, + ACTIONS(2707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, + ACTIONS(2711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2715), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2803), 2, + ACTIONS(2719), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2793), 3, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(2791), 4, + ACTIONS(2713), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2801), 4, + ACTIONS(2717), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 15, + ACTIONS(2817), 14, sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -151030,9 +163354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(930), 17, + ACTIONS(2819), 16, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -151048,57 +163371,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14196] = 19, - ACTIONS(147), 1, + [18932] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2805), 1, - anon_sym_bit_DASHand, - ACTIONS(2807), 1, - anon_sym_bit_DASHxor, - ACTIONS(2809), 1, - anon_sym_bit_DASHor, - ACTIONS(2811), 1, - anon_sym_and, - ACTIONS(2813), 1, - anon_sym_xor, - ACTIONS(2815), 1, - anon_sym_or, - STATE(1206), 1, + STATE(1353), 1, sym_comment, - ACTIONS(2787), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2795), 2, + ACTIONS(1008), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2799), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2803), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2793), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1006), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(2791), 4, - anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2801), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 14, - sym_cmd_identifier, - anon_sym_DOLLAR, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -151111,38 +163437,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(930), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [14296] = 4, - ACTIONS(147), 1, + [19002] = 9, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1207), 1, + STATE(1354), 1, sym_comment, - ACTIONS(992), 16, + ACTIONS(2733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2735), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2737), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2745), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2749), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1002), 12, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, @@ -151151,18 +163470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(994), 43, + ACTIONS(1004), 37, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -151195,12 +163508,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14366] = 4, - ACTIONS(147), 1, + [19082] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1208), 1, + STATE(1355), 1, sym_comment, - ACTIONS(1002), 16, + ACTIONS(1029), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151217,7 +163530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1004), 43, + ACTIONS(1031), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151261,12 +163574,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14436] = 4, - ACTIONS(147), 1, + [19152] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1209), 1, + STATE(1356), 1, sym_comment, - ACTIONS(1025), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151283,7 +163596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1027), 43, + ACTIONS(1020), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151327,12 +163640,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14506] = 4, - ACTIONS(147), 1, + [19222] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1210), 1, + STATE(1357), 1, sym_comment, - ACTIONS(920), 16, + ACTIONS(922), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151349,7 +163662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(922), 43, + ACTIONS(924), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151393,12 +163706,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14576] = 4, - ACTIONS(147), 1, + [19292] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1211), 1, + STATE(1358), 1, sym_comment, - ACTIONS(1014), 16, + ACTIONS(998), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151415,7 +163728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1016), 43, + ACTIONS(1000), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151459,12 +163772,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14646] = 4, - ACTIONS(147), 1, + [19362] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1212), 1, + STATE(1359), 1, sym_comment, - ACTIONS(1006), 16, + ACTIONS(930), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151481,7 +163794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1008), 43, + ACTIONS(932), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151525,12 +163838,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14716] = 4, - ACTIONS(147), 1, + [19432] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1213), 1, + STATE(1360), 1, sym_comment, - ACTIONS(988), 16, + ACTIONS(1010), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -151547,7 +163860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(990), 43, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -151591,821 +163904,1437 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14786] = 6, - ACTIONS(147), 1, + [19502] = 34, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(161), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, + anon_sym_LPAREN, + ACTIONS(2829), 1, + anon_sym_DOLLAR, + ACTIONS(2832), 1, + anon_sym_DASH, + ACTIONS(2835), 1, + anon_sym_LBRACE, + ACTIONS(2838), 1, + anon_sym_RBRACE, + ACTIONS(2840), 1, + anon_sym__, + ACTIONS(2842), 1, + anon_sym_not, + ACTIONS(2848), 1, anon_sym_DOT_DOT, - STATE(1214), 1, - sym_comment, - ACTIONS(159), 2, + ACTIONS(2866), 1, + anon_sym_DQUOTE, + ACTIONS(2872), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2875), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(121), 1, + sym_val_number, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2622), 1, + sym__expression, + STATE(2867), 1, + sym_match_arm, + STATE(3967), 1, + sym_match_pattern, + STATE(4040), 1, + sym__match_list_destructure_pattern, + STATE(4057), 1, + sym__match_or_pattern, + ACTIONS(2845), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(1012), 24, + ACTIONS(2851), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2854), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2857), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2869), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1361), 2, + sym_comment, + aux_sym_ctrl_match_repeat1, + ACTIONS(2863), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2860), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2446), 11, + sym_val_bool, + sym_val_variable, + 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, + [19631] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2880), 1, anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1362), 1, + sym_comment, + STATE(1793), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2499), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2900), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [19753] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1363), 1, + sym_comment, + STATE(1792), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2572), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2900), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_DASHinf, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [19875] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1364), 1, + sym_comment, + STATE(1788), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2496), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, + sym_val_nothing, sym_val_date, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2900), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [19997] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1365), 1, + sym_comment, + STATE(1794), 1, + sym__flag, + STATE(2394), 1, + sym__expression, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(2900), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [20119] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1010), 32, - sym_cmd_identifier, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1366), 1, + sym_comment, + STATE(1785), 1, + sym__flag, + STATE(2397), 1, + sym__expression, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2900), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [20241] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, anon_sym_not, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1367), 1, + sym_comment, + STATE(1782), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2435), 1, + sym__expression, + STATE(2479), 1, + sym__var, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2900), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + anon_sym_DASHinf, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [14860] = 4, - ACTIONS(147), 1, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [20363] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1215), 1, - sym_comment, - ACTIONS(980), 16, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, anon_sym_not, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(982), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1368), 1, + sym_comment, + STATE(1787), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2500), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [14930] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1216), 1, - sym_comment, - ACTIONS(972), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2900), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(974), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15000] = 4, - ACTIONS(147), 1, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [20485] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1217), 1, - sym_comment, - ACTIONS(968), 16, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2884), 1, + anon_sym_DASH_DASH, + ACTIONS(2886), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, anon_sym_not, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(970), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2914), 1, + sym_short_flag, + STATE(131), 1, + sym_val_number, + STATE(1369), 1, + sym_comment, + STATE(1795), 1, + sym__flag, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2569), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2934), 1, + sym_long_flag, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2896), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15070] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1218), 1, - sym_comment, - ACTIONS(964), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2900), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(966), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2902), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15140] = 4, - ACTIONS(147), 1, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [20607] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1219), 1, - sym_comment, - ACTIONS(956), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, + anon_sym_RBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(958), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [15210] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1220), 1, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1370), 1, sym_comment, - ACTIONS(105), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + STATE(1379), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2936), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [20728] = 33, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, + ACTIONS(2934), 1, sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2954), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1209), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1371), 1, + sym_comment, + STATE(1407), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [15280] = 4, - ACTIONS(147), 1, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [20851] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1221), 1, - sym_comment, - ACTIONS(952), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(954), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2956), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1372), 1, + sym_comment, + STATE(1379), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15350] = 4, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [20972] = 33, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1222), 1, - sym_comment, - ACTIONS(940), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(942), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2958), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1211), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1373), 1, + sym_comment, + STATE(1384), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15420] = 4, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [21095] = 33, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1223), 1, - sym_comment, - ACTIONS(936), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2960), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1173), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1370), 1, + aux_sym_val_list_repeat1, + STATE(1374), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15490] = 4, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [21218] = 33, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1224), 1, - sym_comment, - ACTIONS(932), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(934), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2962), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1222), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1375), 1, + sym_comment, + STATE(1377), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15560] = 36, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2671), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [21341] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2683), 1, - anon_sym__, - ACTIONS(2685), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2817), 1, - anon_sym_RBRACE, - STATE(126), 1, + ACTIONS(2964), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1225), 1, - sym_comment, - STATE(1249), 1, - aux_sym_ctrl_match_repeat1, - STATE(1991), 1, + STATE(1142), 1, sym__var, - STATE(2001), 1, - sym_expr_parenthesized, - STATE(2272), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2484), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(2663), 1, - sym_match_arm, - STATE(3691), 1, - sym__match_list_destructure_pattern, - STATE(3721), 1, - sym__match_or_pattern, - STATE(3765), 1, - sym_match_pattern, - STATE(3835), 1, - sym_default_arm, - ACTIONS(2687), 2, + STATE(1376), 1, + sym_comment, + STATE(1379), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152417,1727 +165346,1247 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15694] = 4, - ACTIONS(147), 1, + [21462] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1226), 1, - sym_comment, - ACTIONS(924), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(926), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [15764] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1227), 1, + ACTIONS(2966), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1377), 1, sym_comment, - ACTIONS(976), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(978), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + STATE(1379), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15834] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1228), 1, - sym_comment, - ACTIONS(1012), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1010), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [15904] = 4, - ACTIONS(147), 1, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [21583] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1229), 1, - sym_comment, - ACTIONS(1010), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1012), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [15974] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(151), 1, - anon_sym_DOT_DOT, - STATE(1230), 1, + ACTIONS(2968), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1378), 1, sym_comment, - ACTIONS(149), 2, + STATE(1404), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1012), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16048] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1231), 1, - sym_comment, - ACTIONS(948), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(950), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16118] = 4, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [21704] = 31, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1232), 1, - sym_comment, - ACTIONS(976), 16, + ACTIONS(2970), 1, + sym_cmd_identifier, + ACTIONS(2973), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_RBRACK, + ACTIONS(2978), 1, + anon_sym_LPAREN, + ACTIONS(2981), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2984), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2987), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, anon_sym_not, + ACTIONS(2996), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(978), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2999), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(3014), 1, sym_val_date, + ACTIONS(3017), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3023), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3026), 1, anon_sym_DOLLAR_DQUOTE, - [16188] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1233), 1, - sym_comment, - ACTIONS(984), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(986), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + ACTIONS(2993), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(3002), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3020), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16258] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1234), 1, + STATE(1379), 2, sym_comment, - ACTIONS(107), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + aux_sym_val_list_repeat1, + ACTIONS(3011), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(109), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + ACTIONS(3005), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(3008), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16328] = 4, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [21823] = 33, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1235), 1, - sym_comment, - ACTIONS(960), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(962), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [16398] = 20, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - ACTIONS(2733), 1, - anon_sym_bit_DASHor, - ACTIONS(2735), 1, - anon_sym_and, - ACTIONS(2737), 1, - anon_sym_xor, - ACTIONS(2739), 1, - anon_sym_or, - STATE(1236), 1, + ACTIONS(3029), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1221), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1380), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1392), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16500] = 19, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - ACTIONS(2733), 1, - anon_sym_bit_DASHor, - ACTIONS(2735), 1, - anon_sym_and, - ACTIONS(2737), 1, - anon_sym_xor, - STATE(1237), 1, - sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(930), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16600] = 18, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [21946] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - ACTIONS(2733), 1, - anon_sym_bit_DASHor, - ACTIONS(2735), 1, - anon_sym_and, - STATE(1238), 1, - sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym__, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [16698] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1239), 1, + ACTIONS(3031), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1202), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1381), 1, sym_comment, - ACTIONS(962), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + STATE(1387), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2936), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(960), 33, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22069] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, + ACTIONS(2934), 1, sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3033), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1382), 1, + sym_comment, + ACTIONS(2930), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [16768] = 17, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - ACTIONS(2733), 1, - anon_sym_bit_DASHor, - STATE(1240), 1, - sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 25, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [22190] = 33, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [16864] = 16, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - ACTIONS(2731), 1, - anon_sym_bit_DASHxor, - STATE(1241), 1, + ACTIONS(3035), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1208), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1383), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + STATE(1385), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22313] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [16958] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - ACTIONS(2729), 1, - anon_sym_bit_DASHand, - STATE(1242), 1, + ACTIONS(3037), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1384), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 27, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [22434] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [17050] = 14, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - STATE(1243), 1, + ACTIONS(3039), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1385), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2727), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [22555] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [17140] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1244), 1, + ACTIONS(3041), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1386), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(928), 12, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_in, - anon_sym__, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 37, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [17220] = 5, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [22676] = 32, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1245), 1, - sym_comment, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 16, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2924), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2934), 1, sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [17292] = 13, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2719), 1, - anon_sym_in, - STATE(1246), 1, + ACTIONS(3043), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1387), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2725), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [22797] = 33, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [17380] = 11, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1247), 1, + ACTIONS(3045), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1181), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1388), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2723), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 10, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 33, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + STATE(1405), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22920] = 33, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, + anon_sym_DOT_DOT, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - [17464] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1248), 1, + ACTIONS(3047), 1, + anon_sym_RBRACK, + STATE(16), 1, + sym_val_number, + STATE(1142), 1, + sym__var, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1184), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1376), 1, + aux_sym_val_list_repeat1, + STATE(1389), 1, sym_comment, - ACTIONS(2665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2667), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2717), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(928), 12, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_in, - anon_sym__, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 39, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2942), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [17542] = 34, - ACTIONS(147), 1, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, + sym_val_bool, + sym_val_variable, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23043] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2819), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2825), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2828), 1, - anon_sym_DASH, - ACTIONS(2831), 1, - anon_sym_LBRACE, - ACTIONS(2834), 1, - anon_sym_RBRACE, - ACTIONS(2836), 1, - anon_sym__, - ACTIONS(2838), 1, + ACTIONS(2924), 1, + anon_sym_DASH, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2844), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2862), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2868), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(126), 1, + ACTIONS(3049), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1991), 1, + STATE(1142), 1, sym__var, - STATE(2001), 1, - sym_expr_parenthesized, - STATE(2272), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, + STATE(1178), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2484), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(2663), 1, - sym_match_arm, - STATE(3691), 1, - sym__match_list_destructure_pattern, - STATE(3721), 1, - sym__match_or_pattern, - STATE(3765), 1, - sym_match_pattern, - ACTIONS(2841), 2, + STATE(1390), 1, + sym_comment, + STATE(1391), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2850), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2853), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2865), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1249), 2, - sym_comment, - aux_sym_ctrl_match_repeat1, - ACTIONS(2859), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2856), 6, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154145,89 +166594,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [17671] = 32, - ACTIONS(147), 1, + [23166] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3051), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1250), 1, - sym_comment, - STATE(1601), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2369), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1391), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154239,85 +166686,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17793] = 32, - ACTIONS(147), 1, + [23287] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3053), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1251), 1, - sym_comment, - STATE(1527), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2295), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1392), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154329,85 +166775,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17915] = 32, - ACTIONS(147), 1, + [23408] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3055), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1252), 1, - sym_comment, - STATE(1479), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2389), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1182), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1393), 1, + sym_comment, + STATE(1394), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154415,89 +166862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [18037] = 32, - ACTIONS(147), 1, + [23531] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3057), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1253), 1, - sym_comment, - STATE(1480), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2391), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1394), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154509,85 +166954,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18159] = 32, - ACTIONS(147), 1, + [23652] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3059), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1254), 1, - sym_comment, - STATE(1604), 1, - sym__flag, - STATE(2259), 1, - sym__expression, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1177), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1382), 1, + aux_sym_val_list_repeat1, + STATE(1395), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154595,89 +167041,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [18281] = 32, - ACTIONS(147), 1, + [23775] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3061), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1255), 1, - sym_comment, - STATE(1620), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2372), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1183), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1396), 1, + sym_comment, + STATE(1409), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154685,89 +167131,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [18403] = 32, - ACTIONS(147), 1, + [23898] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3063), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1256), 1, - sym_comment, - STATE(1522), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2358), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1205), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1397), 1, + sym_comment, + STATE(1398), 1, + aux_sym_val_list_repeat1, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154775,89 +167221,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [18525] = 32, - ACTIONS(147), 1, + [24021] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2916), 1, + sym_cmd_identifier, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_DASH_DASH, - ACTIONS(2882), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2934), 1, + sym_val_nothing, + ACTIONS(2944), 1, + sym_val_date, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2910), 1, - sym_short_flag, - STATE(131), 1, + ACTIONS(3065), 1, + anon_sym_RBRACK, + STATE(16), 1, sym_val_number, - STATE(1257), 1, - sym_comment, - STATE(1600), 1, - sym__flag, - STATE(2276), 1, + STATE(1142), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2368), 1, - sym__expression, - STATE(2668), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2711), 1, - sym_long_flag, - ACTIONS(2888), 2, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, + aux_sym_val_list_repeat1, + STATE(1398), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2904), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2900), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + ACTIONS(2938), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2940), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2655), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154869,86 +167313,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18647] = 33, - ACTIONS(147), 1, + [24142] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2916), 1, - anon_sym_RBRACK, + sym_cmd_identifier, ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + anon_sym_LBRACK, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(17), 1, + ACTIONS(3067), 1, + anon_sym_RBRACK, + ACTIONS(3069), 1, + anon_sym_DOLLAR, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1133), 1, + STATE(1213), 1, sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1258), 1, + STATE(1399), 1, sym_comment, - STATE(1261), 1, + STATE(1400), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154959,86 +167403,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18770] = 33, - ACTIONS(147), 1, + [24265] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2950), 1, + ACTIONS(3071), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1138), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1259), 1, - sym_comment, - STATE(1284), 1, + STATE(1379), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1400), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155046,89 +167488,90 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [18893] = 33, - ACTIONS(147), 1, + [24386] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, - anon_sym_DOLLAR_DQUOTE, ACTIONS(2952), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3073), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1123), 1, + STATE(1186), 1, sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1260), 1, + STATE(1401), 1, sym_comment, - STATE(1262), 1, + STATE(1406), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155139,84 +167582,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19016] = 32, - ACTIONS(147), 1, + [24509] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2954), 1, + ACTIONS(3067), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1213), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1261), 1, - sym_comment, - STATE(1277), 1, + STATE(1400), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1402), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155224,88 +167669,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19137] = 32, - ACTIONS(147), 1, + [24632] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2956), 1, + ACTIONS(3075), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1179), 1, + sym_val_list, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1262), 1, - sym_comment, - STATE(1277), 1, + STATE(1372), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1403), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155313,88 +167759,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19258] = 32, - ACTIONS(147), 1, + [24755] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2958), 1, + ACTIONS(3077), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1263), 1, - sym_comment, - STATE(1277), 1, + STATE(1379), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1404), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155406,84 +167851,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19379] = 32, - ACTIONS(147), 1, + [24876] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2960), 1, + ACTIONS(3079), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1264), 1, - sym_comment, - STATE(1277), 1, + STATE(1379), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1405), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155495,84 +167940,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19500] = 32, - ACTIONS(147), 1, + [24997] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2962), 1, + ACTIONS(3081), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1265), 1, - sym_comment, - STATE(1277), 1, + STATE(1379), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1406), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155584,86 +168029,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19621] = 33, - ACTIONS(147), 1, + [25118] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2964), 1, + ACTIONS(3083), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1129), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, - sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, + STATE(1259), 1, sym_expr_parenthesized, - STATE(1263), 1, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1379), 1, aux_sym_val_list_repeat1, - STATE(1266), 1, + STATE(1407), 1, sym_comment, - ACTIONS(2926), 2, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155671,87 +168114,90 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19744] = 32, - ACTIONS(147), 1, + [25239] = 33, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2966), 1, + ACTIONS(3085), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, - sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, STATE(1214), 1, + sym_val_list, + STATE(1259), 1, sym_expr_parenthesized, - STATE(1267), 1, - sym_comment, - STATE(1277), 1, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, + sym__expression, + STATE(1386), 1, aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(1408), 1, + sym_comment, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(1342), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155759,90 +168205,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19865] = 33, - ACTIONS(147), 1, + [25362] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2916), 1, sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, - anon_sym_not, ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2932), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(2934), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_val_date, - ACTIONS(2942), 1, - anon_sym_DQUOTE, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2968), 1, + ACTIONS(3087), 1, anon_sym_RBRACK, - STATE(17), 1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1125), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1352), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1265), 1, + STATE(1379), 1, aux_sym_val_list_repeat1, - STATE(1268), 1, + STATE(1409), 1, sym_comment, - ACTIONS(2926), 2, + ACTIONS(2930), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(2938), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(2940), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155850,87 +168293,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19988] = 32, - ACTIONS(147), 1, + [25483] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2970), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1057), 1, + STATE(1410), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, - sym__inter_double_quotes, - STATE(1193), 1, + STATE(2839), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1269), 1, - sym_comment, - STATE(1277), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2853), 1, + sym_unquoted, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -155942,86 +168382,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20109] = 33, - ACTIONS(147), 1, + [25597] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(2922), 1, - anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(2605), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, + anon_sym_LBRACE, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2972), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1057), 1, + STATE(1411), 1, + sym_comment, + STATE(2077), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1122), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2293), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2297), 1, + sym_unquoted, + STATE(2300), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1270), 1, - sym_comment, - STATE(1271), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156029,87 +168463,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [20232] = 32, - ACTIONS(147), 1, + [25711] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2974), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(268), 1, + sym_unquoted, + STATE(269), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1271), 1, + STATE(1412), 1, sym_comment, - STATE(1277), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156121,176 +168552,168 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20353] = 33, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [25825] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2976), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1413), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1121), 1, - sym_val_list, - STATE(1146), 1, + STATE(2761), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1267), 1, - aux_sym_val_list_repeat1, - STATE(1272), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3572), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2861), 10, sym_val_bool, - sym_val_variable, 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, - [20476] = 33, - ACTIONS(147), 1, + [25945] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2978), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1116), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(233), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1273), 1, + STATE(241), 1, + sym__str_double_quotes, + STATE(270), 1, + sym_unquoted, + STATE(1414), 1, sym_comment, - STATE(1274), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156298,89 +168721,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [20599] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [26059] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2980), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1415), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(2855), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1274), 1, - sym_comment, - STATE(1277), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3585), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -156390,84 +168813,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20720] = 32, - ACTIONS(147), 1, + [26179] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2982), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(262), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1275), 1, + STATE(264), 1, + sym_unquoted, + STATE(1416), 1, sym_comment, - STATE(1277), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156479,86 +168898,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20841] = 33, - ACTIONS(147), 1, + [26293] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2984), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1057), 1, + STATE(1141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1117), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, sym_expr_parenthesized, - STATE(1276), 1, + STATE(1350), 1, + sym_unquoted, + STATE(1354), 1, + sym__expression, + STATE(1417), 1, sym_comment, - STATE(1295), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(1330), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2577), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156566,86 +168979,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [20964] = 31, - ACTIONS(147), 1, + [26407] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - sym_cmd_identifier, - ACTIONS(2989), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2992), 1, - anon_sym_RBRACK, - ACTIONS(2994), 1, + ACTIONS(3111), 1, anon_sym_LPAREN, - ACTIONS(2997), 1, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(3000), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(3003), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(3006), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(3012), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - sym_val_nothing, - ACTIONS(3030), 1, - sym_val_date, - ACTIONS(3033), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(3039), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3042), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(260), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - ACTIONS(3009), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3018), 2, + STATE(261), 1, + sym_unquoted, + STATE(1418), 1, + sym_comment, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(3036), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1277), 2, - sym_comment, - aux_sym_val_list_repeat1, - ACTIONS(3027), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3021), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(3024), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156657,86 +169068,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21083] = 33, - ACTIONS(147), 1, + [26521] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3045), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1057), 1, + STATE(1141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1099), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, sym_expr_parenthesized, - STATE(1278), 1, + STATE(1348), 1, + sym__expression, + STATE(1360), 1, + sym_unquoted, + STATE(1419), 1, sym_comment, - STATE(1279), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(1330), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2577), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156744,87 +169149,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [21206] = 32, - ACTIONS(147), 1, + [26635] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3047), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(258), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1279), 1, + STATE(259), 1, + sym_unquoted, + STATE(1420), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -156836,174 +169238,253 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21327] = 33, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [26749] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3049), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1421), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1119), 1, - sym_val_list, - STATE(1146), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(2857), 1, + sym__str_double_quotes, + STATE(2863), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1280), 1, - sym_comment, - STATE(1281), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(3539), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2861), 10, sym_val_bool, - sym_val_variable, 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, - [21450] = 32, - ACTIONS(147), 1, + [26869] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3051), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(256), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1281), 1, + STATE(257), 1, + sym_unquoted, + STATE(1422), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, + sym_val_bool, + sym_val_variable, + 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, + [26983] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2575), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_DASHinf, - STATE(1228), 4, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_DOLLAR, + ACTIONS(3149), 1, + anon_sym_DASH, + ACTIONS(3151), 1, + anon_sym_LBRACE, + ACTIONS(3153), 1, + anon_sym_not, + ACTIONS(3163), 1, + anon_sym_DQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, + sym_val_number, + STATE(1141), 1, + sym__var, + STATE(1253), 1, + sym_unquoted, + STATE(1254), 1, + sym__expression, + STATE(1258), 1, + sym__inter_double_quotes, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1423), 1, + sym_comment, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3165), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157015,86 +169496,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21571] = 33, - ACTIONS(147), 1, + [27097] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1126), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(254), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1282), 1, + STATE(255), 1, + sym_unquoted, + STATE(1424), 1, sym_comment, - STATE(1285), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157102,89 +169577,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [21694] = 33, - ACTIONS(147), 1, + [27211] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(3147), 1, + anon_sym_DOLLAR, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2972), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, - anon_sym_DOLLAR, - STATE(17), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1057), 1, + STATE(1141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1122), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1263), 1, + sym_unquoted, + STATE(1268), 1, sym__expression, - STATE(1214), 1, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, sym_expr_parenthesized, - STATE(1271), 1, - aux_sym_val_list_repeat1, - STATE(1283), 1, + STATE(1425), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(1330), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2577), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157192,87 +169662,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [21817] = 32, - ACTIONS(147), 1, + [27325] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3057), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(252), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1284), 1, + STATE(253), 1, + sym_unquoted, + STATE(1426), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157284,86 +169751,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21938] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [27439] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3059), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1427), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(2857), 1, + sym__str_double_quotes, + STATE(2860), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1285), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3540), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -157373,84 +169839,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22059] = 32, - ACTIONS(147), 1, + [27559] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3061), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(241), 1, + sym__str_double_quotes, + STATE(243), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1286), 1, + STATE(250), 1, + sym_unquoted, + STATE(1428), 1, sym_comment, - STATE(1290), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157462,86 +169924,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22180] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [27673] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3063), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1429), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, + STATE(2812), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1287), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3541), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -157551,86 +170012,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22301] = 33, - ACTIONS(147), 1, + [27793] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(3113), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2930), 1, - sym_val_nothing, - ACTIONS(2940), 1, - sym_val_date, - ACTIONS(2942), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3065), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1057), 1, + STATE(141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1112), 1, - sym_val_list, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(202), 1, + sym_expr_parenthesized, + STATE(215), 1, sym__inter_double_quotes, - STATE(1193), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(238), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1287), 1, - aux_sym_val_list_repeat1, - STATE(1288), 1, + STATE(240), 1, + sym_unquoted, + STATE(241), 1, + sym__str_double_quotes, + STATE(1430), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2936), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(1144), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -157638,179 +170093,177 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [22424] = 33, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + [27907] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3067), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1057), 1, + STATE(1431), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1106), 1, - sym_val_list, - STATE(1146), 1, + STATE(2808), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1264), 1, - aux_sym_val_list_repeat1, - STATE(1289), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3545), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2861), 10, sym_val_bool, - sym_val_variable, 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, - [22547] = 32, - ACTIONS(147), 1, + [28027] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3069), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1432), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2598), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1290), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3497), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -157820,356 +170273,349 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22668] = 33, - ACTIONS(147), 1, + [28147] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3071), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1433), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1115), 1, - sym_val_list, - STATE(1146), 1, + STATE(2599), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1275), 1, - aux_sym_val_list_repeat1, - STATE(1291), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3496), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2688), 10, sym_val_bool, - sym_val_variable, 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, - [22791] = 33, - ACTIONS(147), 1, + [28267] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3073), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1434), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1114), 1, - sym_val_list, - STATE(1146), 1, + STATE(2600), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1292), 1, - sym_comment, - STATE(1297), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(3495), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2688), 10, sym_val_bool, - sym_val_variable, 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, - [22914] = 33, - ACTIONS(147), 1, + [28387] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3075), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1435), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1094), 1, - sym_val_list, - STATE(1146), 1, + STATE(2601), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1293), 1, - sym_comment, - STATE(1294), 1, - aux_sym_val_list_repeat1, - ACTIONS(2926), 2, + STATE(3494), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2688), 10, sym_val_bool, - sym_val_variable, 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, - [23037] = 32, - ACTIONS(147), 1, + [28507] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1436), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2602), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1294), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3493), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -158179,86 +170625,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23158] = 32, - ACTIONS(147), 1, + [28627] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3079), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1437), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2603), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1295), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3488), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -158268,176 +170713,173 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23279] = 33, - ACTIONS(147), 1, + [28747] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3081), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1438), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1120), 1, - sym_val_list, - STATE(1146), 1, + STATE(2604), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1269), 1, - aux_sym_val_list_repeat1, - STATE(1296), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3487), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 10, + STATE(2688), 10, sym_val_bool, - sym_val_variable, 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, - [23402] = 32, - ACTIONS(147), 1, + [28867] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - sym_cmd_identifier, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2924), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2928), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2930), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(2940), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(2942), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3083), 1, - anon_sym_RBRACK, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1439), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2605), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1193), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1277), 1, - aux_sym_val_list_repeat1, - STATE(1297), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3484), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2932), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2944), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2938), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2934), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2936), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1228), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(1144), 11, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -158447,84 +170889,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23523] = 32, - ACTIONS(31), 1, + [28987] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1298), 1, + STATE(1440), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2526), 1, - sym__expression, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2606), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3473), 1, + STATE(3483), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -158535,8 +170977,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23643] = 32, - ACTIONS(147), 1, + [29107] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -158560,29 +171002,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1299), 1, + STATE(1441), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2448), 1, + STATE(2608), 1, sym__expression, - STATE(3225), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3482), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -158607,12 +171049,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -158623,84 +171065,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23763] = 32, - ACTIONS(31), 1, + [29227] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1300), 1, + STATE(1442), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2609), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2629), 1, - sym__expression, - STATE(3493), 1, + STATE(3480), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -158711,84 +171153,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23883] = 32, - ACTIONS(31), 1, + [29347] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1301), 1, + STATE(1443), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2610), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2625), 1, - sym__expression, - STATE(3439), 1, + STATE(3445), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -158799,84 +171241,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24003] = 32, - ACTIONS(31), 1, + [29467] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1302), 1, + STATE(1444), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2611), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2623), 1, - sym__expression, - STATE(3481), 1, + STATE(3478), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -158887,85 +171329,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24123] = 32, - ACTIONS(31), 1, + [29587] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3111), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3113), 1, + anon_sym_DOLLAR, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1303), 1, - sym_comment, - STATE(2175), 1, + STATE(141), 1, sym__var, - STATE(2178), 1, + STATE(202), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(215), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2621), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(236), 1, sym__expression, - STATE(3474), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(237), 1, + sym_unquoted, + STATE(241), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_comment, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -158975,85 +171414,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24243] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [29701] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_DOLLAR, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1304), 1, - sym_comment, - STATE(2175), 1, + STATE(1141), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2617), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1283), 1, + sym_unquoted, + STATE(1294), 1, sym__expression, - STATE(3469), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_comment, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(1330), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2577), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159063,85 +171499,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24363] = 32, - ACTIONS(31), 1, + [29815] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3111), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3113), 1, + anon_sym_DOLLAR, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1305), 1, - sym_comment, - STATE(2175), 1, + STATE(141), 1, sym__var, - STATE(2178), 1, + STATE(202), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(215), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2615), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(232), 1, sym__expression, - STATE(3455), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(234), 1, + sym_unquoted, + STATE(241), 1, + sym__str_double_quotes, + STATE(1447), 1, + sym_comment, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159151,85 +171584,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24483] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [29929] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_DOLLAR, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1306), 1, - sym_comment, - STATE(2175), 1, + STATE(1141), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2610), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1307), 1, + sym_unquoted, + STATE(1316), 1, sym__expression, - STATE(2612), 1, - sym_val_variable, - STATE(3505), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1448), 1, + sym_comment, + ACTIONS(3157), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(1330), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2577), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1265), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159239,85 +171669,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24603] = 32, - ACTIONS(31), 1, + [30043] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3109), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3111), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3113), 1, + anon_sym_DOLLAR, + ACTIONS(3115), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3117), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3119), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3129), 1, + anon_sym_DASHinf, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3139), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3141), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1307), 1, - sym_comment, - STATE(2175), 1, + STATE(141), 1, sym__var, - STATE(2178), 1, + STATE(202), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(215), 1, sym__inter_double_quotes, - STATE(2609), 1, + STATE(216), 1, + sym__inter_single_quotes, + STATE(228), 1, sym__expression, - STATE(2612), 1, - sym_val_variable, - STATE(3447), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(230), 1, + sym_unquoted, + STATE(241), 1, + sym__str_double_quotes, + STATE(1449), 1, + sym_comment, + ACTIONS(3123), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3125), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3135), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3121), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(198), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3127), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(220), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159327,7 +171754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24723] = 32, + [30157] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -159350,31 +171777,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1308), 1, + STATE(1450), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2573), 1, + STATE(2344), 1, + sym__var, + STATE(2788), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3326), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3546), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -159399,12 +171826,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -159415,85 +171842,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24843] = 32, - ACTIONS(31), 1, + [30277] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1309), 1, + STATE(1451), 1, sym_comment, - STATE(2175), 1, + STATE(2136), 1, sym__var, - STATE(2178), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2557), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3318), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2521), 1, + sym_unquoted, + STATE(2522), 1, + sym__expression, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159503,84 +171927,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24963] = 32, - ACTIONS(31), 1, + [30391] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1310), 1, + STATE(1452), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2529), 1, - sym__expression, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2687), 1, + sym__expression, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3315), 1, + STATE(3343), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -159591,83 +172015,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25083] = 30, - ACTIONS(147), 1, + [30511] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2685), 1, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, - anon_sym_LBRACE, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1311), 1, + STATE(1453), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(2685), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2605), 1, - sym_block, - STATE(2703), 1, - sym__expression, - STATE(3677), 1, - sym__match_expression, - ACTIONS(2687), 2, + STATE(3350), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159677,83 +172103,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25199] = 30, - ACTIONS(147), 1, + [30631] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3099), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(15), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1058), 1, + STATE(1454), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1143), 1, - sym__expression, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(1232), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2684), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1312), 1, - sym_comment, - STATE(2600), 1, - sym__match_expression, - STATE(2605), 1, - sym_block, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3351), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3109), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2577), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1234), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -159763,84 +172191,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25315] = 32, - ACTIONS(31), 1, + [30751] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1313), 1, + STATE(1455), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2683), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2631), 1, - sym__expression, - STATE(3546), 1, + STATE(3352), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -159851,84 +172279,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25435] = 32, - ACTIONS(31), 1, + [30871] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1314), 1, + STATE(1456), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2681), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2634), 1, - sym__expression, - STATE(3542), 1, + STATE(3354), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -159939,85 +172367,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25555] = 32, - ACTIONS(31), 1, + [30991] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1315), 1, + STATE(1457), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2642), 1, + STATE(2161), 1, sym__expression, - STATE(3534), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2162), 1, + sym_unquoted, + STATE(2203), 1, + sym__inter_double_quotes, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160027,84 +172452,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25675] = 32, - ACTIONS(31), 1, + [31105] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1316), 1, + STATE(1458), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2680), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2650), 1, - sym__expression, - STATE(3308), 1, + STATE(3355), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -160115,85 +172540,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25795] = 32, - ACTIONS(31), 1, + [31225] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1317), 1, + STATE(1459), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2652), 1, + STATE(2159), 1, sym__expression, - STATE(3549), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2160), 1, + sym_unquoted, + STATE(2203), 1, + sym__inter_double_quotes, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160203,85 +172625,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25915] = 32, - ACTIONS(31), 1, + [31339] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1318), 1, + STATE(1460), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2653), 1, + STATE(2155), 1, sym__expression, - STATE(3543), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2157), 1, + sym_unquoted, + STATE(2203), 1, + sym__inter_double_quotes, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160291,85 +172710,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26035] = 32, - ACTIONS(31), 1, + [31453] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1319), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(603), 1, + sym__expression, + STATE(604), 1, + sym_unquoted, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2651), 1, - sym__expression, - STATE(3382), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1461), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160379,7 +172795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26155] = 32, + [31567] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -160402,31 +172818,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1320), 1, + STATE(1462), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2649), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2846), 1, sym__expression, - STATE(3541), 1, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3579), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -160451,12 +172867,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -160467,85 +172883,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26275] = 32, - ACTIONS(31), 1, + [31687] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1321), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(600), 1, + sym__expression, + STATE(601), 1, + sym_unquoted, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2647), 1, - sym__expression, - STATE(3527), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1463), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, + sym_val_bool, + sym_val_variable, + 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, + [31801] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, + anon_sym_DASH, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, + sym_val_number, + STATE(1464), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2398), 1, + sym__expression, + STATE(2399), 1, + sym_unquoted, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(2779), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160555,85 +173053,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26395] = 32, - ACTIONS(31), 1, + [31915] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1322), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(597), 1, + sym__expression, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(599), 1, + sym_unquoted, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2645), 1, - sym__expression, - STATE(3523), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1465), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160643,7 +173138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26515] = 32, + [32029] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -160666,31 +173161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1323), 1, + STATE(1466), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2643), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2845), 1, sym__expression, - STATE(3520), 1, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3580), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -160715,12 +173210,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -160731,85 +173226,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26635] = 32, - ACTIONS(31), 1, + [32149] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1324), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(594), 1, + sym__expression, + STATE(596), 1, + sym_unquoted, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2641), 1, - sym__expression, - STATE(3516), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1467), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, + sym_val_bool, + sym_val_variable, + 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, + [32263] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, + anon_sym_DASH, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, + sym_val_number, + STATE(1468), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2373), 1, + sym__expression, + STATE(2400), 1, + sym_unquoted, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(2779), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -160819,8 +173396,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26755] = 32, - ACTIONS(147), 1, + [32377] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -160844,29 +173421,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1325), 1, + STATE(1469), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2512), 1, + STATE(2612), 1, sym__expression, - STATE(3224), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3477), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -160891,12 +173468,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -160907,8 +173484,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26875] = 32, - ACTIONS(147), 1, + [32497] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -160932,29 +173509,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1326), 1, + STATE(1470), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2511), 1, + STATE(2613), 1, sym__expression, - STATE(3222), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3476), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -160979,12 +173556,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -160995,8 +173572,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26995] = 32, - ACTIONS(147), 1, + [32617] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161020,29 +173597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1327), 1, + STATE(1471), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2510), 1, + STATE(2614), 1, sym__expression, - STATE(3220), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3475), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161067,12 +173644,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161083,8 +173660,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27115] = 32, - ACTIONS(147), 1, + [32737] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161108,29 +173685,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1328), 1, + STATE(1472), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2509), 1, + STATE(2615), 1, sym__expression, - STATE(3147), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3474), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161155,12 +173732,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161171,8 +173748,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27235] = 32, - ACTIONS(147), 1, + [32857] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161196,29 +173773,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1329), 1, + STATE(1473), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2508), 1, + STATE(2616), 1, sym__expression, - STATE(3194), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3473), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161243,12 +173820,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161259,8 +173836,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27355] = 32, - ACTIONS(147), 1, + [32977] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161284,29 +173861,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1330), 1, + STATE(1474), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2507), 1, + STATE(2617), 1, sym__expression, - STATE(3192), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3472), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161331,12 +173908,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161347,8 +173924,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27475] = 32, - ACTIONS(147), 1, + [33097] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161372,29 +173949,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1331), 1, + STATE(1475), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2506), 1, + STATE(2618), 1, sym__expression, - STATE(3190), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3471), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161419,12 +173996,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161435,8 +174012,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27595] = 32, - ACTIONS(147), 1, + [33217] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161460,29 +174037,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1332), 1, + STATE(1476), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2505), 1, + STATE(2619), 1, sym__expression, - STATE(3188), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3470), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161507,12 +174084,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161523,8 +174100,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27715] = 32, - ACTIONS(147), 1, + [33337] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161548,29 +174125,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1333), 1, + STATE(1477), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2504), 1, + STATE(2620), 1, sym__expression, - STATE(3186), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3469), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161595,12 +174172,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161611,8 +174188,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27835] = 32, - ACTIONS(147), 1, + [33457] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161636,29 +174213,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1334), 1, + STATE(1478), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, + STATE(2621), 1, + sym__expression, + STATE(2686), 1, sym_val_variable, - STATE(2503), 1, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3468), 1, + sym__where_predicate, + ACTIONS(241), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(247), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(253), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, + sym_val_bool, + 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, + [33577] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, + anon_sym_DQUOTE, + ACTIONS(261), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(263), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, + sym_val_number, + STATE(1479), 1, + sym_comment, + STATE(2259), 1, + sym__var, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2623), 1, sym__expression, - STATE(3184), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3467), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161683,12 +174348,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161699,8 +174364,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27955] = 32, - ACTIONS(147), 1, + [33697] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161724,29 +174389,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1335), 1, + STATE(1480), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2502), 1, + STATE(2644), 1, sym__expression, - STATE(3182), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3462), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161771,12 +174436,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161787,8 +174452,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28075] = 32, - ACTIONS(147), 1, + [33817] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -161812,29 +174477,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1336), 1, + STATE(1481), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2501), 1, + STATE(2625), 1, sym__expression, - STATE(3159), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3461), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -161859,12 +174524,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -161875,85 +174540,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28195] = 32, - ACTIONS(147), 1, + [33937] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1337), 1, + STATE(1482), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2152), 1, + sym__expression, + STATE(2154), 1, + sym_unquoted, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2500), 1, - sym__expression, - STATE(3149), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -161963,7 +174625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28315] = 32, + [34051] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -161986,31 +174648,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1338), 1, + STATE(1483), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2541), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3360), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2844), 1, + sym__expression, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3581), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -162035,12 +174697,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -162051,85 +174713,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28435] = 32, - ACTIONS(31), 1, + [34171] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1339), 1, + STATE(1484), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2639), 1, + STATE(2149), 1, sym__expression, - STATE(3503), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2150), 1, + sym_unquoted, + STATE(2203), 1, + sym__inter_double_quotes, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, + sym_val_bool, + sym_val_variable, + 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, + [34285] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, + anon_sym_DASH, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, + sym_val_number, + STATE(1485), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2401), 1, + sym__expression, + STATE(2403), 1, + sym_unquoted, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(2779), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162139,85 +174883,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28555] = 32, - ACTIONS(31), 1, + [34399] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1340), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(592), 1, + sym__expression, + STATE(593), 1, + sym_unquoted, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2637), 1, - sym__expression, - STATE(3501), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1486), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162227,85 +174968,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28675] = 32, - ACTIONS(31), 1, + [34513] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1341), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, + STATE(587), 1, + sym_unquoted, + STATE(588), 1, + sym__expression, + STATE(589), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2635), 1, - sym__expression, - STATE(3489), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1487), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, + sym_val_bool, + sym_val_variable, + 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, + [34627] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(3235), 1, + anon_sym_DQUOTE, + ACTIONS(3239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, + sym_val_number, + STATE(525), 1, + sym__var, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, + sym__str_double_quotes, + STATE(616), 1, + sym__expression, + STATE(625), 1, + sym__inter_single_quotes, + STATE(626), 1, + sym__inter_double_quotes, + STATE(644), 1, + sym_unquoted, + STATE(1488), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(590), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(1641), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162315,85 +175138,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28795] = 32, - ACTIONS(31), 1, + [34741] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1342), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2559), 1, + STATE(571), 1, + sym_unquoted, + STATE(573), 1, sym__expression, - STATE(2578), 1, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3425), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1489), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, + sym_val_bool, + sym_val_variable, + 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, + [34855] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(3235), 1, + anon_sym_DQUOTE, + ACTIONS(3239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, + sym_val_number, + STATE(525), 1, + sym__var, + STATE(574), 1, + sym_unquoted, + STATE(576), 1, + sym__expression, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, + sym__str_double_quotes, + STATE(625), 1, + sym__inter_single_quotes, + STATE(626), 1, + sym__inter_double_quotes, + STATE(1490), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(590), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(1641), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162403,7 +175308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28915] = 32, + [34969] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -162426,31 +175331,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1343), 1, + STATE(1491), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2558), 1, + STATE(2344), 1, + sym__var, + STATE(2722), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3434), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3570), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -162475,12 +175380,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -162491,85 +175396,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29035] = 32, - ACTIONS(31), 1, + [35089] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1344), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2527), 1, + STATE(577), 1, + sym_unquoted, + STATE(578), 1, sym__expression, - STATE(2578), 1, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3339), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1492), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162579,85 +175481,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29155] = 32, - ACTIONS(31), 1, + [35203] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1345), 1, + STATE(1493), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2142), 1, + sym__expression, + STATE(2145), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2624), 1, - sym__expression, - STATE(3511), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, + sym_val_bool, + sym_val_variable, + 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, + [35317] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(3235), 1, + anon_sym_DQUOTE, + ACTIONS(3239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, + sym_val_number, + STATE(525), 1, + sym__var, + STATE(579), 1, + sym_unquoted, + STATE(581), 1, + sym__expression, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, + sym__str_double_quotes, + STATE(625), 1, + sym__inter_single_quotes, + STATE(626), 1, + sym__inter_double_quotes, + STATE(1494), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(590), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(1641), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162667,85 +175651,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29275] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [35431] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1346), 1, + STATE(1495), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2530), 1, + STATE(2177), 1, + sym__var, + STATE(2405), 1, sym__expression, - STATE(2578), 1, + STATE(2406), 1, + sym_unquoted, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3310), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, + sym_val_bool, + sym_val_variable, + 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, + [35545] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + anon_sym_LBRACE, + ACTIONS(3233), 1, anon_sym_DASHinf, - STATE(2579), 4, + ACTIONS(3235), 1, + anon_sym_DQUOTE, + ACTIONS(3239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, + sym_val_number, + STATE(525), 1, + sym__var, + STATE(582), 1, + sym_unquoted, + STATE(584), 1, + sym__expression, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, + sym__str_double_quotes, + STATE(625), 1, + sym__inter_single_quotes, + STATE(626), 1, + sym__inter_double_quotes, + STATE(1496), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(590), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(1641), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162755,7 +175821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29395] = 32, + [35659] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -162778,31 +175844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1347), 1, + STATE(1497), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2531), 1, + STATE(2344), 1, + sym__var, + STATE(2739), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3312), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3771), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -162827,12 +175893,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -162843,85 +175909,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29515] = 32, - ACTIONS(31), 1, + [35779] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + anon_sym_DASH, + ACTIONS(1633), 1, + anon_sym_not, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3229), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3231), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3233), 1, + anon_sym_DASHinf, + ACTIONS(3235), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3243), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1348), 1, - sym_comment, - STATE(2175), 1, + STATE(525), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2551), 1, + STATE(585), 1, + sym_unquoted, + STATE(586), 1, sym__expression, - STATE(2578), 1, + STATE(589), 1, + sym_expr_parenthesized, + STATE(598), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(625), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(626), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3314), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1498), 1, + sym_comment, + ACTIONS(1637), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1639), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1635), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1643), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(590), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1641), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(614), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -162931,85 +175994,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29635] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [35893] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1349), 1, + STATE(1499), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2177), 1, + sym__var, + STATE(2407), 1, + sym__expression, + STATE(2408), 1, + sym_unquoted, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2633), 1, - sym__expression, - STATE(3471), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163019,85 +176079,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29755] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [36007] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1350), 1, + STATE(1500), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2552), 1, + STATE(2177), 1, + sym__var, + STATE(2409), 1, sym__expression, - STATE(2578), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2412), 1, + sym_unquoted, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3316), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163107,85 +176164,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29875] = 32, - ACTIONS(31), 1, + [36121] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1351), 1, + STATE(1501), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2133), 1, + sym__expression, + STATE(2135), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2632), 1, - sym__expression, - STATE(3363), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163195,85 +176249,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29995] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [36235] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1352), 1, + STATE(1502), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2413), 1, + sym__expression, + STATE(2451), 1, + sym_unquoted, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2630), 1, - sym__expression, - STATE(3483), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163283,85 +176334,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30115] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [36349] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1353), 1, + STATE(1503), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2417), 1, + sym__expression, + STATE(2418), 1, + sym_unquoted, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2628), 1, - sym__expression, - STATE(3482), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163371,85 +176419,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30235] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [36463] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1354), 1, + STATE(1504), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2420), 1, + sym__expression, + STATE(2421), 1, + sym_unquoted, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2626), 1, - sym__expression, - STATE(3307), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163459,85 +176504,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30355] = 32, - ACTIONS(31), 1, + [36577] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, + STATE(114), 1, sym_val_number, - STATE(1355), 1, + STATE(1505), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2534), 1, + STATE(2004), 1, + sym__var, + STATE(2131), 1, sym__expression, - STATE(2578), 1, + STATE(2132), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3372), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163547,85 +176589,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30475] = 32, - ACTIONS(147), 1, + [36691] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1356), 1, + STATE(1506), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2004), 1, + sym__var, + STATE(2126), 1, + sym__expression, + STATE(2129), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2482), 1, - sym__expression, - STATE(3278), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163635,85 +176674,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30595] = 32, - ACTIONS(147), 1, + [36805] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1357), 1, + STATE(1507), 1, sym_comment, - STATE(2115), 1, + STATE(1964), 1, + sym_expr_parenthesized, + STATE(2004), 1, sym__var, STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + sym__expression, + STATE(2123), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2480), 1, - sym__expression, - STATE(3275), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163723,85 +176759,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30715] = 32, - ACTIONS(147), 1, + [36919] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1358), 1, + STATE(1508), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2479), 1, + STATE(2423), 1, sym__expression, - STATE(3273), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2424), 1, + sym_unquoted, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163811,85 +176844,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30835] = 32, - ACTIONS(147), 1, + [37033] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, + anon_sym_DQUOTE, + ACTIONS(2789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, + sym_val_number, + STATE(1509), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2425), 1, + sym__expression, + STATE(2427), 1, + sym_unquoted, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3249), 2, sym_val_nothing, - ACTIONS(255), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, + sym_val_bool, + sym_val_variable, + 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, + [37147] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, + anon_sym_DASH, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1359), 1, + STATE(1510), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2495), 1, + STATE(2428), 1, sym__expression, - STATE(3270), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2429), 1, + sym_unquoted, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163899,85 +177014,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30955] = 32, - ACTIONS(147), 1, + [37261] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1360), 1, + STATE(1511), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2004), 1, + sym__var, + STATE(2117), 1, + sym__expression, + STATE(2118), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2476), 1, - sym__expression, - STATE(3265), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -163987,85 +177099,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31075] = 32, - ACTIONS(147), 1, + [37375] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1361), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(300), 1, + sym_unquoted, + STATE(301), 1, + sym_expr_parenthesized, + STATE(302), 1, + sym__expression, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2475), 1, - sym__expression, - STATE(3263), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1512), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164075,84 +177184,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31195] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [37489] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1362), 1, + STATE(1513), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2799), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2471), 1, - sym__expression, - STATE(3254), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3586), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -164163,85 +177272,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31315] = 32, - ACTIONS(147), 1, + [37609] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1363), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(271), 1, + sym_unquoted, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(303), 1, + sym__expression, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2465), 1, - sym__expression, - STATE(3251), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1514), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164251,85 +177357,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31435] = 32, - ACTIONS(147), 1, + [37723] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2759), 1, + anon_sym_DOLLAR, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2781), 1, + anon_sym_DASHinf, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3253), 1, + aux_sym_unquoted_token1, + STATE(121), 1, sym_val_number, - STATE(1364), 1, + STATE(1515), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2464), 1, + STATE(2430), 1, sym__expression, - STATE(3250), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2431), 1, + sym_unquoted, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3249), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2773), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2779), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2446), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164339,85 +177442,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31555] = 32, - ACTIONS(147), 1, + [37837] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1365), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(304), 1, + sym_unquoted, + STATE(307), 1, + sym__expression, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2461), 1, - sym__expression, - STATE(3249), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1516), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164427,85 +177527,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31675] = 32, - ACTIONS(147), 1, + [37951] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1366), 1, + STATE(1517), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2004), 1, + sym__var, + STATE(2114), 1, + sym__expression, + STATE(2115), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2459), 1, - sym__expression, - STATE(3245), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164515,85 +177612,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31795] = 32, - ACTIONS(31), 1, + [38065] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1367), 1, - sym_comment, - STATE(2175), 1, + STATE(153), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2638), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(309), 1, + sym_unquoted, + STATE(312), 1, sym__expression, - STATE(3517), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(327), 1, + sym__inter_double_quotes, + STATE(328), 1, + sym__inter_single_quotes, + STATE(1518), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164603,85 +177697,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31915] = 32, - ACTIONS(31), 1, + [38179] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1368), 1, + STATE(1519), 1, sym_comment, - STATE(2175), 1, + STATE(2136), 1, sym__var, - STATE(2178), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2644), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2519), 1, + sym_unquoted, + STATE(2520), 1, sym__expression, - STATE(3539), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164691,85 +177782,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32035] = 32, - ACTIONS(147), 1, + [38293] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1369), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(318), 1, + sym_unquoted, + STATE(323), 1, + sym__expression, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2457), 1, - sym__expression, - STATE(3244), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1520), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164779,85 +177867,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32155] = 32, - ACTIONS(147), 1, + [38407] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1370), 1, + STATE(1521), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2456), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2517), 1, + sym_unquoted, + STATE(2518), 1, sym__expression, - STATE(3243), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164867,85 +177952,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32275] = 32, - ACTIONS(31), 1, + [38521] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1371), 1, - sym_comment, - STATE(2175), 1, + STATE(153), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2622), 1, + STATE(294), 1, sym__expression, - STATE(3459), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, + sym__inter_double_quotes, + STATE(328), 1, + sym__inter_single_quotes, + STATE(332), 1, + sym_unquoted, + STATE(1522), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -164955,8 +178037,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32395] = 32, - ACTIONS(147), 1, + [38635] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -164980,29 +178062,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1372), 1, + STATE(1523), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2454), 1, + STATE(2678), 1, sym__expression, - STATE(3242), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3356), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -165027,12 +178109,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -165043,85 +178125,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32515] = 32, - ACTIONS(147), 1, + [38755] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1373), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(292), 1, + sym__expression, + STATE(293), 1, + sym_unquoted, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2453), 1, - sym__expression, - STATE(3235), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1524), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165131,8 +178210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32635] = 32, - ACTIONS(147), 1, + [38869] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -165156,29 +178235,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1374), 1, + STATE(1525), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2450), 1, + STATE(2677), 1, sym__expression, - STATE(3229), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3359), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -165203,12 +178282,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -165219,85 +178298,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32755] = 32, - ACTIONS(31), 1, + [38989] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1375), 1, - sym_comment, - STATE(2175), 1, + STATE(153), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2560), 1, - sym__expression, - STATE(2578), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(290), 1, + sym__expression, + STATE(291), 1, + sym_unquoted, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3419), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(328), 1, + sym__inter_single_quotes, + STATE(1526), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165307,7 +178383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32875] = 32, + [39103] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -165330,31 +178406,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1376), 1, + STATE(1527), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2564), 1, + STATE(2344), 1, + sym__var, + STATE(2793), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3332), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3588), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -165379,12 +178455,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -165395,85 +178471,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32995] = 32, - ACTIONS(147), 1, + [39223] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1377), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(285), 1, + sym__expression, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(289), 1, + sym_unquoted, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2449), 1, - sym__expression, - STATE(3227), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1528), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165483,85 +178556,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33115] = 32, - ACTIONS(31), 1, + [39337] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1378), 1, + STATE(1529), 1, sym_comment, - STATE(2175), 1, + STATE(2136), 1, sym__var, - STATE(2178), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2565), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3333), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2515), 1, + sym_unquoted, + STATE(2516), 1, + sym__expression, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165571,85 +178641,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33235] = 32, - ACTIONS(31), 1, + [39451] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1379), 1, - sym_comment, - STATE(2175), 1, + STATE(153), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, + STATE(277), 1, + sym__expression, + STATE(284), 1, + sym_unquoted, + STATE(287), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(2636), 1, - sym__expression, - STATE(3515), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(328), 1, + sym__inter_single_quotes, + STATE(1530), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165659,7 +178726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33355] = 32, + [39565] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -165682,31 +178749,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1380), 1, + STATE(1531), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2792), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2646), 1, - sym__expression, - STATE(3524), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3593), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -165731,12 +178798,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -165747,85 +178814,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33475] = 32, - ACTIONS(147), 1, + [39685] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1381), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(273), 1, + sym__expression, + STATE(280), 1, + sym_unquoted, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2447), 1, - sym__expression, - STATE(3223), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1532), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -165835,7 +178899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33595] = 32, + [39799] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -165858,31 +178922,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1382), 1, + STATE(1533), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2602), 1, + STATE(2344), 1, + sym__var, + STATE(2772), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3519), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3596), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -165907,12 +178971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -165923,349 +178987,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33715] = 32, - ACTIONS(147), 1, + [39919] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1383), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(274), 1, + sym_unquoted, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2513), 1, + STATE(330), 1, sym__expression, - STATE(3226), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(253), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(249), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, - sym_val_bool, - 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, - [33835] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, - anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, + STATE(1534), 1, + sym_comment, + ACTIONS(3269), 2, sym_val_nothing, - ACTIONS(255), 1, sym_val_date, - ACTIONS(257), 1, - anon_sym_DQUOTE, - ACTIONS(261), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, - sym_val_number, - STATE(1384), 1, - sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2446), 1, - sym__expression, - STATE(3221), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(249), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, - sym_val_bool, - 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, - [33955] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, - anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, - anon_sym_DQUOTE, - ACTIONS(261), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, - sym_val_number, - STATE(1385), 1, - sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2445), 1, - sym__expression, - STATE(3217), 1, - sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(3267), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, + STATE(275), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, - sym_val_bool, - 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, - [34075] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, - anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, - anon_sym_DQUOTE, - ACTIONS(261), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, - sym_val_number, - STATE(1386), 1, - sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2440), 1, - sym__expression, - STATE(3214), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(253), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -166275,7 +179072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34195] = 32, + [40033] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -166298,31 +179095,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1387), 1, + STATE(1535), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2765), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2618), 1, - sym__expression, - STATE(3452), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3597), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -166347,12 +179144,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -166363,85 +179160,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34315] = 32, - ACTIONS(147), 1, + [40153] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3259), 1, + anon_sym_DOLLAR, + ACTIONS(3261), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3265), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3275), 1, + anon_sym_DASHinf, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3287), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1388), 1, - sym_comment, - STATE(2115), 1, + STATE(153), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(287), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(301), 1, + sym_expr_parenthesized, + STATE(324), 1, + sym__expression, + STATE(326), 1, + sym_unquoted, + STATE(327), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(328), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2438), 1, - sym__expression, - STATE(3271), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1536), 1, + sym_comment, + ACTIONS(3269), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3271), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3281), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3267), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(275), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3273), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(334), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -166451,84 +179245,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34435] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [40267] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1389), 1, + STATE(1537), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2762), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2433), 1, - sym__expression, - STATE(3207), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3598), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -166539,8 +179333,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34555] = 32, - ACTIONS(147), 1, + [40387] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -166564,29 +179358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1390), 1, + STATE(1538), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2432), 1, + STATE(2676), 1, sym__expression, - STATE(3206), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3378), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -166611,12 +179405,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -166627,8 +179421,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34675] = 32, - ACTIONS(147), 1, + [40507] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -166652,29 +179446,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1391), 1, + STATE(1539), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2499), 1, + STATE(2646), 1, sym__expression, - STATE(3102), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3379), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -166699,12 +179493,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -166715,85 +179509,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34795] = 32, - ACTIONS(147), 1, + [40627] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(3203), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3213), 1, + anon_sym_DASHinf, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, + ACTIONS(3225), 1, + aux_sym_unquoted_token1, STATE(114), 1, sym_val_number, - STATE(1392), 1, + STATE(1540), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2004), 1, + sym__var, + STATE(2111), 1, + sym__expression, + STATE(2113), 1, + sym_unquoted, + STATE(2147), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2203), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2204), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2498), 1, - sym__expression, - STATE(3101), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(3207), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3209), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3205), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2100), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3211), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2214), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -166803,85 +179594,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34915] = 32, - ACTIONS(147), 1, + [40741] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1393), 1, + STATE(1541), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2497), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2513), 1, + sym_unquoted, + STATE(2514), 1, sym__expression, - STATE(3099), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -166891,84 +179679,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35035] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [40855] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1394), 1, + STATE(1542), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2750), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2496), 1, - sym__expression, - STATE(3097), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3602), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -166979,85 +179767,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35155] = 32, - ACTIONS(147), 1, + [40975] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1395), 1, + STATE(1543), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2494), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2510), 1, + sym_unquoted, + STATE(2512), 1, sym__expression, - STATE(3095), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2573), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2689), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2457), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -167067,8 +179852,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35275] = 32, - ACTIONS(147), 1, + [41089] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -167092,29 +179877,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1396), 1, + STATE(1544), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2493), 1, + STATE(2645), 1, sym__expression, - STATE(3286), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3380), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -167139,12 +179924,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167155,8 +179940,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35395] = 32, - ACTIONS(147), 1, + [41209] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -167180,29 +179965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1397), 1, + STATE(1545), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2492), 1, + STATE(2649), 1, sym__expression, - STATE(3090), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3381), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -167227,12 +180012,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167243,8 +180028,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35515] = 32, - ACTIONS(147), 1, + [41329] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -167268,29 +180053,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1398), 1, + STATE(1546), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2491), 1, + STATE(2643), 1, sym__expression, - STATE(3088), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3384), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -167315,12 +180100,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167331,84 +180116,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35635] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [41449] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1399), 1, + STATE(1547), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2746), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2489), 1, - sym__expression, - STATE(3120), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3603), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167419,85 +180204,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35755] = 32, - ACTIONS(147), 1, + [41569] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1400), 1, + STATE(1548), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2479), 1, + sym__var, + STATE(2889), 1, + sym_unquoted, + STATE(2914), 1, + sym__expression, + STATE(2915), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2917), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2487), 1, - sym__expression, - STATE(3123), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -167507,84 +180289,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35875] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [41683] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1401), 1, + STATE(1549), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2486), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2856), 1, sym__expression, - STATE(3136), 1, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3737), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167595,84 +180377,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35995] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [41803] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1402), 1, + STATE(1550), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2736), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2485), 1, - sym__expression, - STATE(3165), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3607), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167683,85 +180465,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36115] = 32, - ACTIONS(147), 1, + [41923] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1403), 1, + STATE(1551), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2479), 1, + sym__var, + STATE(2915), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2917), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2483), 1, + STATE(2918), 1, sym__expression, - STATE(3234), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2920), 1, + sym_unquoted, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -167771,84 +180550,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36235] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [42037] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1404), 1, + STATE(1552), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2421), 1, - sym__expression, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(3204), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2851), 1, + sym__expression, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3578), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167859,7 +180638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36355] = 32, + [42157] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -167882,31 +180661,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1405), 1, + STATE(1553), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2725), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2616), 1, - sym__expression, - STATE(3449), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3609), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -167931,12 +180710,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -167947,7 +180726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36475] = 32, + [42277] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -167970,31 +180749,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1406), 1, + STATE(1554), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2811), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(2614), 1, - sym__expression, - STATE(3448), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3611), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -168019,12 +180798,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -168035,85 +180814,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36595] = 32, - ACTIONS(147), 1, + [42397] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1407), 1, - sym_comment, - STATE(2115), 1, + STATE(1142), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(1248), 1, + sym__expression, + STATE(1249), 1, + sym_unquoted, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2514), 1, - sym__expression, - STATE(3228), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(1555), 1, + sym_comment, + ACTIONS(2934), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2938), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(1342), 11, + sym_val_bool, + sym_val_variable, + 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, + [42511] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, anon_sym_DASHinf, - STATE(2458), 4, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, + sym_val_number, + STATE(1556), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2893), 1, + sym_unquoted, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + STATE(2922), 1, + sym__expression, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168123,7 +180984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36715] = 32, + [42625] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -168146,31 +181007,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1408), 1, + STATE(1557), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2571), 1, + STATE(2344), 1, + sym__var, + STATE(2779), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3359), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3533), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -168195,13 +181056,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, + sym_val_bool, + 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, + [42745] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3311), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3313), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, + sym_val_number, + STATE(183), 1, + sym__var, + STATE(337), 1, + sym__str_double_quotes, + STATE(345), 1, + sym_unquoted, + STATE(347), 1, + sym__expression, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1558), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168211,7 +181157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36835] = 32, + [42859] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -168234,31 +181180,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1409), 1, + STATE(1559), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2528), 1, + STATE(2344), 1, + sym__var, + STATE(2747), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3358), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3719), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -168283,12 +181229,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -168299,85 +181245,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36955] = 32, - ACTIONS(147), 1, + [42979] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1410), 1, - sym_comment, - STATE(2115), 1, + STATE(183), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(348), 1, + sym_unquoted, + STATE(349), 1, + sym__expression, + STATE(372), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(373), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2515), 1, - sym__expression, - STATE(3230), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1560), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168387,85 +181330,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37075] = 32, - ACTIONS(147), 1, + [43093] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1411), 1, + STATE(1561), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2479), 1, + sym__var, + STATE(2903), 1, + sym_unquoted, + STATE(2904), 1, + sym__expression, + STATE(2915), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2917), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2516), 1, - sym__expression, - STATE(3240), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168475,85 +181415,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37195] = 32, - ACTIONS(147), 1, + [43207] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1412), 1, + STATE(1562), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2479), 1, + sym__var, + STATE(2895), 1, + sym_unquoted, + STATE(2897), 1, + sym__expression, + STATE(2915), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2917), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2517), 1, - sym__expression, - STATE(3256), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(259), 2, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, + sym_val_bool, + sym_val_variable, + 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, + [43321] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, anon_sym_DASHinf, - STATE(2458), 4, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, + sym_val_number, + STATE(1563), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2865), 1, + sym__expression, + STATE(2892), 1, + sym_unquoted, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168563,85 +181585,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37315] = 32, - ACTIONS(147), 1, + [43435] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1413), 1, + STATE(1564), 1, sym_comment, - STATE(2115), 1, + STATE(2077), 1, sym__var, - STATE(2122), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2283), 1, + sym__expression, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2518), 1, - sym__expression, - STATE(3258), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(2332), 1, + sym_unquoted, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [43549] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, anon_sym_DASHinf, - STATE(2458), 4, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, + sym_val_number, + STATE(1565), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2874), 1, + sym_unquoted, + STATE(2877), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168651,7 +181755,9 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37435] = 32, + [43663] = 29, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -168662,74 +181768,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(75), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, + ACTIONS(87), 1, + anon_sym_DASHinf, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1414), 1, + STATE(1566), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2344), 1, + sym__var, + STATE(2807), 1, + sym_unquoted, + STATE(2809), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2611), 1, - sym__expression, - STATE(2612), 1, - sym_val_variable, - STATE(3445), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, ACTIONS(83), 2, anon_sym_true, anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2861), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168739,85 +181840,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37555] = 32, - ACTIONS(147), 1, + [43777] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1415), 1, + STATE(1567), 1, sym_comment, - STATE(2115), 1, + STATE(2077), 1, sym__var, - STATE(2122), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2519), 1, + STATE(2358), 1, + sym__str_double_quotes, + STATE(2370), 1, sym__expression, - STATE(3260), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(2371), 1, + sym_unquoted, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2306), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -168827,84 +181925,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37675] = 32, - ACTIONS(31), 1, + [43891] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1416), 1, + STATE(1568), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2561), 1, - sym__expression, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2597), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3351), 1, + STATE(3499), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -168915,8 +182013,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37795] = 32, - ACTIONS(147), 1, + [44011] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -168940,29 +182038,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1417), 1, + STATE(1569), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2520), 1, + STATE(2596), 1, sym__expression, - STATE(3262), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3500), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -168987,12 +182085,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169003,8 +182101,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37915] = 32, - ACTIONS(147), 1, + [44131] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -169028,29 +182126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1418), 1, + STATE(1570), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2521), 1, + STATE(2595), 1, sym__expression, - STATE(3264), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3501), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -169075,13 +182173,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, + sym_val_bool, + 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, + [44251] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3311), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3313), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, + sym_val_number, + STATE(183), 1, + sym__var, + STATE(337), 1, + sym__str_double_quotes, + STATE(350), 1, + sym_unquoted, + STATE(351), 1, + sym__expression, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1571), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -169091,8 +182274,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38035] = 32, - ACTIONS(147), 1, + [44365] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -169116,29 +182299,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1419), 1, + STATE(1572), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2393), 1, + STATE(2594), 1, sym__expression, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, + STATE(2686), 1, sym_val_variable, - STATE(3266), 1, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3502), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -169163,13 +182346,183 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, + sym_val_bool, + 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, + [44485] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3311), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3313), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, + sym_val_number, + STATE(183), 1, + sym__var, + STATE(337), 1, + sym__str_double_quotes, + STATE(352), 1, + sym_unquoted, + STATE(353), 1, + sym__expression, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1573), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, + sym_val_bool, + sym_val_variable, + 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, + [44599] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3311), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3313), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, + sym_val_number, + STATE(183), 1, + sym__var, + STATE(337), 1, + sym__str_double_quotes, + STATE(354), 1, + sym_unquoted, + STATE(356), 1, + sym__expression, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1574), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -169179,8 +182532,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38155] = 32, - ACTIONS(147), 1, + [44713] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -169204,29 +182557,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1420), 1, + STATE(1575), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2524), 1, + STATE(2593), 1, sym__expression, - STATE(3268), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3504), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -169251,12 +182604,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169267,8 +182620,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38275] = 32, - ACTIONS(147), 1, + [44833] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -169292,29 +182645,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1421), 1, + STATE(1576), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2523), 1, + STATE(2592), 1, sym__expression, - STATE(3291), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3505), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -169339,12 +182692,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169355,8 +182708,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38395] = 32, - ACTIONS(147), 1, + [44953] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -169380,29 +182733,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1422), 1, + STATE(1577), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2522), 1, + STATE(2591), 1, sym__expression, - STATE(3293), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3506), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -169427,12 +182780,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169443,85 +182796,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38515] = 32, - ACTIONS(31), 1, + [45073] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1423), 1, - sym_comment, - STATE(2175), 1, + STATE(183), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2556), 1, - sym__expression, - STATE(2578), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(360), 1, + sym_unquoted, + STATE(362), 1, + sym__expression, + STATE(372), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3321), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1578), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -169531,84 +182881,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38635] = 32, - ACTIONS(31), 1, + [45187] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1424), 1, + STATE(1579), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2563), 1, - sym__expression, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2590), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3328), 1, + STATE(3509), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169619,7 +182969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38755] = 32, + [45307] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -169642,31 +182992,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1425), 1, + STATE(1580), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2525), 1, + STATE(2344), 1, + sym__var, + STATE(2734), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3437), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3551), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -169691,12 +183041,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169707,85 +183057,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38875] = 32, - ACTIONS(31), 1, + [45427] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1426), 1, - sym_comment, - STATE(2175), 1, + STATE(183), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2554), 1, - sym__expression, - STATE(2578), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(366), 1, + sym_unquoted, + STATE(370), 1, + sym__expression, + STATE(372), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3330), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1581), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -169795,85 +183142,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38995] = 32, - ACTIONS(31), 1, + [45541] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1427), 1, - sym_comment, - STATE(2175), 1, + STATE(183), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2553), 1, - sym__expression, - STATE(2578), 1, + STATE(335), 1, + sym_unquoted, + STATE(337), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(372), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3334), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(373), 1, + sym__inter_single_quotes, + STATE(375), 1, + sym__expression, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1582), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -169883,84 +183227,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39115] = 32, - ACTIONS(31), 1, + [45655] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1428), 1, + STATE(1583), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2566), 1, - sym__expression, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, + STATE(2589), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3335), 1, + STATE(3510), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -169971,85 +183315,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39235] = 32, - ACTIONS(31), 1, + [45775] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1429), 1, - sym_comment, - STATE(2175), 1, + STATE(183), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2568), 1, - sym__expression, - STATE(2578), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(372), 1, sym__inter_double_quotes, - STATE(2612), 1, - sym_val_variable, - STATE(3338), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(373), 1, + sym__inter_single_quotes, + STATE(378), 1, + sym_unquoted, + STATE(380), 1, + sym__expression, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1584), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -170059,8 +183400,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39355] = 32, - ACTIONS(147), 1, + [45889] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -170084,29 +183425,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1430), 1, + STATE(1585), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2481), 1, + STATE(2642), 1, sym__expression, - STATE(3247), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3386), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -170131,12 +183472,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170147,85 +183488,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39475] = 32, - ACTIONS(147), 1, + [46009] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1431), 1, + STATE(1586), 1, sym_comment, - STATE(2115), 1, + STATE(2077), 1, sym__var, - STATE(2122), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2284), 1, + sym_unquoted, + STATE(2285), 1, + sym__expression, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2478), 1, - sym__expression, - STATE(3295), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(2356), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2613), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2306), 11, + sym_val_bool, + sym_val_variable, + 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, + [46123] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, anon_sym_DASHinf, - STATE(2458), 4, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3311), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3313), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, + sym_val_number, + STATE(183), 1, + sym__var, + STATE(337), 1, + sym__str_double_quotes, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(381), 1, + sym_unquoted, + STATE(383), 1, + sym__expression, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1587), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -170235,85 +183658,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39595] = 32, - ACTIONS(147), 1, + [46237] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1432), 1, - sym_comment, - STATE(2115), 1, + STATE(183), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(372), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(373), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2477), 1, + STATE(384), 1, + sym_unquoted, + STATE(385), 1, sym__expression, - STATE(3299), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1588), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -170323,8 +183743,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39715] = 32, - ACTIONS(147), 1, + [46351] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -170348,29 +183768,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1433), 1, + STATE(1589), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2474), 1, + STATE(2587), 1, sym__expression, - STATE(3296), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3515), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -170395,12 +183815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170411,84 +183831,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39835] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [46471] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1434), 1, + STATE(1590), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2756), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2472), 1, - sym__expression, - STATE(3301), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3712), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170499,85 +183919,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39955] = 32, - ACTIONS(147), 1, + [46591] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1109), 1, + anon_sym_DOLLAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1115), 1, + anon_sym_not, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(239), 1, - anon_sym_not, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(245), 1, - sym_val_nothing, - ACTIONS(255), 1, - sym_val_date, - ACTIONS(257), 1, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym_identifier, - STATE(114), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1435), 1, - sym_comment, - STATE(2115), 1, + STATE(183), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(372), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(373), 1, sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2470), 1, + STATE(386), 1, + sym_unquoted, + STATE(387), 1, sym__expression, - STATE(3300), 1, - sym__where_predicate, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1591), 1, + sym_comment, + ACTIONS(1119), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + STATE(394), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1123), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2423), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(377), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -170587,84 +184004,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40075] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [46705] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1436), 1, + STATE(1592), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2777), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2469), 1, - sym__expression, - STATE(3304), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3615), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170675,84 +184092,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40195] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [46825] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1437), 1, + STATE(1593), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2755), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2468), 1, - sym__expression, - STATE(3289), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3567), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170763,8 +184180,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40315] = 32, - ACTIONS(147), 1, + [46945] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -170788,29 +184205,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1438), 1, + STATE(1594), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2460), 1, + STATE(2586), 1, sym__expression, - STATE(3288), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3516), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -170835,12 +184252,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170851,84 +184268,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40435] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [47065] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1439), 1, + STATE(1595), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2754), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2467), 1, - sym__expression, - STATE(3285), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3564), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -170939,84 +184356,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40555] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [47185] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1440), 1, + STATE(1596), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2752), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2466), 1, - sym__expression, - STATE(3292), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3563), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171027,84 +184444,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40675] = 32, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [47305] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(243), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(245), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(255), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(257), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3143), 1, sym_identifier, - STATE(114), 1, + STATE(115), 1, sym_val_number, - STATE(1441), 1, + STATE(1597), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, + STATE(2344), 1, + sym__var, + STATE(2751), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2425), 1, + STATE(2838), 1, sym_val_variable, - STATE(2463), 1, - sym__expression, - STATE(3259), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3562), 1, sym__where_predicate, - ACTIONS(241), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(247), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(259), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(253), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(249), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(251), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171115,8 +184532,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40795] = 32, - ACTIONS(147), 1, + [47425] = 32, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_LBRACK, @@ -171140,29 +184557,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(114), 1, + STATE(113), 1, sym_val_number, - STATE(1442), 1, + STATE(1598), 1, sym_comment, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2122), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2305), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2425), 1, - sym_val_variable, - STATE(2462), 1, + STATE(2585), 1, sym__expression, - STATE(3257), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3517), 1, sym__where_predicate, ACTIONS(241), 2, anon_sym_DOT_DOT_LT, @@ -171187,12 +184604,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2458), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2423), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171203,7 +184620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40915] = 32, + [47545] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171226,31 +184643,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1443), 1, + STATE(1599), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2599), 1, + STATE(2344), 1, + sym__var, + STATE(2748), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3478), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3561), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171275,12 +184692,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171291,7 +184708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41035] = 32, + [47665] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171314,31 +184731,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1444), 1, + STATE(1600), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2584), 1, + STATE(2344), 1, + sym__var, + STATE(2743), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3477), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3560), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171363,12 +184780,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171379,84 +184796,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41155] = 32, - ACTIONS(31), 1, + [47785] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1445), 1, + STATE(1601), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2596), 1, + STATE(2584), 1, sym__expression, - STATE(2612), 1, + STATE(2686), 1, sym_val_variable, - STATE(3479), 1, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3518), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171467,7 +184884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41275] = 32, + [47905] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171490,31 +184907,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1446), 1, + STATE(1602), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2594), 1, + STATE(2344), 1, + sym__var, + STATE(2742), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3500), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3559), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171539,12 +184956,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171555,7 +184972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41395] = 32, + [48025] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171578,31 +184995,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1447), 1, + STATE(1603), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2593), 1, + STATE(2344), 1, + sym__var, + STATE(2766), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3502), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3723), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171627,13 +185044,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, + sym_val_bool, + 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, + [48145] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, + sym_val_number, + STATE(1604), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2868), 1, + sym__expression, + STATE(2888), 1, + sym_unquoted, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -171643,7 +185145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41515] = 32, + [48259] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171666,31 +185168,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1448), 1, + STATE(1605), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2592), 1, + STATE(2344), 1, + sym__var, + STATE(2775), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3504), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3706), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171715,13 +185217,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, + sym_val_bool, + 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, + [48379] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2912), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, + sym_val_number, + STATE(1606), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, + sym__var, + STATE(2910), 1, + sym_unquoted, + STATE(2911), 1, + sym__expression, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -171731,7 +185318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41635] = 32, + [48493] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171754,31 +185341,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1449), 1, + STATE(1607), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2591), 1, + STATE(2344), 1, + sym__var, + STATE(2740), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3506), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3557), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171803,12 +185390,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171819,84 +185406,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41755] = 32, - ACTIONS(31), 1, + [48613] = 32, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(245), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(255), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3173), 1, sym_identifier, - STATE(115), 1, + STATE(113), 1, sym_val_number, - STATE(1450), 1, + STATE(1608), 1, sym_comment, - STATE(2175), 1, + STATE(2259), 1, sym__var, - STATE(2178), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2578), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2589), 1, + STATE(2641), 1, sym__expression, - STATE(2612), 1, + STATE(2686), 1, sym_val_variable, - STATE(3508), 1, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3389), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(249), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2688), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171907,7 +185494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41875] = 32, + [48733] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -171930,31 +185517,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1451), 1, + STATE(1609), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2588), 1, + STATE(2344), 1, + sym__var, + STATE(2778), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3510), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3697), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -171979,12 +185566,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -171995,7 +185582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41995] = 32, + [48853] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -172018,31 +185605,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1452), 1, + STATE(1610), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2587), 1, + STATE(2344), 1, + sym__var, + STATE(2780), 1, sym__expression, - STATE(2612), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, sym_val_variable, - STATE(3512), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3693), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -172067,12 +185654,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -172083,85 +185670,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42115] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [48973] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, + anon_sym_DOLLAR, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3085), 1, - sym_identifier, - STATE(115), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1453), 1, - sym_comment, - STATE(2175), 1, + STATE(1142), 1, sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2578), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2586), 1, + STATE(1246), 1, sym__expression, - STATE(2612), 1, - sym_val_variable, - STATE(3521), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1247), 1, + sym_unquoted, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1611), 1, + sym_comment, + ACTIONS(2934), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2938), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2575), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1342), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -172171,7 +185755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42235] = 32, + [49087] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -172194,31 +185778,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1454), 1, + STATE(1612), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2535), 1, + STATE(2344), 1, + sym__var, + STATE(2737), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3341), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3553), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -172243,12 +185827,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -172259,7 +185843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42355] = 32, + [49207] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -172282,31 +185866,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, STATE(115), 1, sym_val_number, - STATE(1455), 1, + STATE(1613), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2533), 1, + STATE(2344), 1, + sym__var, + STATE(2800), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - STATE(2612), 1, + STATE(2838), 1, sym_val_variable, - STATE(3347), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3686), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -172331,12 +185915,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2575), 10, + STATE(2861), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -172347,80 +185931,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42475] = 30, - ACTIONS(147), 1, + [49327] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2691), 1, - sym_val_date, - ACTIONS(2701), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3289), 1, anon_sym_not, - ACTIONS(3125), 1, - sym_val_nothing, - STATE(126), 1, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1456), 1, + STATE(1614), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2700), 1, + STATE(2479), 1, + sym__var, + STATE(2880), 1, sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2703), 2, + STATE(2900), 1, + sym_unquoted, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3127), 2, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, anon_sym_true, anon_sym_false, - ACTIONS(2699), 3, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2695), 4, + STATE(2899), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2697), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2303), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -172432,82 +186016,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42590] = 30, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3129), 1, - sym_cmd_identifier, - ACTIONS(3131), 1, + [49441] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3141), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3145), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3147), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(3157), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(3159), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(124), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1457), 1, + STATE(1615), 1, sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2302), 1, + STATE(2344), 1, + sym__var, + STATE(2805), 1, sym__expression, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2319), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, sym__str_double_quotes, - ACTIONS(3143), 2, + STATE(3679), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3161), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3155), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3151), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(3153), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2343), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2317), 11, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -172517,165 +186104,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42705] = 30, - ACTIONS(147), 1, + [49561] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2691), 1, - sym_val_date, - ACTIONS(2701), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3289), 1, anon_sym_not, - ACTIONS(3125), 1, - sym_val_nothing, - ACTIONS(3167), 1, - sym_identifier, - STATE(126), 1, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1458), 1, + STATE(1616), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2706), 1, + STATE(2479), 1, + sym__var, + STATE(2885), 1, + sym_unquoted, + STATE(2890), 1, sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2703), 2, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3127), 2, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, anon_sym_true, anon_sym_false, - ACTIONS(2699), 3, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2695), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2697), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2283), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2303), 11, - sym_val_bool, - sym_val_variable, - 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, - [42820] = 30, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, - anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, - anon_sym_DASH, - ACTIONS(2679), 1, - anon_sym_LBRACE, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2691), 1, - sym_val_date, - ACTIONS(2701), 1, - anon_sym_DQUOTE, - ACTIONS(2705), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_not, - ACTIONS(3125), 1, - sym_val_nothing, - ACTIONS(3169), 1, - sym_identifier, - STATE(126), 1, - sym_val_number, - STATE(1459), 1, - sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, - sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2708), 1, - sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2703), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3127), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2699), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2695), 4, + ACTIONS(2900), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2697), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2303), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -172687,80 +186189,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42935] = 30, - ACTIONS(147), 1, + [49675] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2691), 1, - sym_val_date, - ACTIONS(2701), 1, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_not, - ACTIONS(3125), 1, - sym_val_nothing, - ACTIONS(3171), 1, - sym_identifier, - STATE(126), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1460), 1, - sym_comment, - STATE(1991), 1, + STATE(1142), 1, sym__var, - STATE(2001), 1, - sym_expr_parenthesized, - STATE(2272), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, - sym__inter_double_quotes, - STATE(2704), 1, + STATE(1244), 1, sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2703), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3127), 2, + STATE(1245), 1, + sym_unquoted, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1617), 1, + sym_comment, + ACTIONS(2934), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2699), 3, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2695), 4, + STATE(1260), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2938), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2697), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2303), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -172772,77 +186274,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43050] = 28, - ACTIONS(147), 1, + [49789] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, + ACTIONS(3289), 1, anon_sym_not, - STATE(128), 1, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1461), 1, + STATE(1618), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2479), 1, + sym__var, + STATE(2876), 1, + sym_unquoted, + STATE(2883), 1, + sym__expression, + STATE(2915), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2917), 1, sym__inter_single_quotes, - STATE(2441), 1, - sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(3291), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3293), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -172854,7 +186359,9 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43160] = 28, + [49903] = 29, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -172863,68 +186370,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, + anon_sym_DASHinf, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, STATE(129), 1, sym_val_number, - STATE(1462), 1, + STATE(1619), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2546), 1, + STATE(2344), 1, + sym__var, + STATE(2803), 1, + sym_unquoted, + STATE(2806), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2583), 1, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3179), 2, - anon_sym_true, - anon_sym_false, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2579), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(87), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -172936,79 +186444,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43270] = 28, - ACTIONS(147), 1, + [50017] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(238), 1, + STATE(1620), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(375), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(386), 1, + STATE(2640), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(407), 1, - sym__expression, - STATE(1463), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(3399), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173018,159 +186532,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43380] = 28, - ACTIONS(147), 1, + [50137] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1137), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(1139), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, - anon_sym_LBRACK, - ACTIONS(3183), 1, - anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(238), 1, + STATE(1142), 1, sym__var, - STATE(375), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, + STATE(1242), 1, + sym__expression, + STATE(1243), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(404), 1, + STATE(1339), 1, sym__inter_double_quotes, - STATE(406), 1, - sym__expression, - STATE(1464), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1621), 1, sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3193), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, - sym_val_bool, - sym_val_variable, - 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, - [43490] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, - anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, - anon_sym_DASH, - ACTIONS(3139), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, - anon_sym_DQUOTE, - ACTIONS(3163), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, - sym_val_number, - STATE(1465), 1, - sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, - sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2383), 1, - sym__expression, - ACTIONS(3143), 2, + ACTIONS(2932), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -173182,79 +186617,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43600] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, + [50251] = 32, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1466), 1, + STATE(1622), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2290), 1, - sym__expression, - STATE(2306), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2825), 1, + sym__expression, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3664), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173264,77 +186705,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43710] = 28, - ACTIONS(147), 1, + [50371] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1183), 1, + anon_sym_DOLLAR, ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1467), 1, + STATE(1623), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2288), 1, + STATE(2344), 1, + sym__var, + STATE(2801), 1, sym__expression, - STATE(2306), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2849), 1, + sym_unquoted, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -173346,79 +186790,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43820] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, + [50485] = 32, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1468), 1, + STATE(1624), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2287), 1, - sym__expression, - STATE(2306), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(2858), 1, + sym__expression, + STATE(3677), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173428,77 +186878,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43930] = 28, - ACTIONS(147), 1, + [50605] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(2878), 1, + anon_sym_LBRACK, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, - anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(2902), 1, + anon_sym_DASHinf, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(3289), 1, + anon_sym_not, + ACTIONS(3295), 1, + aux_sym_unquoted_token1, + STATE(131), 1, sym_val_number, - STATE(1469), 1, + STATE(1625), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2286), 1, + STATE(2479), 1, + sym__var, + STATE(2869), 1, + sym_unquoted, + STATE(2873), 1, sym__expression, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, + STATE(2915), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3291), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(3293), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(2894), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(2900), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -173510,79 +186963,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44040] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, + [50719] = 32, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1470), 1, + STATE(1626), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2285), 1, - sym__expression, - STATE(2306), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2837), 1, + sym__expression, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3675), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173592,79 +187051,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44150] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, + [50839] = 32, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1471), 1, + STATE(1627), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2284), 1, - sym__expression, - STATE(2306), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2836), 1, + sym__expression, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3674), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173674,77 +187139,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44260] = 28, - ACTIONS(147), 1, + [50959] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1183), 1, + anon_sym_DOLLAR, ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1472), 1, + STATE(1628), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2301), 1, + STATE(2344), 1, + sym__var, + STATE(2796), 1, + sym_unquoted, + STATE(2797), 1, sym__expression, - STATE(2306), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -173756,77 +187224,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44370] = 28, - ACTIONS(147), 1, + [51073] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1183), 1, + anon_sym_DOLLAR, ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1473), 1, + STATE(1629), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2281), 1, + STATE(2344), 1, + sym__var, + STATE(2794), 1, + sym_unquoted, + STATE(2795), 1, sym__expression, - STATE(2306), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -173838,79 +187309,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44480] = 28, - ACTIONS(147), 1, + [51187] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1474), 1, + STATE(1630), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2280), 1, + STATE(2639), 1, sym__expression, - STATE(2306), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(3403), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -173920,79 +187397,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44590] = 28, - ACTIONS(147), 1, + [51307] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1475), 1, + STATE(1631), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2279), 1, + STATE(2638), 1, sym__expression, - STATE(2306), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(3404), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -174002,79 +187485,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44700] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2673), 1, + [51427] = 32, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1476), 1, + STATE(1632), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2272), 1, - sym__str_double_quotes, - STATE(2277), 1, - sym__expression, - STATE(2306), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2835), 1, + sym__expression, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3673), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2693), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2697), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2303), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -174084,77 +187573,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44810] = 28, - ACTIONS(147), 1, + [51547] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1477), 1, + STATE(1633), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2274), 1, + STATE(2647), 1, sym__expression, - STATE(2306), 1, + STATE(2648), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174166,77 +187658,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44920] = 28, - ACTIONS(147), 1, + [51661] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1478), 1, + STATE(1634), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2273), 1, - sym__expression, - STATE(2306), 1, + STATE(2650), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2693), 1, + sym__expression, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174248,77 +187743,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45030] = 28, - ACTIONS(147), 1, + [51775] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1479), 1, + STATE(1635), 1, sym_comment, - STATE(2276), 1, + STATE(2259), 1, sym__var, - STATE(2278), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2293), 1, - sym__expression, - STATE(2668), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2651), 1, + sym__expression, + STATE(2652), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174330,77 +187828,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45140] = 28, - ACTIONS(147), 1, + [51889] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1480), 1, + STATE(1636), 1, sym_comment, - STATE(2276), 1, + STATE(2259), 1, sym__var, - STATE(2278), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2294), 1, - sym__expression, - STATE(2668), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2653), 1, + sym__expression, + STATE(2655), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174412,77 +187913,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45250] = 28, - ACTIONS(147), 1, + [52003] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1481), 1, + STATE(1637), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2382), 1, + STATE(2656), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2657), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174494,77 +187998,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45360] = 28, - ACTIONS(147), 1, + [52117] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1482), 1, + STATE(1638), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2381), 1, + STATE(2658), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2659), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174576,77 +188083,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45470] = 28, - ACTIONS(147), 1, + [52231] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1483), 1, + STATE(1639), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2380), 1, - sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2660), 1, + sym__expression, + STATE(2661), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174658,77 +188168,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45580] = 28, - ACTIONS(147), 1, + [52345] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1484), 1, + STATE(1640), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2379), 1, + STATE(2662), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2663), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174740,77 +188253,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45690] = 28, - ACTIONS(147), 1, + [52459] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1485), 1, + STATE(1641), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(2664), 1, + sym__expression, + STATE(2665), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2702), 1, - sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174822,77 +188338,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45800] = 28, - ACTIONS(147), 1, + [52573] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1486), 1, + STATE(1642), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(2666), 1, + sym__expression, + STATE(2667), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2701), 1, - sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174904,77 +188423,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45910] = 28, - ACTIONS(147), 1, + [52687] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1487), 1, + STATE(1643), 1, sym_comment, - STATE(1991), 1, + STATE(2259), 1, sym__var, - STATE(2001), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(2668), 1, + sym__expression, + STATE(2669), 1, + sym_unquoted, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2699), 1, - sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -174986,77 +188508,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46020] = 28, - ACTIONS(147), 1, + [52801] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1488), 1, + STATE(1644), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2378), 1, + STATE(2671), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2672), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175068,77 +188593,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46130] = 28, - ACTIONS(147), 1, + [52915] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(251), 1, + anon_sym_DASHinf, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_unquoted_token1, + STATE(128), 1, sym_val_number, - STATE(1489), 1, + STATE(1645), 1, sym_comment, - STATE(1977), 1, + STATE(2259), 1, sym__var, - STATE(2007), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym__inter_single_quotes, - STATE(2319), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2377), 1, + STATE(2673), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(2674), 1, + sym_unquoted, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + ACTIONS(245), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(243), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(2630), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(249), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(2688), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175150,77 +188678,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46240] = 28, - ACTIONS(147), 1, + [53029] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, + STATE(1646), 1, + sym_comment, + STATE(2323), 1, sym_expr_parenthesized, - STATE(330), 1, + STATE(2344), 1, + sym__var, + STATE(2789), 1, + sym_unquoted, + STATE(2791), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(337), 1, + STATE(2841), 1, sym__inter_double_quotes, - STATE(351), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(400), 1, - sym__expression, - STATE(1490), 1, - sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175232,77 +188763,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46350] = 28, - ACTIONS(147), 1, + [53143] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1491), 1, - sym_comment, - STATE(1977), 1, + STATE(1142), 1, sym__var, - STATE(2007), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1240), 1, + sym__expression, + STATE(1241), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(2311), 1, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2312), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2376), 1, - sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(1647), 1, + sym_comment, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175314,77 +188848,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46460] = 28, - ACTIONS(147), 1, + [53257] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(2928), 1, + anon_sym_not, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1492), 1, - sym_comment, - STATE(1977), 1, + STATE(1142), 1, sym__var, - STATE(2007), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1238), 1, + sym__expression, + STATE(1239), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(2311), 1, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2312), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2375), 1, - sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, + STATE(1648), 1, + sym_comment, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3153), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2317), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175396,79 +188933,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46570] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3131), 1, + [53371] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1493), 1, + STATE(1649), 1, sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2374), 1, + STATE(2833), 1, sym__expression, - ACTIONS(3143), 2, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3672), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3153), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2317), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175478,79 +189021,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46680] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [53491] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1494), 1, + STATE(1650), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2669), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2830), 1, sym__expression, - STATE(2678), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3671), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175560,77 +189109,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46790] = 28, - ACTIONS(147), 1, + [53611] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2884), 1, - anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1495), 1, - sym_comment, - STATE(2276), 1, + STATE(224), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2668), 1, + STATE(423), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(424), 1, sym__inter_single_quotes, - STATE(2685), 1, + STATE(425), 1, + sym__inter_double_quotes, + STATE(446), 1, + sym_unquoted, + STATE(449), 1, sym__expression, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1651), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -175642,79 +189194,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46900] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [53725] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1496), 1, + STATE(1652), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2654), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2828), 1, sym__expression, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3668), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175724,79 +189282,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47010] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3131), 1, + [53845] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1497), 1, + STATE(1653), 1, sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, + STATE(2344), 1, + sym__var, + STATE(2757), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2319), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, sym__str_double_quotes, - STATE(2385), 1, - sym__expression, - ACTIONS(3143), 2, + STATE(3747), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3153), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2317), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175806,79 +189370,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47120] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3131), 1, + [53965] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1498), 1, + STATE(1654), 1, sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2319), 1, - sym__str_double_quotes, - STATE(2384), 1, + STATE(2827), 1, sym__expression, - ACTIONS(3143), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3667), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3153), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2317), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175888,79 +189458,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47230] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [54085] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1499), 1, + STATE(1655), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2689), 1, + STATE(2826), 1, sym__expression, - ACTIONS(2888), 2, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3665), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -175970,79 +189546,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47340] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + [54205] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(238), 1, + STATE(1656), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(375), 1, - sym__str_double_quotes, - STATE(386), 1, + STATE(2804), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(409), 1, - sym__expression, - STATE(1500), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3591), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176052,77 +189634,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47450] = 28, - ACTIONS(147), 1, + [54325] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1501), 1, + STATE(1657), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2668), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(2498), 1, sym__inter_single_quotes, - STATE(2687), 1, + STATE(2526), 1, sym__expression, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2527), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -176134,79 +189719,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47560] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [54439] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1502), 1, + STATE(1658), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - STATE(2691), 1, + STATE(2344), 1, + sym__var, + STATE(2822), 1, sym__expression, - ACTIONS(2888), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3663), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176216,77 +189807,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47670] = 28, - ACTIONS(147), 1, + [54559] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(1111), 1, anon_sym_DASH, - ACTIONS(2884), 1, - anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(1115), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3299), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_DASHinf, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3315), 1, + aux_sym_unquoted_token1, + STATE(6), 1, sym_val_number, - STATE(1503), 1, - sym_comment, - STATE(2276), 1, + STATE(183), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2668), 1, + STATE(337), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(372), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(373), 1, sym__inter_single_quotes, - STATE(2692), 1, + STATE(388), 1, + sym_unquoted, + STATE(389), 1, sym__expression, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(393), 1, + sym_expr_parenthesized, + STATE(1659), 1, + sym_comment, + ACTIONS(1119), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(1121), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3309), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(1117), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(1123), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(377), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -176298,77 +189892,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47780] = 28, - ACTIONS(147), 1, + [54673] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1504), 1, + STATE(1660), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2331), 1, + STATE(2497), 1, + sym__inter_double_quotes, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2528), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(2529), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -176380,79 +189977,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47890] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [54787] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1505), 1, + STATE(1661), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - STATE(2693), 1, + STATE(2344), 1, + sym__var, + STATE(2753), 1, sym__expression, - ACTIONS(2888), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3620), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176462,77 +190065,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48000] = 28, - ACTIONS(147), 1, + [54907] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1506), 1, + STATE(1662), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2668), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(2498), 1, sym__inter_single_quotes, - STATE(2694), 1, + STATE(2530), 1, sym__expression, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2531), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -176544,79 +190150,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48110] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + [55021] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1507), 1, + STATE(1663), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2242), 1, + STATE(2344), 1, + sym__var, + STATE(2735), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2347), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(3621), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176626,79 +190238,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48220] = 28, - ACTIONS(147), 1, + [55141] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1508), 1, + STATE(1664), 1, sym_comment, - STATE(2276), 1, + STATE(2259), 1, sym__var, - STATE(2278), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2668), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - STATE(2697), 1, + STATE(2637), 1, sym__expression, - ACTIONS(2888), 2, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3425), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176708,77 +190326,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48330] = 28, - ACTIONS(147), 1, + [55261] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1509), 1, + STATE(1665), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2355), 1, + STATE(2497), 1, + sym__inter_double_quotes, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2532), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(2533), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -176790,79 +190411,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48440] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [55375] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1510), 1, + STATE(1666), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2657), 1, + STATE(2344), 1, + sym__var, + STATE(2818), 1, sym__expression, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2824), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3660), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176872,79 +190499,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48550] = 28, - ACTIONS(147), 1, + [55495] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1511), 1, + STATE(1667), 1, sym_comment, - STATE(1969), 1, + STATE(2259), 1, sym__var, - STATE(1981), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2357), 1, + STATE(2635), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3433), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -176954,79 +190587,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48660] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + [55615] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1512), 1, + STATE(1668), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2242), 1, + STATE(2344), 1, + sym__var, + STATE(2817), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2387), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(3651), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177036,79 +190675,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48770] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + [55735] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1513), 1, + STATE(1669), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2242), 1, + STATE(2344), 1, + sym__var, + STATE(2810), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2346), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(3650), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177118,79 +190763,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48880] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + [55855] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1514), 1, + STATE(1670), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2242), 1, + STATE(2344), 1, + sym__var, + STATE(2749), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2340), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(3646), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177200,77 +190851,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48990] = 28, - ACTIONS(147), 1, + [55975] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, + ACTIONS(2575), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, - anon_sym_LBRACK, - ACTIONS(3235), 1, - anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1515), 1, - sym_comment, - STATE(1969), 1, + STATE(1141), 1, sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, sym__str_double_quotes, - STATE(2339), 1, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1345), 1, + sym_unquoted, + STATE(1347), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(1671), 1, + sym_comment, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -177282,79 +190936,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49100] = 28, - ACTIONS(147), 1, + [56089] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1516), 1, + STATE(1672), 1, sym_comment, - STATE(1969), 1, + STATE(2259), 1, sym__var, - STATE(1981), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2315), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2338), 1, + STATE(2634), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3434), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177364,77 +191024,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49210] = 28, - ACTIONS(147), 1, + [56209] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, - anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1517), 1, + STATE(1673), 1, sym_comment, - STATE(1969), 1, + STATE(2077), 1, sym__var, - STATE(1981), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2242), 1, - sym__inter_single_quotes, - STATE(2243), 1, + STATE(2290), 1, + sym_unquoted, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2337), 1, + STATE(2294), 1, sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -177446,77 +191109,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49320] = 28, - ACTIONS(147), 1, + [56323] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1058), 1, - sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(1674), 1, + sym_comment, + STATE(2323), 1, sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1236), 1, + STATE(2344), 1, + sym__var, + STATE(2784), 1, + sym_unquoted, + STATE(2785), 1, sym__expression, - STATE(1518), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -177528,77 +191194,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49430] = 28, - ACTIONS(147), 1, + [56437] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1058), 1, + STATE(224), 1, sym__var, - STATE(1192), 1, + STATE(423), 1, sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(424), 1, sym__inter_single_quotes, - STATE(1237), 1, + STATE(425), 1, + sym__inter_double_quotes, + STATE(440), 1, + sym_unquoted, + STATE(442), 1, sym__expression, - STATE(1519), 1, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1675), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -177610,79 +191279,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49540] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - anon_sym_DOLLAR, - ACTIONS(2749), 1, - anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + [56551] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1520), 1, + STATE(1676), 1, sym_comment, - STATE(1969), 1, - sym__var, - STATE(1981), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2242), 1, + STATE(2344), 1, + sym__var, + STATE(2733), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2315), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2336), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, + STATE(3623), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3245), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3247), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2240), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177692,79 +191367,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49650] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, + [56671] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1058), 1, - sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(1677), 1, + sym_comment, + STATE(2323), 1, sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1238), 1, + STATE(2344), 1, + sym__var, + STATE(2732), 1, sym__expression, - STATE(1521), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3726), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3109), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2577), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1234), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177774,79 +191455,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49760] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [56791] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1522), 1, + STATE(1678), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2362), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2843), 1, sym__expression, - STATE(2668), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, - sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(3732), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -177856,77 +191543,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49870] = 28, - ACTIONS(147), 1, + [56911] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, - anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1523), 1, - sym_comment, - STATE(1969), 1, + STATE(224), 1, sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2242), 1, + STATE(397), 1, + sym__expression, + STATE(398), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2333), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1679), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -177938,77 +191628,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49980] = 28, - ACTIONS(147), 1, + [57025] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1524), 1, - sym_comment, - STATE(2276), 1, + STATE(1141), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(1261), 1, sym__inter_single_quotes, - STATE(2696), 1, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1343), 1, + sym_unquoted, + STATE(1344), 1, sym__expression, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(1680), 1, + sym_comment, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178020,77 +191713,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50090] = 28, - ACTIONS(147), 1, + [57139] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2745), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2749), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2755), 1, - anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3235), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, - anon_sym_not, - ACTIONS(3249), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3253), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3255), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(119), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1525), 1, - sym_comment, - STATE(1969), 1, + STATE(224), 1, sym__var, - STATE(1981), 1, - sym_expr_parenthesized, - STATE(2242), 1, + STATE(399), 1, + sym__expression, + STATE(400), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2315), 1, - sym__str_double_quotes, - STATE(2332), 1, - sym__expression, - ACTIONS(2761), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3243), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1681), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3245), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3251), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2763), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2365), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3247), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2240), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178102,79 +191798,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50200] = 28, - ACTIONS(147), 1, + [57253] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3273), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, STATE(113), 1, sym_val_number, - STATE(1526), 1, + STATE(1682), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2259), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2032), 1, - sym__expression, - STATE(2058), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - ACTIONS(3271), 2, + STATE(2633), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3438), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3277), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3281), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2030), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178184,79 +191886,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50310] = 28, - ACTIONS(147), 1, + [57373] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1527), 1, + STATE(1683), 1, sym_comment, - STATE(2276), 1, + STATE(2259), 1, sym__var, - STATE(2278), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2352), 1, - sym__expression, - STATE(2668), 1, + STATE(2486), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2632), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3439), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178266,79 +191974,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50420] = 28, - ACTIONS(147), 1, + [57493] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1528), 1, + STATE(1684), 1, sym_comment, - STATE(1935), 1, + STATE(2259), 1, sym__var, - STATE(1941), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2180), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2631), 1, sym__expression, - STATE(2202), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3440), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178348,79 +192062,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50530] = 28, - ACTIONS(147), 1, + [57613] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1529), 1, + STATE(1685), 1, sym_comment, - STATE(1935), 1, + STATE(2259), 1, sym__var, - STATE(1941), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2181), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2629), 1, sym__expression, - STATE(2202), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3441), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178430,77 +192150,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50640] = 28, - ACTIONS(147), 1, + [57733] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1530), 1, - sym_comment, - STATE(1935), 1, + STATE(224), 1, sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2182), 1, + STATE(401), 1, sym__expression, - STATE(2202), 1, + STATE(402), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1686), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178512,77 +192235,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50750] = 28, - ACTIONS(147), 1, + [57847] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(3151), 1, + anon_sym_LBRACE, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1058), 1, + STATE(1141), 1, sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(1261), 1, sym__inter_single_quotes, - STATE(1240), 1, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1336), 1, + sym_unquoted, + STATE(1337), 1, sym__expression, - STATE(1531), 1, + STATE(1687), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178594,77 +192320,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50860] = 28, - ACTIONS(147), 1, + [57961] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1532), 1, - sym_comment, - STATE(1935), 1, + STATE(224), 1, sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2186), 1, + STATE(403), 1, sym__expression, - STATE(2202), 1, + STATE(404), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1688), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178676,79 +192405,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50970] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + [58075] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1533), 1, + STATE(1689), 1, sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2187), 1, + STATE(2344), 1, + sym__var, + STATE(2819), 1, sym__expression, - STATE(2202), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2857), 1, sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3738), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178758,79 +192493,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51080] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + [58195] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1534), 1, + STATE(1690), 1, sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2190), 1, + STATE(2344), 1, + sym__var, + STATE(2813), 1, sym__expression, - STATE(2202), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2857), 1, sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3741), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -178840,77 +192581,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51190] = 28, - ACTIONS(147), 1, + [58315] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, + ACTIONS(1151), 1, + anon_sym_not, ACTIONS(3319), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(3321), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(484), 1, + STATE(224), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__inter_single_quotes, - STATE(623), 1, + STATE(405), 1, + sym__expression, + STATE(406), 1, + sym_unquoted, + STATE(423), 1, sym__str_double_quotes, - STATE(636), 1, + STATE(424), 1, + sym__inter_single_quotes, + STATE(425), 1, + sym__inter_double_quotes, + STATE(451), 1, sym_expr_parenthesized, - STATE(657), 1, - sym__expression, - STATE(1535), 1, + STATE(1691), 1, sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -178922,77 +192666,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51300] = 28, - ACTIONS(147), 1, + [58429] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2575), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, - anon_sym_LBRACK, - ACTIONS(3295), 1, - anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1536), 1, - sym_comment, - STATE(1935), 1, + STATE(1141), 1, sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2158), 1, - sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(1321), 1, + sym_unquoted, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1335), 1, + sym__expression, + STATE(1692), 1, + sym_comment, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179004,77 +192751,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51410] = 28, - ACTIONS(147), 1, + [58543] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1537), 1, + STATE(1693), 1, sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2196), 1, - sym__expression, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2212), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(2497), 1, + sym__inter_double_quotes, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2534), 1, + sym__expression, + STATE(2535), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179086,79 +192836,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51520] = 28, - ACTIONS(147), 1, + [58657] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1538), 1, + STATE(1694), 1, sym_comment, - STATE(1935), 1, + STATE(2259), 1, sym__var, - STATE(1941), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(2197), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2628), 1, sym__expression, - STATE(2202), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3442), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -179168,77 +192924,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51630] = 28, - ACTIONS(147), 1, + [58777] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, - anon_sym_LBRACK, - ACTIONS(3295), 1, - anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1539), 1, - sym_comment, - STATE(1935), 1, + STATE(1142), 1, sym__var, - STATE(1941), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1236), 1, + sym__expression, + STATE(1237), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2204), 1, - sym__expression, - STATE(2212), 1, - sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym_comment, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179250,77 +193009,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51740] = 28, - ACTIONS(147), 1, + [58891] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1540), 1, - sym_comment, - STATE(1935), 1, + STATE(224), 1, sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2202), 1, - sym__inter_single_quotes, - STATE(2203), 1, - sym__inter_double_quotes, - STATE(2205), 1, + STATE(407), 1, sym__expression, - STATE(2212), 1, + STATE(408), 1, + sym_unquoted, + STATE(423), 1, sym__str_double_quotes, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(424), 1, + sym__inter_single_quotes, + STATE(425), 1, + sym__inter_double_quotes, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1696), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179332,77 +193094,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51850] = 28, - ACTIONS(147), 1, + [59005] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2595), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(3323), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1541), 1, - sym_comment, - STATE(1935), 1, + STATE(224), 1, sym__var, - STATE(1941), 1, - sym_expr_parenthesized, - STATE(2202), 1, + STATE(409), 1, + sym__expression, + STATE(410), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2212), 1, - sym__str_double_quotes, - STATE(2214), 1, - sym__expression, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1697), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3305), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3307), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2185), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179414,77 +193179,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51960] = 28, - ACTIONS(147), 1, + [59119] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, - anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(2679), 1, - anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1542), 1, - sym_comment, - STATE(1991), 1, + STATE(224), 1, sym__var, - STATE(2001), 1, - sym_expr_parenthesized, - STATE(2272), 1, + STATE(411), 1, + sym__expression, + STATE(413), 1, + sym_unquoted, + STATE(423), 1, sym__str_double_quotes, - STATE(2306), 1, + STATE(424), 1, sym__inter_single_quotes, - STATE(2309), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(2709), 1, - sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1698), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179496,79 +193264,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52070] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DOLLAR, - ACTIONS(2595), 1, - anon_sym_DASH, - ACTIONS(2601), 1, - anon_sym_DOT_DOT, - ACTIONS(3293), 1, + [59233] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3295), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3297), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3309), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3313), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(117), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1543), 1, + STATE(1699), 1, sym_comment, - STATE(1935), 1, - sym__var, - STATE(1941), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2202), 1, + STATE(2344), 1, + sym__var, + STATE(2744), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2203), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(2212), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(2215), 1, - sym__expression, - ACTIONS(2607), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3301), 2, + STATE(3649), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3305), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2609), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3307), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2185), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -179578,77 +193352,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52180] = 28, - ACTIONS(147), 1, + [59353] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1544), 1, + STATE(1700), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2668), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2677), 1, - sym__expression, - STATE(2678), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(2498), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2536), 1, + sym__expression, + STATE(2537), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179660,79 +193437,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52290] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3131), 1, + [59467] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3133), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3139), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3163), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3205), 1, - anon_sym_not, - STATE(124), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1545), 1, + STATE(1701), 1, sym_comment, - STATE(1977), 1, - sym__var, - STATE(2007), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2311), 1, - sym__inter_double_quotes, - STATE(2312), 1, + STATE(2344), 1, + sym__var, + STATE(2781), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2319), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, sym__str_double_quotes, - STATE(2386), 1, - sym__expression, - ACTIONS(3143), 2, + STATE(3734), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3157), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3207), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2343), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3153), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2317), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -179742,77 +193525,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52400] = 28, - ACTIONS(147), 1, + [59587] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(3337), 1, + anon_sym_LBRACK, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1546), 1, + STATE(1702), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2707), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2538), 1, sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2539), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179824,77 +193610,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52510] = 28, - ACTIONS(147), 1, + [59701] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2605), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, + anon_sym_LBRACE, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(133), 1, + STATE(1703), 1, + sym_comment, + STATE(2077), 1, sym__var, - STATE(203), 1, - sym__expression, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, - sym__inter_double_quotes, - STATE(236), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(251), 1, + STATE(2293), 1, + sym__inter_double_quotes, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2310), 1, + sym_unquoted, + STATE(2313), 1, + sym__expression, + STATE(2358), 1, sym__str_double_quotes, - STATE(1547), 1, - sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179906,77 +193695,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52620] = 28, - ACTIONS(147), 1, + [59815] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2673), 1, + ACTIONS(3337), 1, + anon_sym_LBRACK, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(2675), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(2689), 1, - anon_sym_DOT_DOT, - ACTIONS(2701), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(2705), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2707), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - STATE(126), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1548), 1, + STATE(1704), 1, sym_comment, - STATE(1991), 1, - sym__var, - STATE(2001), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(2272), 1, + STATE(2140), 1, + sym__var, + STATE(2381), 1, sym__str_double_quotes, - STATE(2306), 1, - sym__inter_single_quotes, - STATE(2309), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2710), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2540), 1, sym__expression, - ACTIONS(2687), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, + STATE(2541), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(2693), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2703), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2699), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2283), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2697), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2303), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -179988,77 +193780,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52730] = 28, - ACTIONS(147), 1, + [59929] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, - anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(3267), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3175), 1, + anon_sym_LBRACK, + ACTIONS(3177), 1, + anon_sym_LPAREN, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1549), 1, + STATE(1705), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2136), 1, sym__var, - STATE(2012), 1, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2021), 1, - sym__expression, - STATE(2058), 1, + STATE(2501), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(2524), 1, + sym_unquoted, + STATE(2525), 1, + sym__expression, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180070,77 +193865,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52840] = 28, - ACTIONS(147), 1, + [60043] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, - anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(3267), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1550), 1, - sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(224), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2022), 1, + STATE(414), 1, sym__expression, - STATE(2058), 1, + STATE(415), 1, + sym_unquoted, + STATE(423), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(424), 1, + sym__inter_single_quotes, + STATE(425), 1, + sym__inter_double_quotes, + STATE(451), 1, + sym_expr_parenthesized, + STATE(1706), 1, + sym_comment, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180152,77 +193950,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52950] = 28, - ACTIONS(147), 1, + [60157] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(133), 1, + STATE(224), 1, sym__var, - STATE(201), 1, + STATE(416), 1, sym__expression, - STATE(217), 1, + STATE(417), 1, + sym_unquoted, + STATE(423), 1, + sym__str_double_quotes, + STATE(424), 1, sym__inter_single_quotes, - STATE(229), 1, + STATE(425), 1, sym__inter_double_quotes, - STATE(236), 1, + STATE(451), 1, sym_expr_parenthesized, - STATE(251), 1, - sym__str_double_quotes, - STATE(1551), 1, + STATE(1707), 1, sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180234,77 +194035,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53060] = 28, - ACTIONS(147), 1, + [60271] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(133), 1, + STATE(1142), 1, sym__var, - STATE(200), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1234), 1, sym__expression, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, - sym__inter_double_quotes, - STATE(236), 1, + STATE(1235), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(251), 1, - sym__str_double_quotes, - STATE(1552), 1, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1708), 1, sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180316,77 +194120,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53170] = 28, - ACTIONS(147), 1, + [60385] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(238), 1, + STATE(1709), 1, + sym_comment, + STATE(2109), 1, + sym_expr_parenthesized, + STATE(2140), 1, sym__var, - STATE(375), 1, + STATE(2381), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(411), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2542), 1, sym__expression, - STATE(1553), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, + STATE(2543), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3193), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3195), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(369), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180398,77 +194205,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53280] = 28, - ACTIONS(147), 1, + [60499] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1137), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(1139), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, - anon_sym_LBRACK, - ACTIONS(3183), 1, - anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(238), 1, + STATE(1142), 1, sym__var, - STATE(366), 1, - sym__expression, - STATE(375), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, + STATE(1232), 1, + sym__expression, + STATE(1233), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(404), 1, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1554), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1710), 1, sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3193), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3195), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(369), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180480,77 +194290,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53390] = 28, - ACTIONS(147), 1, + [60613] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(238), 1, + STATE(1711), 1, + sym_comment, + STATE(2109), 1, + sym_expr_parenthesized, + STATE(2140), 1, sym__var, - STATE(375), 1, + STATE(2381), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2497), 1, sym__inter_double_quotes, - STATE(418), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2544), 1, sym__expression, - STATE(1555), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, + STATE(2545), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3193), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3195), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(369), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180562,79 +194375,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53500] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + [60727] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(238), 1, + STATE(1712), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(375), 1, - sym__str_double_quotes, - STATE(386), 1, + STATE(2767), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(419), 1, - sym__expression, - STATE(1556), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3753), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -180644,79 +194463,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53610] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + [60847] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(238), 1, + STATE(1713), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(375), 1, - sym__str_double_quotes, - STATE(386), 1, + STATE(2731), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, sym__inter_double_quotes, - STATE(413), 1, - sym__expression, - STATE(1557), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3550), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -180726,79 +194551,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53720] = 28, - ACTIONS(147), 1, + [60967] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(238), 1, + STATE(1714), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(375), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(386), 1, + STATE(2583), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(412), 1, - sym__expression, - STATE(1558), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(3519), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -180808,77 +194639,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53830] = 28, - ACTIONS(147), 1, + [61087] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(133), 1, + STATE(1142), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(224), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1230), 1, sym__expression, - STATE(229), 1, - sym__inter_double_quotes, - STATE(236), 1, + STATE(1231), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(251), 1, - sym__str_double_quotes, - STATE(1559), 1, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1715), 1, sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180890,77 +194724,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53940] = 28, - ACTIONS(147), 1, + [61201] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, - anon_sym_DQUOTE, + anon_sym_not, + ACTIONS(2940), 1, + anon_sym_DASHinf, ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1057), 1, + STATE(1142), 1, sym__var, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, - sym__inter_double_quotes, - STATE(1194), 1, + STATE(1228), 1, sym__expression, - STATE(1214), 1, + STATE(1229), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(1560), 1, + STATE(1339), 1, + sym__inter_double_quotes, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1716), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -180972,79 +194809,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54050] = 28, - ACTIONS(147), 1, + [61315] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1058), 1, - sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(1717), 1, + sym_comment, + STATE(2259), 1, + sym__var, + STATE(2274), 1, sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1241), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2582), 1, sym__expression, - STATE(1561), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3520), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3109), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2577), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1234), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181054,79 +194897,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54160] = 28, - ACTIONS(147), 1, + [61435] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1718), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2581), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1195), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1562), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3521), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2936), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1144), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181136,79 +194985,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54270] = 28, - ACTIONS(147), 1, + [61555] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(238), 1, + STATE(1719), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(375), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(390), 1, + STATE(2580), 1, sym__expression, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1563), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(3522), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181218,79 +195073,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54380] = 28, - ACTIONS(147), 1, + [61675] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(238), 1, + STATE(1720), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(375), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(387), 1, + STATE(2579), 1, sym__expression, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1564), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(3523), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181300,79 +195161,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54490] = 28, - ACTIONS(147), 1, + [61795] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, - anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3183), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(201), 1, + anon_sym_DASH, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(238), 1, + STATE(1721), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(375), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(377), 1, + STATE(2578), 1, sym__expression, - STATE(386), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1565), 1, - sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, + STATE(3524), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(369), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181382,77 +195249,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54600] = 28, - ACTIONS(147), 1, + [61915] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(3153), 1, + anon_sym_not, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1057), 1, + STATE(1141), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1196), 1, - sym__expression, - STATE(1214), 1, + STATE(1261), 1, + sym__inter_single_quotes, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1297), 1, + sym_unquoted, + STATE(1322), 1, sym_expr_parenthesized, - STATE(1566), 1, + STATE(1349), 1, + sym__expression, + STATE(1722), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(3165), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -181464,77 +195334,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54710] = 28, - ACTIONS(147), 1, + [62029] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(1567), 1, - sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(1142), 1, sym__var, - STATE(2012), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(1226), 1, + sym__expression, + STATE(1227), 1, + sym_unquoted, + STATE(1259), 1, + sym_expr_parenthesized, + STATE(1339), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(1340), 1, sym__inter_single_quotes, - STATE(2023), 1, - sym__expression, - STATE(2058), 1, - sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(1723), 1, + sym_comment, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -181546,79 +195419,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54820] = 28, - ACTIONS(147), 1, + [62143] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3273), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, STATE(113), 1, sym_val_number, - STATE(1568), 1, + STATE(1724), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2259), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2025), 1, - sym__expression, - STATE(2058), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - ACTIONS(3271), 2, + STATE(2577), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3525), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3277), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3281), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2030), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181628,79 +195507,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54930] = 28, - ACTIONS(147), 1, + [62263] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1725), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2576), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1197), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1569), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3526), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2936), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1144), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181710,79 +195595,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55040] = 28, - ACTIONS(147), 1, + [62383] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1058), 1, + STATE(1726), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(2274), 1, sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1242), 1, + STATE(2486), 1, + sym__str_double_quotes, + STATE(2575), 1, sym__expression, - STATE(1570), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3479), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3109), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2577), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1234), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181792,79 +195683,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55150] = 28, - ACTIONS(147), 1, + [62503] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1727), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2624), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1198), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1571), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3528), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2936), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1144), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181874,79 +195771,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55260] = 28, - ACTIONS(147), 1, + [62623] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(193), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(239), 1, + anon_sym_not, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, + STATE(113), 1, sym_val_number, - STATE(1057), 1, + STATE(1728), 1, + sym_comment, + STATE(2259), 1, sym__var, - STATE(1080), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2691), 1, sym__inter_double_quotes, - STATE(1199), 1, + STATE(2703), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1572), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(3530), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(259), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2936), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(1144), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -181956,77 +195859,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55370] = 28, - ACTIONS(147), 1, + [62743] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(3151), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1573), 1, - sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(1141), 1, sym__var, - STATE(2012), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(1261), 1, sym__inter_single_quotes, - STATE(2031), 1, - sym__expression, - STATE(2058), 1, + STATE(1274), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(1309), 1, + sym_unquoted, + STATE(1310), 1, + sym__expression, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1729), 1, + sym_comment, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182038,77 +195944,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55480] = 28, - ACTIONS(147), 1, + [62857] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(133), 1, + STATE(1730), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(228), 1, + STATE(2782), 1, + sym_unquoted, + STATE(2783), 1, sym__expression, - STATE(229), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2841), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(251), 1, + STATE(2857), 1, sym__str_double_quotes, - STATE(1574), 1, - sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182120,77 +196029,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55590] = 28, - ACTIONS(147), 1, + [62971] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(3093), 1, + ACTIONS(2579), 1, + anon_sym_DASHinf, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(3151), 1, + anon_sym_LBRACE, + ACTIONS(3153), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3171), 1, + aux_sym_unquoted_token1, + STATE(14), 1, sym_val_number, - STATE(1058), 1, + STATE(1141), 1, sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(1261), 1, sym__inter_single_quotes, - STATE(1248), 1, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1298), 1, + sym_unquoted, + STATE(1308), 1, sym__expression, - STATE(1575), 1, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1731), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(3157), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(3159), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(3165), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(3155), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(2577), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182202,77 +196114,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55700] = 28, - ACTIONS(147), 1, + [63085] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, - anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(3267), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2605), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, + anon_sym_LBRACE, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1576), 1, + STATE(1732), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2077), 1, sym__var, - STATE(2012), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2033), 1, + STATE(2321), 1, + sym_unquoted, + STATE(2329), 1, sym__expression, - STATE(2058), 1, + STATE(2358), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182284,79 +196199,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55810] = 28, - ACTIONS(147), 1, + [63199] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3273), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, STATE(113), 1, sym_val_number, - STATE(1577), 1, + STATE(1733), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2259), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2034), 1, - sym__expression, - STATE(2058), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - ACTIONS(3271), 2, + STATE(2607), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3531), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3277), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3281), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2030), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -182366,79 +196287,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55920] = 28, - ACTIONS(147), 1, + [63319] = 32, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(191), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(193), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(201), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(239), 1, anon_sym_not, - ACTIONS(3273), 1, + ACTIONS(243), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(245), 1, + sym_val_nothing, + ACTIONS(255), 1, + sym_val_date, + ACTIONS(257), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(261), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(263), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR, + ACTIONS(3173), 1, + sym_identifier, STATE(113), 1, sym_val_number, - STATE(1578), 1, + STATE(1734), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(2259), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__expression, - STATE(2058), 1, + STATE(2274), 1, + sym_expr_parenthesized, + STATE(2486), 1, sym__str_double_quotes, - ACTIONS(3271), 2, + STATE(2626), 1, + sym__expression, + STATE(2686), 1, + sym_val_variable, + STATE(2690), 1, + sym__inter_single_quotes, + STATE(2691), 1, + sym__inter_double_quotes, + STATE(3527), 1, + sym__where_predicate, + ACTIONS(241), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3277), 2, + ACTIONS(247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(259), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(253), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3281), 6, + ACTIONS(249), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(251), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2030), 11, + STATE(2630), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2688), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -182448,77 +196375,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56030] = 28, - ACTIONS(147), 1, + [63439] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1137), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2918), 1, + anon_sym_LBRACK, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(1139), 1, + ACTIONS(2924), 1, anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, - anon_sym_LBRACK, - ACTIONS(3183), 1, - anon_sym_LPAREN, - ACTIONS(3185), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(2928), 1, anon_sym_not, - ACTIONS(3197), 1, + ACTIONS(2940), 1, + anon_sym_DASHinf, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3201), 1, + ACTIONS(2950), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, + ACTIONS(2952), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + STATE(16), 1, sym_val_number, - STATE(238), 1, + STATE(1142), 1, sym__var, - STATE(375), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(376), 1, - sym__expression, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, + STATE(1225), 1, + sym_unquoted, + STATE(1259), 1, sym_expr_parenthesized, - STATE(404), 1, + STATE(1271), 1, + sym__expression, + STATE(1339), 1, sym__inter_double_quotes, - STATE(1579), 1, + STATE(1340), 1, + sym__inter_single_quotes, + STATE(1735), 1, sym_comment, - ACTIONS(1151), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3189), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, + ACTIONS(2934), 2, sym_val_nothing, sym_val_date, - ACTIONS(3193), 2, + ACTIONS(2936), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + ACTIONS(2932), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2942), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, + STATE(1260), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3195), 6, + ACTIONS(2938), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(369), 11, + STATE(1342), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182530,77 +196460,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56140] = 28, - ACTIONS(147), 1, + [63553] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(1580), 1, + STATE(1736), 1, sym_comment, - STATE(1879), 1, + STATE(2109), 1, sym_expr_parenthesized, - STATE(1882), 1, + STATE(2140), 1, sym__var, - STATE(2012), 1, + STATE(2381), 1, + sym__str_double_quotes, + STATE(2497), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(2498), 1, sym__inter_single_quotes, - STATE(2036), 1, + STATE(2546), 1, sym__expression, - STATE(2058), 1, - sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(2547), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182612,77 +196545,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56250] = 28, - ACTIONS(147), 1, + [63667] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, + ACTIONS(1151), 1, + anon_sym_not, ACTIONS(3319), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(3321), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_DASHinf, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3335), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(484), 1, + STATE(224), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__inter_single_quotes, - STATE(623), 1, + STATE(418), 1, + sym__expression, + STATE(419), 1, + sym_unquoted, + STATE(423), 1, sym__str_double_quotes, - STATE(636), 1, + STATE(424), 1, + sym__inter_single_quotes, + STATE(425), 1, + sym__inter_double_quotes, + STATE(451), 1, sym_expr_parenthesized, - STATE(653), 1, - sym__expression, - STATE(1581), 1, + STATE(1737), 1, sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(1155), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(1157), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3329), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(1153), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(1159), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182694,77 +196630,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56360] = 28, - ACTIONS(147), 1, + [63781] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(133), 1, + STATE(1738), 1, + sym_comment, + STATE(2109), 1, + sym_expr_parenthesized, + STATE(2140), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(2381), 1, + sym__str_double_quotes, + STATE(2497), 1, sym__inter_double_quotes, - STATE(232), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2548), 1, sym__expression, - STATE(236), 1, - sym_expr_parenthesized, - STATE(251), 1, - sym__str_double_quotes, - STATE(1582), 1, - sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + STATE(2549), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182776,77 +196715,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56470] = 28, - ACTIONS(147), 1, + [63895] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1057), 1, + STATE(535), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(1200), 1, + STATE(679), 1, + sym__inter_single_quotes, + STATE(692), 1, + sym__str_double_quotes, + STATE(714), 1, sym__expression, - STATE(1214), 1, + STATE(715), 1, + sym_unquoted, + STATE(734), 1, sym_expr_parenthesized, - STATE(1583), 1, + STATE(1739), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(3381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182858,77 +196800,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56580] = 28, - ACTIONS(147), 1, + [64009] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, - anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(3267), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(1933), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1584), 1, - sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, + STATE(535), 1, sym__var, - STATE(2012), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(2013), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(2037), 1, - sym__expression, - STATE(2058), 1, + STATE(692), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + STATE(712), 1, + sym__expression, + STATE(713), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1740), 1, + sym_comment, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -182940,77 +196885,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56690] = 28, - ACTIONS(147), 1, + [64123] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, + anon_sym_LBRACK, + ACTIONS(3177), 1, + anon_sym_LPAREN, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1057), 1, + STATE(1741), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(2205), 1, + sym_expr_parenthesized, + STATE(2452), 1, sym__inter_double_quotes, - STATE(1201), 1, + STATE(2453), 1, + sym__inter_single_quotes, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2552), 1, + sym_unquoted, + STATE(2553), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1585), 1, - sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(3185), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183022,77 +196970,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56800] = 28, - ACTIONS(147), 1, + [64237] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, + anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1057), 1, + STATE(1742), 1, + sym_comment, + STATE(2077), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2293), 1, sym__inter_double_quotes, - STATE(1202), 1, + STATE(2295), 1, + sym__inter_single_quotes, + STATE(2348), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1586), 1, - sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + STATE(2350), 1, + sym_unquoted, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(3101), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183104,77 +197055,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56910] = 28, - ACTIONS(147), 1, + [64351] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DOLLAR, - ACTIONS(1923), 1, - anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3341), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, + anon_sym_DASH, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3357), 1, + anon_sym_DASHinf, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3369), 1, + aux_sym_unquoted_token1, + STATE(124), 1, sym_val_number, - STATE(484), 1, + STATE(1743), 1, + sym_comment, + STATE(2109), 1, + sym_expr_parenthesized, + STATE(2140), 1, sym__var, - STATE(617), 1, + STATE(2381), 1, + sym__str_double_quotes, + STATE(2497), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(2498), 1, sym__inter_single_quotes, - STATE(623), 1, - sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(659), 1, + STATE(2550), 1, sym__expression, - STATE(1587), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + STATE(2551), 1, + sym_unquoted, + ACTIONS(3351), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(3353), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(3349), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(2494), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(3355), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183186,77 +197140,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57020] = 28, - ACTIONS(147), 1, + [64465] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(484), 1, + STATE(1744), 1, + sym_comment, + STATE(2077), 1, sym__var, - STATE(617), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2293), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(623), 1, - sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(658), 1, + STATE(2352), 1, sym__expression, - STATE(1588), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + STATE(2355), 1, + sym_unquoted, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183268,77 +197225,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57130] = 28, - ACTIONS(147), 1, + [64579] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(3267), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3273), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3389), 1, + anon_sym_LBRACE, + STATE(121), 1, sym_val_number, - STATE(1589), 1, + STATE(1745), 1, sym_comment, - STATE(1879), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(1882), 1, + STATE(2177), 1, sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(2039), 1, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2842), 1, + sym_block, + STATE(2932), 1, sym__expression, - STATE(2058), 1, - sym__str_double_quotes, - ACTIONS(3271), 2, + STATE(3871), 1, + sym__match_expression, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, + ACTIONS(2779), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183350,77 +197311,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57240] = 28, - ACTIONS(147), 1, + [64695] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1109), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(1111), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(172), 1, + STATE(535), 1, sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(312), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(351), 1, + STATE(679), 1, + sym__inter_single_quotes, + STATE(692), 1, sym__str_double_quotes, - STATE(1590), 1, + STATE(710), 1, + sym__expression, + STATE(711), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1746), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183432,77 +197396,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57350] = 28, - ACTIONS(147), 1, + [64809] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(1933), 1, anon_sym_not, - ACTIONS(3355), 1, - anon_sym_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_DQUOTE, ACTIONS(3371), 1, - anon_sym_DOLLAR_SQUOTE, + anon_sym_LBRACK, ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, + anon_sym_DQUOTE, + ACTIONS(3383), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(133), 1, + STATE(535), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(233), 1, + STATE(679), 1, + sym__inter_single_quotes, + STATE(692), 1, + sym__str_double_quotes, + STATE(706), 1, sym__expression, - STATE(236), 1, + STATE(709), 1, + sym_unquoted, + STATE(734), 1, sym_expr_parenthesized, - STATE(251), 1, - sym__str_double_quotes, - STATE(1591), 1, + STATE(1747), 1, sym_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183514,77 +197481,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57460] = 28, - ACTIONS(147), 1, + [64923] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1109), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(1111), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(172), 1, + STATE(535), 1, sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(313), 1, + STATE(656), 1, sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(351), 1, + STATE(679), 1, + sym__inter_single_quotes, + STATE(692), 1, sym__str_double_quotes, - STATE(1592), 1, + STATE(705), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1748), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183596,77 +197566,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57570] = 28, - ACTIONS(147), 1, + [65037] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1593), 1, + STATE(1749), 1, sym_comment, - STATE(1879), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(1882), 1, + STATE(2344), 1, sym__var, - STATE(1972), 1, + STATE(2773), 1, + sym_unquoted, + STATE(2774), 1, sym__expression, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(2058), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183678,77 +197651,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57680] = 28, - ACTIONS(147), 1, + [65151] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3261), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3267), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3289), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3291), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(113), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1594), 1, + STATE(1750), 1, sym_comment, - STATE(1879), 1, - sym_expr_parenthesized, - STATE(1882), 1, - sym__var, - STATE(2012), 1, - sym__inter_double_quotes, - STATE(2013), 1, - sym__inter_single_quotes, - STATE(2040), 1, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, + sym__var, + STATE(2770), 1, + sym_unquoted, + STATE(2771), 1, sym__expression, - STATE(2058), 1, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, sym__str_double_quotes, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3277), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3287), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3283), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1990), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3281), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2030), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183760,77 +197736,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57790] = 28, - ACTIONS(147), 1, + [65265] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(1057), 1, + STATE(1751), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, + STATE(2758), 1, + sym_unquoted, + STATE(2759), 1, + sym__expression, + STATE(2824), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2841), 1, sym__inter_double_quotes, - STATE(1203), 1, - sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1595), 1, - sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183842,77 +197821,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57900] = 28, - ACTIONS(147), 1, + [65379] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(484), 1, + STATE(1752), 1, + sym_comment, + STATE(2077), 1, sym__var, - STATE(617), 1, + STATE(2081), 1, + sym_expr_parenthesized, + STATE(2293), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(623), 1, + STATE(2358), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(656), 1, + STATE(2362), 1, sym__expression, - STATE(1596), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + STATE(2364), 1, + sym_unquoted, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -183924,77 +197906,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58010] = 28, - ACTIONS(147), 1, + [65493] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1057), 1, + STATE(535), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, + STATE(665), 1, + sym_unquoted, + STATE(673), 1, sym__inter_double_quotes, - STATE(1204), 1, - sym__expression, - STATE(1214), 1, + STATE(679), 1, + sym__inter_single_quotes, + STATE(692), 1, + sym__str_double_quotes, + STATE(734), 1, sym_expr_parenthesized, - STATE(1597), 1, + STATE(743), 1, + sym__expression, + STATE(1753), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(3381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184006,77 +197991,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58120] = 28, - ACTIONS(147), 1, + [65607] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(1933), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1058), 1, + STATE(535), 1, sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(1243), 1, + STATE(692), 1, + sym__str_double_quotes, + STATE(734), 1, + sym_expr_parenthesized, + STATE(739), 1, sym__expression, - STATE(1598), 1, + STATE(741), 1, + sym_unquoted, + STATE(1754), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184088,77 +198076,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58230] = 28, - ACTIONS(147), 1, + [65721] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, - anon_sym_DASH, ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + anon_sym_DASH, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, STATE(12), 1, sym_val_number, - STATE(484), 1, + STATE(535), 1, sym__var, - STATE(617), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(623), 1, + STATE(692), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(654), 1, + STATE(732), 1, sym__expression, - STATE(1599), 1, + STATE(734), 1, + sym_expr_parenthesized, + STATE(738), 1, + sym_unquoted, + STATE(1755), 1, sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184170,79 +198161,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58340] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2874), 1, + [65835] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1600), 1, + STATE(1756), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2370), 1, - sym__expression, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2344), 1, + sym__var, + STATE(2824), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(2862), 1, + sym__expression, + STATE(3736), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -184252,77 +198249,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58450] = 28, - ACTIONS(147), 1, + [65955] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2597), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(2601), 1, anon_sym_DASH, - ACTIONS(2884), 1, - anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2605), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, + anon_sym_LBRACE, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1601), 1, + STATE(1757), 1, sym_comment, - STATE(2276), 1, + STATE(2077), 1, sym__var, - STATE(2278), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2371), 1, - sym__expression, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(2295), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(2358), 1, + sym__str_double_quotes, + STATE(2365), 1, + sym__expression, + STATE(2367), 1, + sym_unquoted, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3101), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184334,77 +198334,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58560] = 28, - ACTIONS(147), 1, + [66069] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2575), 1, + anon_sym_LPAREN, + ACTIONS(3145), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(3149), 1, anon_sym_DASH, - ACTIONS(1929), 1, + ACTIONS(3155), 1, anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, - ACTIONS(3319), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3391), 1, + anon_sym_LBRACE, + ACTIONS(3393), 1, + anon_sym_not, + STATE(14), 1, sym_val_number, - STATE(484), 1, + STATE(1141), 1, sym__var, - STATE(617), 1, + STATE(1258), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(1261), 1, sym__inter_single_quotes, - STATE(623), 1, + STATE(1274), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(651), 1, + STATE(1278), 1, sym__expression, - STATE(1602), 1, + STATE(1322), 1, + sym_expr_parenthesized, + STATE(1758), 1, sym_comment, - ACTIONS(1935), 2, + STATE(2840), 1, + sym__match_expression, + STATE(2842), 1, + sym_block, + ACTIONS(2577), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3325), 2, + ACTIONS(3165), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3395), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(3397), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(3399), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(3161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(1330), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(2579), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(1265), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184416,77 +198420,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58670] = 28, - ACTIONS(147), 1, + [66185] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, - anon_sym_DASH, ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + anon_sym_DASH, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, STATE(12), 1, sym_val_number, - STATE(484), 1, + STATE(535), 1, sym__var, - STATE(617), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(623), 1, + STATE(692), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(650), 1, + STATE(728), 1, sym__expression, - STATE(1603), 1, + STATE(729), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1759), 1, sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184498,77 +198505,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58780] = 28, - ACTIONS(147), 1, + [66299] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(2884), 1, - anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(1933), 1, anon_sym_not, - ACTIONS(2890), 1, - anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1604), 1, - sym_comment, - STATE(2276), 1, + STATE(535), 1, sym__var, - STATE(2278), 1, - sym_expr_parenthesized, - STATE(2388), 1, - sym__expression, - STATE(2668), 1, - sym__str_double_quotes, - STATE(2678), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(2680), 1, + STATE(679), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, + STATE(692), 1, + sym__str_double_quotes, + STATE(726), 1, + sym__expression, + STATE(727), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1760), 1, + sym_comment, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(2894), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2898), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2655), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184580,77 +198590,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58890] = 28, - ACTIONS(147), 1, + [66413] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1927), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, - anon_sym_DASH, ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + anon_sym_DASH, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, STATE(12), 1, sym_val_number, - STATE(484), 1, + STATE(535), 1, sym__var, - STATE(617), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(618), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(623), 1, + STATE(692), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(649), 1, + STATE(722), 1, sym__expression, - STATE(1605), 1, + STATE(723), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1761), 1, sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(3381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184662,77 +198675,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59000] = 28, - ACTIONS(147), 1, + [66527] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DOLLAR, - ACTIONS(1923), 1, - anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3319), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_unquoted_token1, + STATE(129), 1, sym_val_number, - STATE(484), 1, + STATE(1762), 1, + sym_comment, + STATE(2323), 1, + sym_expr_parenthesized, + STATE(2344), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, + STATE(2824), 1, sym__inter_single_quotes, - STATE(623), 1, - sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(648), 1, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2850), 1, + sym_unquoted, + STATE(2854), 1, sym__expression, - STATE(1606), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + STATE(2857), 1, + sym__str_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(2831), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(85), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(2861), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184744,77 +198760,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59110] = 28, - ACTIONS(147), 1, + [66641] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1607), 1, + STATE(1763), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2444), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2566), 1, + sym_unquoted, + STATE(2567), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3185), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184826,77 +198845,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59220] = 28, - ACTIONS(147), 1, + [66755] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1927), 1, + anon_sym_DOLLAR, + ACTIONS(1929), 1, + anon_sym_DASH, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1608), 1, - sym_comment, - STATE(2115), 1, + STATE(535), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(2443), 1, + STATE(692), 1, + sym__str_double_quotes, + STATE(720), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + STATE(721), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1764), 1, + sym_comment, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184908,77 +198930,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59330] = 28, - ACTIONS(147), 1, + [66869] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1927), 1, + anon_sym_DOLLAR, + ACTIONS(1929), 1, + anon_sym_DASH, + ACTIONS(1933), 1, + anon_sym_not, + ACTIONS(3371), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3375), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3377), 1, + anon_sym_DASHinf, + ACTIONS(3379), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3383), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3385), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3387), 1, + aux_sym_unquoted_token1, + STATE(12), 1, sym_val_number, - STATE(1609), 1, - sym_comment, - STATE(2115), 1, + STATE(535), 1, sym__var, - STATE(2122), 1, - sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(673), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(679), 1, sym__inter_single_quotes, - STATE(2442), 1, + STATE(692), 1, + sym__str_double_quotes, + STATE(717), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + STATE(718), 1, + sym_unquoted, + STATE(734), 1, + sym_expr_parenthesized, + STATE(1765), 1, + sym_comment, + ACTIONS(1937), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(1939), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1935), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(733), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(1941), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(693), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -184990,77 +199015,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59440] = 28, - ACTIONS(147), 1, + [66983] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(2677), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(2681), 1, anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3175), 1, + anon_sym_LBRACK, + ACTIONS(3177), 1, + anon_sym_LPAREN, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1058), 1, + STATE(1766), 1, + sym_comment, + STATE(2136), 1, sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(1232), 1, + STATE(2452), 1, + sym__inter_double_quotes, + STATE(2453), 1, sym__inter_single_quotes, - STATE(1244), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2554), 1, + sym_unquoted, + STATE(2556), 1, sym__expression, - STATE(1610), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(3185), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185072,77 +199100,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59550] = 28, - ACTIONS(147), 1, + [67097] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1611), 1, + STATE(1767), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2437), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2558), 1, + sym_unquoted, + STATE(2559), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3185), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185154,77 +199185,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59660] = 28, - ACTIONS(147), 1, + [67211] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1612), 1, + STATE(1768), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2435), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2561), 1, + sym_unquoted, + STATE(2562), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2685), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3185), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185236,77 +199270,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59770] = 28, - ACTIONS(147), 1, + [67325] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1613), 1, + STATE(1769), 1, sym_comment, - STATE(2115), 1, + STATE(2077), 1, sym__var, - STATE(2122), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2434), 1, + STATE(2333), 1, + sym_unquoted, + STATE(2342), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3101), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185318,79 +199355,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59880] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [67439] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(243), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1614), 1, + STATE(1770), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2431), 1, + STATE(2344), 1, + sym__var, + STATE(2823), 1, sym__expression, - ACTIONS(241), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3756), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(251), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2423), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -185400,77 +199443,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59990] = 28, - ACTIONS(147), 1, + [67559] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2605), 1, + anon_sym_not, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3095), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3097), 1, + anon_sym_DASHinf, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3103), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3107), 1, + aux_sym_unquoted_token1, + STATE(117), 1, sym_val_number, - STATE(1615), 1, + STATE(1771), 1, sym_comment, - STATE(2115), 1, + STATE(2077), 1, sym__var, - STATE(2122), 1, + STATE(2081), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2293), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2295), 1, sym__inter_single_quotes, - STATE(2430), 1, + STATE(2330), 1, + sym_unquoted, + STATE(2331), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + STATE(2358), 1, + sym__str_double_quotes, + ACTIONS(2609), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2611), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3101), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2607), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2615), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2356), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2613), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2306), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185482,77 +199528,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60100] = 28, - ACTIONS(147), 1, + [67673] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2677), 1, + anon_sym_DASH, + ACTIONS(2681), 1, + anon_sym_not, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(3177), 1, anon_sym_LPAREN, - ACTIONS(201), 1, - anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - ACTIONS(243), 1, - anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(3181), 1, + anon_sym_DASHinf, + ACTIONS(3183), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(3187), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(122), 1, sym_val_number, - STATE(1616), 1, + STATE(1772), 1, sym_comment, - STATE(2115), 1, + STATE(2136), 1, sym__var, - STATE(2122), 1, + STATE(2205), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, + STATE(2452), 1, sym__inter_double_quotes, - STATE(2420), 1, + STATE(2453), 1, sym__inter_single_quotes, - STATE(2429), 1, + STATE(2501), 1, + sym__str_double_quotes, + STATE(2563), 1, + sym_unquoted, + STATE(2565), 1, sym__expression, - ACTIONS(241), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, + ACTIONS(2685), 2, sym_val_nothing, sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(2687), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(3185), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2683), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2691), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, + STATE(2573), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(251), 6, + ACTIONS(2689), 7, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2423), 11, + STATE(2457), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185564,79 +199613,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60210] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [67787] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(243), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1617), 1, + STATE(1773), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2428), 1, + STATE(2344), 1, + sym__var, + STATE(2727), 1, sym__expression, - ACTIONS(241), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3757), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(251), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2423), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -185646,79 +199701,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60320] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [67907] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(243), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1618), 1, + STATE(1774), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2427), 1, + STATE(2344), 1, + sym__var, + STATE(2729), 1, sym__expression, - ACTIONS(241), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3549), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(251), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2423), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -185728,79 +199789,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60430] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(191), 1, + [68027] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(219), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(243), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(257), 1, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1183), 1, anon_sym_DOLLAR, - ACTIONS(3173), 1, - anon_sym_not, - STATE(128), 1, + ACTIONS(3143), 1, + sym_identifier, + STATE(115), 1, sym_val_number, - STATE(1619), 1, + STATE(1775), 1, sym_comment, - STATE(2115), 1, - sym__var, - STATE(2122), 1, + STATE(2323), 1, sym_expr_parenthesized, - STATE(2305), 1, - sym__str_double_quotes, - STATE(2419), 1, - sym__inter_double_quotes, - STATE(2420), 1, - sym__inter_single_quotes, - STATE(2426), 1, + STATE(2344), 1, + sym__var, + STATE(2728), 1, sym__expression, - ACTIONS(241), 2, + STATE(2824), 1, + sym__inter_single_quotes, + STATE(2838), 1, + sym_val_variable, + STATE(2841), 1, + sym__inter_double_quotes, + STATE(2857), 1, + sym__str_double_quotes, + STATE(3547), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(249), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(255), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(259), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3175), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2458), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(251), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2423), 11, + STATE(2831), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2861), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -185810,77 +199877,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60540] = 28, - ACTIONS(147), 1, + [68147] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(2882), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(2884), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, - anon_sym_not, - ACTIONS(2890), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(2902), 1, + ACTIONS(2775), 1, + sym_val_date, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2908), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(131), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3249), 1, + sym_val_nothing, + ACTIONS(3401), 1, + sym_identifier, + STATE(121), 1, sym_val_number, - STATE(1620), 1, + STATE(1776), 1, sym_comment, - STATE(2276), 1, - sym__var, - STATE(2278), 1, + STATE(2088), 1, sym_expr_parenthesized, - STATE(2373), 1, - sym__expression, - STATE(2668), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, sym__str_double_quotes, - STATE(2678), 1, - sym__inter_double_quotes, - STATE(2680), 1, + STATE(2454), 1, sym__inter_single_quotes, - ACTIONS(2888), 2, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2924), 1, + sym__expression, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2892), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2894), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2904), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2900), 3, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2675), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2898), 6, + ACTIONS(2779), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2781), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2655), 11, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185892,77 +199962,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60650] = 28, - ACTIONS(147), 1, + [68262] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(3343), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(3347), 1, anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(3349), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3351), 1, + sym_val_nothing, + ACTIONS(3361), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3403), 1, + sym_cmd_identifier, + ACTIONS(3407), 1, + sym_val_date, + STATE(124), 1, sym_val_number, - STATE(133), 1, + STATE(1777), 1, + sym_comment, + STATE(2109), 1, + sym_expr_parenthesized, + STATE(2140), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(2381), 1, + sym__str_double_quotes, + STATE(2497), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(240), 1, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2523), 1, sym__expression, - STATE(251), 1, - sym__str_double_quotes, - STATE(1621), 1, - sym_comment, ACTIONS(3353), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3359), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(3363), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(3405), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3363), 6, + ACTIONS(3355), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(3357), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(234), 11, + STATE(2494), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2503), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -185974,77 +200047,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60760] = 28, - ACTIONS(147), 1, + [68377] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, - anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2775), 1, + sym_val_date, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3249), 1, + sym_val_nothing, + ACTIONS(3409), 1, + sym_identifier, + STATE(121), 1, sym_val_number, - STATE(133), 1, + STATE(1778), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(217), 1, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(229), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(243), 1, + STATE(2925), 1, sym__expression, - STATE(251), 1, - sym__str_double_quotes, - STATE(1622), 1, - sym_comment, - ACTIONS(3353), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3359), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3361), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3363), 6, + ACTIONS(2779), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2781), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(234), 11, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186056,77 +200132,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60870] = 28, - ACTIONS(147), 1, + [68492] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, - ACTIONS(3319), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2775), 1, + sym_val_date, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3249), 1, + sym_val_nothing, + ACTIONS(3411), 1, + sym_identifier, + STATE(121), 1, sym_val_number, - STATE(484), 1, + STATE(1779), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__inter_single_quotes, - STATE(623), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(647), 1, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2930), 1, sym__expression, - STATE(1623), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3329), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3331), 6, + ACTIONS(2779), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2781), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(625), 11, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186138,77 +200217,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60980] = 28, - ACTIONS(147), 1, + [68607] = 30, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, - ACTIONS(3319), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2775), 1, + sym_val_date, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_not, + ACTIONS(3249), 1, + sym_val_nothing, + ACTIONS(3413), 1, + sym_identifier, + STATE(121), 1, sym_val_number, - STATE(484), 1, + STATE(1780), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__inter_single_quotes, - STATE(623), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(646), 1, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2931), 1, sym__expression, - STATE(1624), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3329), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(3251), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3331), 6, + ACTIONS(2779), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2781), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(625), 11, + STATE(2390), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186220,77 +200302,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61090] = 28, - ACTIONS(147), 1, + [68722] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(2769), 1, + anon_sym_not, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(1057), 1, + STATE(1781), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(1080), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(1146), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(1147), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(1205), 1, + STATE(2929), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1625), 1, - sym_comment, - ACTIONS(2926), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186302,77 +200384,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61200] = 28, - ACTIONS(147), 1, + [68832] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + STATE(131), 1, sym_val_number, - STATE(133), 1, + STATE(1782), 1, + sym_comment, + STATE(2393), 1, + sym__expression, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(2915), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(249), 1, - sym__expression, - STATE(251), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(1626), 1, - sym_comment, - ACTIONS(3353), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, + ACTIONS(2900), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186384,77 +200466,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61310] = 28, - ACTIONS(147), 1, + [68942] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(1929), 1, - anon_sym_DOT_DOT, - ACTIONS(3317), 1, - anon_sym_LBRACK, - ACTIONS(3319), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3323), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3333), 1, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(484), 1, + STATE(1783), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(617), 1, - sym__inter_double_quotes, - STATE(618), 1, - sym__inter_single_quotes, - STATE(623), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(636), 1, - sym_expr_parenthesized, - STATE(645), 1, + STATE(2454), 1, + sym__inter_single_quotes, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2933), 1, sym__expression, - STATE(1627), 1, - sym_comment, - ACTIONS(1935), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3325), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3329), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3335), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1937), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(633), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3331), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(625), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186466,77 +200548,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61420] = 28, - ACTIONS(147), 1, + [69052] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(1147), 1, anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(1153), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(3319), 1, + anon_sym_LBRACK, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(3331), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3415), 1, + anon_sym_not, + STATE(8), 1, sym_val_number, - STATE(1058), 1, + STATE(224), 1, sym__var, - STATE(1192), 1, + STATE(423), 1, sym__str_double_quotes, - STATE(1227), 1, + STATE(424), 1, + sym__inter_single_quotes, + STATE(425), 1, sym__inter_double_quotes, - STATE(1230), 1, + STATE(451), 1, sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1245), 1, + STATE(486), 1, sym__expression, - STATE(1628), 1, + STATE(1784), 1, sym_comment, - ACTIONS(2575), 2, + ACTIONS(1159), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3103), 2, + ACTIONS(3329), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3417), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(3419), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(1161), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(452), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(3325), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(421), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186548,77 +200630,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61530] = 28, - ACTIONS(147), 1, + [69162] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + STATE(131), 1, sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, + STATE(1785), 1, + sym_comment, + STATE(2392), 1, + sym__expression, + STATE(2415), 1, sym_expr_parenthesized, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, + STATE(2479), 1, + sym__var, + STATE(2915), 1, sym__inter_double_quotes, - STATE(338), 1, - sym__expression, - STATE(351), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(1629), 1, - sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(2900), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186630,77 +200712,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61640] = 28, - ACTIONS(147), 1, + [69272] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(1058), 1, + STATE(1786), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(1139), 1, - sym__expression, - STATE(1192), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(1630), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2927), 1, + sym__expression, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186712,77 +200794,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61750] = 28, - ACTIONS(147), 1, + [69382] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + STATE(131), 1, sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, + STATE(1787), 1, + sym_comment, + STATE(2415), 1, sym_expr_parenthesized, - STATE(309), 1, + STATE(2479), 1, + sym__var, + STATE(2495), 1, sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, + STATE(2915), 1, sym__inter_double_quotes, - STATE(351), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(1631), 1, - sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(2900), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186794,77 +200876,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61860] = 28, - ACTIONS(147), 1, + [69492] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, + anon_sym_DASH, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(2894), 1, + anon_sym_DOT_DOT, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + STATE(131), 1, sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, + STATE(1788), 1, + sym_comment, + STATE(2415), 1, sym_expr_parenthesized, - STATE(310), 1, + STATE(2479), 1, + sym__var, + STATE(2490), 1, sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, + STATE(2915), 1, sym__inter_double_quotes, - STATE(351), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(1632), 1, - sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(2900), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186876,77 +200958,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61970] = 28, - ACTIONS(147), 1, + [69602] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(3097), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3105), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(3113), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3117), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(1058), 1, + STATE(1789), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(1192), 1, + STATE(2410), 1, sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, + STATE(2454), 1, sym__inter_single_quotes, - STATE(1246), 1, + STATE(2455), 1, + sym__inter_double_quotes, + STATE(2928), 1, sym__expression, - STATE(1633), 1, - sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3109), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3111), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1229), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2577), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -186958,77 +201040,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62080] = 28, - ACTIONS(147), 1, + [69712] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1109), 1, + ACTIONS(2757), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(1111), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(2773), 1, + anon_sym_DOT_DOT, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, + STATE(1790), 1, + sym_comment, + STATE(2088), 1, sym_expr_parenthesized, - STATE(311), 1, - sym__expression, - STATE(330), 1, + STATE(2177), 1, + sym__var, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(337), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1634), 1, - sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + STATE(2936), 1, + sym__expression, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1125), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187040,77 +201122,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62190] = 28, - ACTIONS(147), 1, + [69822] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2757), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2759), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2761), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(2773), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + ACTIONS(3245), 1, + anon_sym_LBRACK, + STATE(121), 1, sym_val_number, - STATE(133), 1, + STATE(1791), 1, + sym_comment, + STATE(2088), 1, + sym_expr_parenthesized, + STATE(2177), 1, sym__var, - STATE(217), 1, + STATE(2410), 1, + sym__str_double_quotes, + STATE(2454), 1, sym__inter_single_quotes, - STATE(229), 1, + STATE(2455), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(250), 1, + STATE(2926), 1, sym__expression, - STATE(251), 1, - sym__str_double_quotes, - STATE(1635), 1, - sym_comment, - ACTIONS(3353), 2, + ACTIONS(2771), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2775), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, + ACTIONS(2779), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2787), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2783), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2390), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2446), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187122,77 +201204,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62300] = 28, - ACTIONS(147), 1, + [69932] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(2880), 1, + anon_sym_LPAREN, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(2920), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(2922), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - ACTIONS(2942), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(2946), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2948), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3375), 1, - anon_sym_not, - STATE(17), 1, + STATE(131), 1, sym_val_number, - STATE(1057), 1, + STATE(1792), 1, + sym_comment, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, sym__var, - STATE(1080), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1147), 1, - sym__inter_double_quotes, - STATE(1206), 1, + STATE(2481), 1, sym__expression, - STATE(1214), 1, - sym_expr_parenthesized, - STATE(1636), 1, - sym_comment, - ACTIONS(2926), 2, + STATE(2915), 1, + sym__inter_double_quotes, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2934), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2940), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3377), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(2938), 3, + ACTIONS(2900), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1228), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2936), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1144), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187204,77 +201286,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62410] = 28, - ACTIONS(147), 1, + [70042] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + STATE(131), 1, sym_val_number, - STATE(133), 1, + STATE(1793), 1, + sym_comment, + STATE(2391), 1, + sym__expression, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(2915), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(251), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(256), 1, - sym__expression, - STATE(1637), 1, - sym_comment, - ACTIONS(3353), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, + ACTIONS(2900), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187286,77 +201368,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62520] = 28, - ACTIONS(147), 1, + [70152] = 28, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3341), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(3347), 1, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(3349), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(2890), 1, anon_sym_not, - ACTIONS(3355), 1, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(3371), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3373), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - STATE(3), 1, + STATE(131), 1, sym_val_number, - STATE(133), 1, + STATE(1794), 1, + sym_comment, + STATE(2411), 1, + sym__expression, + STATE(2415), 1, + sym_expr_parenthesized, + STATE(2479), 1, sym__var, - STATE(217), 1, - sym__inter_single_quotes, - STATE(229), 1, + STATE(2915), 1, sym__inter_double_quotes, - STATE(236), 1, - sym_expr_parenthesized, - STATE(247), 1, - sym__expression, - STATE(251), 1, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, sym__str_double_quotes, - STATE(1638), 1, - sym_comment, - ACTIONS(3353), 2, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(3359), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(3361), 2, + ACTIONS(2900), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3369), 2, + ACTIONS(2908), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3365), 3, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(237), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3363), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(234), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187368,77 +201450,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62630] = 28, - ACTIONS(31), 1, + [70262] = 28, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2880), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2886), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2888), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(2894), 1, anon_sym_DOT_DOT, - ACTIONS(93), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, + STATE(131), 1, sym_val_number, - STATE(1639), 1, + STATE(1795), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2415), 1, sym_expr_parenthesized, - STATE(2550), 1, + STATE(2479), 1, + sym__var, + STATE(2505), 1, sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2915), 1, sym__inter_double_quotes, - ACTIONS(77), 2, + STATE(2917), 1, + sym__inter_single_quotes, + STATE(2919), 1, + sym__str_double_quotes, + ACTIONS(2892), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, + ACTIONS(2896), 2, sym_val_nothing, sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, + ACTIONS(2898), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, + ACTIONS(2900), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2908), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2904), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2579), 4, + STATE(2899), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(87), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, + STATE(2907), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187450,8 +201532,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62740] = 28, - ACTIONS(147), 1, + [70372] = 28, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(1109), 1, anon_sym_DOLLAR, @@ -187459,68 +201541,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(1117), 1, anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(3211), 1, + ACTIONS(3301), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(3303), 1, anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(3229), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, + ACTIONS(3423), 1, + anon_sym_not, + STATE(6), 1, sym_val_number, - STATE(172), 1, + STATE(183), 1, sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(314), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, sym__str_double_quotes, - STATE(1640), 1, + STATE(372), 1, + sym__inter_double_quotes, + STATE(373), 1, + sym__inter_single_quotes, + STATE(393), 1, + sym_expr_parenthesized, + STATE(461), 1, + sym__expression, + STATE(1796), 1, sym_comment, ACTIONS(1123), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(3309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3425), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, + ACTIONS(3427), 2, sym_val_nothing, sym_val_date, - ACTIONS(3221), 2, + ACTIONS(3429), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, ACTIONS(1125), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(348), 4, + STATE(394), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3223), 6, + ACTIONS(3305), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, + STATE(377), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187532,77 +201614,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62850] = 28, - ACTIONS(31), 1, + [70482] = 28, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3195), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3199), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(3205), 1, anon_sym_DOT_DOT, - ACTIONS(93), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, + ACTIONS(3431), 1, anon_sym_not, - STATE(129), 1, + STATE(114), 1, sym_val_number, - STATE(1641), 1, + STATE(1797), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(1964), 1, sym_expr_parenthesized, - STATE(2549), 1, - sym__expression, - STATE(2578), 1, + STATE(2004), 1, + sym__var, + STATE(2147), 1, sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, + STATE(2200), 1, + sym__expression, + STATE(2203), 1, sym__inter_double_quotes, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, + STATE(2204), 1, + sym__inter_single_quotes, + ACTIONS(3211), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(91), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, + ACTIONS(3219), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3179), 2, + ACTIONS(3433), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3437), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, + ACTIONS(3215), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2579), 4, + STATE(2100), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(87), 6, + ACTIONS(3213), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, + STATE(2214), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -187614,3687 +201696,3000 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62960] = 28, - ACTIONS(147), 1, + [70592] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1137), 1, - anon_sym_DOLLAR, - ACTIONS(1139), 1, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1798), 1, + sym_comment, + STATE(2087), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3441), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(3443), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + ACTIONS(826), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - ACTIONS(1145), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(828), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [70659] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(766), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1799), 1, + sym_comment, + STATE(1806), 1, + sym_path, + STATE(1864), 1, + sym_cell_path, + ACTIONS(764), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3183), 1, anon_sym_LPAREN, - ACTIONS(3185), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3187), 1, - anon_sym_not, - ACTIONS(3197), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3201), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3203), 1, anon_sym_DOLLAR_DQUOTE, - STATE(8), 1, - sym_val_number, - STATE(238), 1, - sym__var, - STATE(375), 1, - sym__str_double_quotes, - STATE(386), 1, - sym__inter_single_quotes, - STATE(396), 1, - sym_expr_parenthesized, - STATE(404), 1, - sym__inter_double_quotes, - STATE(426), 1, - sym__expression, - STATE(1642), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [70722] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(750), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1800), 1, sym_comment, - ACTIONS(1151), 2, + STATE(1806), 1, + sym_path, + STATE(1853), 1, + sym_cell_path, + ACTIONS(748), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3189), 2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [70785] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(725), 1, + anon_sym_LF, + ACTIONS(3447), 1, + anon_sym_DOT, + STATE(1834), 1, + sym_path, + STATE(1801), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3191), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3193), 2, anon_sym_true, anon_sym_false, - ACTIONS(3199), 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1153), 3, + 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, + sym_short_flag, + aux_sym_unquoted_token1, + [70846] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(742), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1802), 1, + sym_comment, + STATE(1806), 1, + sym_path, + STATE(1860), 1, + sym_cell_path, + ACTIONS(740), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(395), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3195), 6, + 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, + sym_short_flag, + aux_sym_unquoted_token1, + [70909] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(770), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1803), 1, + sym_comment, + STATE(1806), 1, + sym_path, + STATE(1845), 1, + sym_cell_path, + ACTIONS(768), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(369), 11, - sym_val_bool, - sym_val_variable, - 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, - [63070] = 28, - ACTIONS(31), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [70972] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(732), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1804), 1, + sym_comment, + STATE(1806), 1, + sym_path, + STATE(1842), 1, + sym_cell_path, + ACTIONS(730), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(79), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71035] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1643), 1, + ACTIONS(746), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1805), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2547), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + STATE(1806), 1, + sym_path, + STATE(1850), 1, + sym_cell_path, + ACTIONS(744), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [63180] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71098] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1644), 1, + ACTIONS(758), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1806), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2536), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + STATE(1807), 1, + aux_sym_cell_path_repeat1, + STATE(1834), 1, + sym_path, + ACTIONS(756), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [63290] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_not, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3113), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3117), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3119), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(15), 1, - sym_val_number, - STATE(1058), 1, - sym__var, - STATE(1192), 1, - sym__str_double_quotes, - STATE(1227), 1, - sym__inter_double_quotes, - STATE(1230), 1, - sym_expr_parenthesized, - STATE(1232), 1, - sym__inter_single_quotes, - STATE(1247), 1, - sym__expression, - STATE(1645), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71161] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(754), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1801), 1, + aux_sym_cell_path_repeat1, + STATE(1807), 1, sym_comment, - ACTIONS(2575), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3103), 2, + STATE(1834), 1, + sym_path, + ACTIONS(752), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3109), 2, anon_sym_true, anon_sym_false, - ACTIONS(3115), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3111), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1229), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2577), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1234), 11, - sym_val_bool, - sym_val_variable, - 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, - [63400] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(571), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1646), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71224] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(738), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1806), 1, + sym_path, + STATE(1808), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1849), 1, + sym_cell_path, + ACTIONS(736), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [63510] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(569), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1647), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71287] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(762), 1, + anon_sym_LF, + ACTIONS(3445), 1, + anon_sym_DOT, + STATE(1806), 1, + sym_path, + STATE(1809), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1852), 1, + sym_cell_path, + ACTIONS(760), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [63620] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71350] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1648), 1, + ACTIONS(828), 1, + anon_sym_LF, + ACTIONS(3450), 1, + anon_sym_LPAREN, + STATE(1810), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + STATE(2336), 2, sym_expr_parenthesized, - STATE(2545), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, + sym_val_number, + ACTIONS(2613), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(91), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [63730] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, + ACTIONS(826), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [71413] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1811), 1, + sym_comment, + STATE(1818), 1, + sym_path, + STATE(1891), 1, + sym_cell_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 40, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3381), 1, anon_sym_LPAREN, - ACTIONS(3383), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, - anon_sym_DQUOTE, - ACTIONS(3399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(567), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1649), 1, - sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [63840] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(565), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1650), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71475] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1812), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1818), 1, + sym_path, + STATE(1913), 1, + sym_cell_path, + ACTIONS(738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(736), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [63950] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(564), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1651), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71537] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3454), 1, + anon_sym_QMARK2, + STATE(1813), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + ACTIONS(772), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [64060] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71595] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1652), 1, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3454), 1, + anon_sym_QMARK2, + STATE(1814), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2544), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + ACTIONS(772), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [64170] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(562), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1653), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71653] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(828), 1, + anon_sym_LF, + ACTIONS(1579), 1, + anon_sym_LPAREN, + STATE(1815), 1, sym_comment, - ACTIONS(1703), 2, + STATE(1841), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3456), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3387), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [64280] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, + ACTIONS(826), 33, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(315), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1654), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71715] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1816), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + STATE(1820), 1, + aux_sym_cell_path_repeat1, + STATE(1879), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [64390] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [71777] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1817), 1, + sym_comment, + STATE(1818), 1, + sym_path, + STATE(1907), 1, + sym_cell_path, + ACTIONS(770), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(768), 40, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3381), 1, anon_sym_LPAREN, - ACTIONS(3383), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, - anon_sym_DQUOTE, - ACTIONS(3399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(561), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1655), 1, - sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [64500] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(560), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1656), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71839] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1816), 1, + aux_sym_cell_path_repeat1, + STATE(1818), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1879), 1, + sym_path, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [64610] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(559), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1657), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71901] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3458), 1, + anon_sym_LPAREN, + STATE(1819), 1, sym_comment, - ACTIONS(1703), 2, + STATE(2469), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3460), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3387), 2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(3462), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + ACTIONS(826), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(828), 22, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [71965] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3464), 1, + anon_sym_DOT, + STATE(1879), 1, + sym_path, + ACTIONS(725), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1820), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [64720] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72025] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1658), 1, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_path, + STATE(1821), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2543), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + STATE(1903), 1, + sym_cell_path, + ACTIONS(766), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(764), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [64830] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72087] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1659), 1, + ACTIONS(3467), 1, + anon_sym_LPAREN, + STATE(1822), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, + ACTIONS(828), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2426), 2, sym_expr_parenthesized, - STATE(2542), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, + sym_val_number, + ACTIONS(2689), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(91), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [64940] = 28, - ACTIONS(31), 1, + ACTIONS(826), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [72149] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_path, + STATE(1823), 1, + sym_comment, + STATE(1909), 1, + sym_cell_path, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 40, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(79), 1, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72211] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1660), 1, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_path, + STATE(1824), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2540), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + STATE(1919), 1, + sym_cell_path, + ACTIONS(746), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(744), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 6, + 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, + sym_short_flag, + aux_sym_unquoted_token1, + [72273] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(1825), 1, + sym_comment, + ACTIONS(2779), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2472), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [65050] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, + ACTIONS(826), 7, + anon_sym_GT, anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(828), 27, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [72337] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(786), 1, + anon_sym_LF, + STATE(1826), 1, + sym_comment, + ACTIONS(784), 44, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3381), 1, anon_sym_LPAREN, - ACTIONS(3383), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, - anon_sym_DQUOTE, - ACTIONS(3399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(557), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1661), 1, - sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [65160] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(553), 1, - sym__expression, - STATE(574), 1, - sym__str_double_quotes, - STATE(1662), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72393] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_path, + STATE(1827), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1897), 1, + sym_cell_path, + ACTIONS(762), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(760), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [65270] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(548), 1, - sym__expression, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(574), 1, - sym__str_double_quotes, - STATE(1663), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72455] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_path, + STATE(1828), 1, sym_comment, - ACTIONS(1703), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3387), 2, + STATE(1895), 1, + sym_cell_path, + ACTIONS(732), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(730), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, anon_sym_true, anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [65380] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(316), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1664), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72517] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(782), 1, + anon_sym_LF, + STATE(1829), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(780), 44, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [65490] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(317), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1665), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(905), 1, + anon_sym_LF, + STATE(1830), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(903), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [65600] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOLLAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3381), 1, - anon_sym_LPAREN, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_not, - ACTIONS(3395), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3401), 1, anon_sym_DOLLAR_DQUOTE, - STATE(11), 1, - sym_val_number, - STATE(451), 1, - sym__var, - STATE(523), 1, - sym_expr_parenthesized, - STATE(547), 1, - sym__expression, - STATE(550), 1, - sym__inter_double_quotes, - STATE(551), 1, - sym__inter_single_quotes, - STATE(574), 1, - sym__str_double_quotes, - STATE(1666), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72628] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(828), 1, + anon_sym_LF, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1831), 1, sym_comment, - ACTIONS(1703), 2, + STATE(2716), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(249), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3387), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3389), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3391), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1705), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(513), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(554), 11, - sym_val_bool, - sym_val_variable, - 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, - [65710] = 28, - ACTIONS(147), 1, + ACTIONS(826), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [72689] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3473), 1, + anon_sym_QMARK2, + STATE(1832), 1, + sym_comment, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 41, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(260), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1667), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [65820] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(321), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1668), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72746] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3473), 1, + anon_sym_QMARK2, + STATE(1833), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 41, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [65930] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(322), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1669), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72803] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(909), 1, + anon_sym_LF, + STATE(1834), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(907), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [66040] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1109), 1, - anon_sym_DOLLAR, - ACTIONS(1111), 1, - anon_sym_DASH, - ACTIONS(1117), 1, - anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 1, - anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(3225), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3229), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3231), 1, anon_sym_DOLLAR_DQUOTE, - STATE(7), 1, - sym_val_number, - STATE(172), 1, - sym__var, - STATE(308), 1, - sym_expr_parenthesized, - STATE(323), 1, - sym__expression, - STATE(330), 1, - sym__inter_single_quotes, - STATE(337), 1, - sym__inter_double_quotes, - STATE(351), 1, - sym__str_double_quotes, - STATE(1670), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [72858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1555), 1, + anon_sym_LF, + ACTIONS(3475), 1, + aux_sym_long_flag_token1, + STATE(1835), 1, sym_comment, - ACTIONS(1123), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3217), 2, + ACTIONS(1553), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3221), 2, anon_sym_true, anon_sym_false, - ACTIONS(3227), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1125), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(348), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3223), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(328), 11, - sym_val_bool, - sym_val_variable, - 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, - [66150] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [72915] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + STATE(1836), 1, + sym_comment, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(264), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1671), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [66260] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [72970] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + STATE(1837), 1, + sym_comment, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(289), 1, - sym__expression, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1672), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [66370] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73025] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(901), 1, + anon_sym_LF, + STATE(1838), 1, + sym_comment, + ACTIONS(899), 43, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(286), 1, - sym__expression, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1673), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, + 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, + sym_short_flag, + aux_sym_unquoted_token1, + [73080] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1750), 1, + anon_sym_LPAREN, + STATE(1839), 1, + sym_comment, + ACTIONS(828), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1905), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3477), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [66480] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(826), 31, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(3429), 1, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(306), 1, - sym__expression, - STATE(1674), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73141] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(115), 1, + anon_sym_LF, + STATE(1840), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(113), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [66590] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73195] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1675), 1, + ACTIONS(940), 1, + anon_sym_LF, + STATE(1841), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2539), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + ACTIONS(938), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [66700] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73249] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1676), 1, + ACTIONS(932), 1, + anon_sym_LF, + STATE(1842), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2538), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + ACTIONS(930), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [66810] = 28, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, - anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(305), 1, - sym__expression, - STATE(1677), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73303] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(990), 1, + anon_sym_LF, + STATE(1843), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(988), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [66920] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73357] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(105), 1, + anon_sym_LF, + STATE(1844), 1, + sym_comment, + ACTIONS(103), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(301), 1, - sym__expression, - STATE(1678), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67030] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73411] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(982), 1, + anon_sym_LF, + STATE(1845), 1, + sym_comment, + ACTIONS(980), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(3429), 1, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(279), 1, - sym__str_double_quotes, - STATE(287), 1, - sym__expression, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1679), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73465] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3481), 1, + anon_sym_LF, + STATE(1846), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(305), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, + ACTIONS(3479), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67140] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73521] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(1000), 1, + anon_sym_LF, + STATE(1847), 1, + sym_comment, + ACTIONS(998), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(262), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1680), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67250] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73575] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3485), 1, + anon_sym_LF, + STATE(1848), 1, + sym_comment, + ACTIONS(3483), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(268), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1681), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67360] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73629] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(958), 1, + anon_sym_LF, + STATE(1849), 1, + sym_comment, + ACTIONS(956), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(269), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1682), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67470] = 28, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(97), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(147), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [73683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_DOLLAR, - ACTIONS(3177), 1, - anon_sym_not, - STATE(129), 1, - sym_val_number, - STATE(1683), 1, + ACTIONS(924), 1, + anon_sym_LF, + STATE(1850), 1, sym_comment, - STATE(2175), 1, - sym__var, - STATE(2178), 1, - sym_expr_parenthesized, - STATE(2537), 1, - sym__expression, - STATE(2578), 1, - sym__str_double_quotes, - STATE(2581), 1, - sym__inter_single_quotes, - STATE(2583), 1, - sym__inter_double_quotes, - ACTIONS(77), 2, + ACTIONS(922), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(85), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(91), 2, sym_val_nothing, - sym_val_date, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3179), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2579), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(87), 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, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2575), 11, - sym_val_bool, - sym_val_variable, - 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, - [67580] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73737] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(962), 1, + anon_sym_LF, + STATE(1851), 1, + sym_comment, + ACTIONS(960), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(274), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1684), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67690] = 28, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(996), 1, + anon_sym_LF, + STATE(1852), 1, + sym_comment, + ACTIONS(994), 42, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3411), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(3417), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(5), 1, - sym_val_number, - STATE(145), 1, - sym__var, - STATE(258), 1, - sym__inter_double_quotes, - STATE(271), 1, - sym__expression, - STATE(279), 1, - sym__str_double_quotes, - STATE(292), 1, - sym__inter_single_quotes, - STATE(300), 1, - sym_expr_parenthesized, - STATE(1685), 1, - sym_comment, - ACTIONS(3415), 2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 2, sym_val_nothing, - sym_val_date, - ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3427), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(295), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3425), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(276), 11, - sym_val_bool, - sym_val_variable, - 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, - [67800] = 8, - ACTIONS(147), 1, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73845] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3437), 1, - anon_sym_LPAREN, - STATE(1686), 1, + ACTIONS(1020), 1, + anon_sym_LF, + STATE(1853), 1, sym_comment, - STATE(1985), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3439), 4, + ACTIONS(1018), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(3441), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, - ACTIONS(806), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(808), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [67867] = 7, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [73899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, + ACTIONS(1016), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, + STATE(1854), 1, sym_comment, - STATE(1698), 1, - aux_sym_cell_path_repeat1, - STATE(1725), 1, - sym_path, - ACTIONS(749), 42, + ACTIONS(1014), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191337,20 +204732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67930] = 7, + [73953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(755), 1, + ACTIONS(948), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1688), 1, + STATE(1855), 1, sym_comment, - STATE(1749), 1, - sym_cell_path, - ACTIONS(753), 42, + ACTIONS(946), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191393,20 +204782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67993] = 7, + [74007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(966), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1689), 1, + STATE(1856), 1, sym_comment, - STATE(1771), 1, - sym_cell_path, - ACTIONS(723), 42, + ACTIONS(964), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191449,20 +204832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68056] = 7, + [74061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(3489), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1690), 1, + STATE(1857), 1, sym_comment, - STATE(1760), 1, - sym_cell_path, - ACTIONS(768), 42, + ACTIONS(3487), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191505,20 +204882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68119] = 7, + [74115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(739), 1, + ACTIONS(782), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1691), 1, + STATE(1858), 1, sym_comment, - STATE(1748), 1, - sym_cell_path, - ACTIONS(737), 42, + ACTIONS(780), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191561,20 +204932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68182] = 7, + [74169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1692), 1, + STATE(1859), 1, sym_comment, - STATE(1764), 1, - sym_cell_path, - ACTIONS(764), 42, + ACTIONS(942), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191617,20 +204982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68245] = 7, + [74223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(731), 1, + ACTIONS(936), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1693), 1, + STATE(1860), 1, sym_comment, - STATE(1773), 1, - sym_cell_path, - ACTIONS(729), 42, + ACTIONS(934), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191673,19 +205032,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68308] = 7, + [74277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(808), 1, + ACTIONS(920), 1, anon_sym_LF, - ACTIONS(3445), 1, - anon_sym_LPAREN, - STATE(1694), 1, + STATE(1861), 1, sym_comment, - STATE(2174), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2607), 8, + ACTIONS(918), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -191694,54 +205063,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(806), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_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, sym_short_flag, - [68371] = 6, + aux_sym_unquoted_token1, + [74331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(759), 1, + ACTIONS(3493), 1, anon_sym_LF, - ACTIONS(3447), 1, - anon_sym_DOT, - STATE(1725), 1, - sym_path, - STATE(1695), 2, + STATE(1862), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 42, + ACTIONS(3491), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191784,20 +205132,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68432] = 7, - ACTIONS(3), 1, + [74385] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(743), 1, - anon_sym_LF, - ACTIONS(3443), 1, + ACTIONS(3495), 1, anon_sym_DOT, - STATE(1687), 1, + STATE(1863), 1, + sym_comment, + STATE(1876), 1, + aux_sym_cell_path_repeat1, + STATE(1948), 1, sym_path, - STATE(1696), 1, + ACTIONS(756), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(758), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [74445] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1031), 1, + anon_sym_LF, + STATE(1864), 1, sym_comment, - STATE(1767), 1, - sym_cell_path, - ACTIONS(741), 42, + ACTIONS(1029), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191840,20 +205235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68495] = 7, + [74499] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(735), 1, + ACTIONS(3499), 1, anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1687), 1, - sym_path, - STATE(1697), 1, + STATE(1865), 1, sym_comment, - STATE(1743), 1, - sym_cell_path, - ACTIONS(733), 42, + ACTIONS(3497), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -191896,29 +205285,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68558] = 7, + [74553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(747), 1, - anon_sym_LF, - ACTIONS(3443), 1, - anon_sym_DOT, - STATE(1695), 1, - aux_sym_cell_path_repeat1, - STATE(1698), 1, + STATE(1866), 1, sym_comment, - STATE(1725), 1, - sym_path, - ACTIONS(745), 42, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -191952,70 +205335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68621] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3450), 1, - anon_sym_LPAREN, - STATE(1699), 1, - sym_comment, - STATE(2238), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3452), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(3454), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - ACTIONS(806), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(808), 22, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68685] = 4, + [74607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1024), 1, anon_sym_LF, - STATE(1700), 1, + STATE(1867), 1, sym_comment, - ACTIONS(842), 44, + ACTIONS(1022), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192025,8 +205352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192060,28 +205385,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68741] = 7, + [74661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1701), 1, - sym_comment, - STATE(1714), 1, - sym_path, - STATE(1819), 1, - sym_cell_path, - ACTIONS(725), 2, - ts_builtin_sym_end, + ACTIONS(1718), 1, anon_sym_LF, - ACTIONS(723), 40, + STATE(1868), 1, + sym_comment, + ACTIONS(1716), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192115,28 +205435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68803] = 7, + [74715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1702), 1, - sym_comment, - STATE(1714), 1, - sym_path, - STATE(1781), 1, - sym_cell_path, - ACTIONS(731), 2, - ts_builtin_sym_end, + ACTIONS(1008), 1, anon_sym_LF, - ACTIONS(729), 40, + STATE(1869), 1, + sym_comment, + ACTIONS(1006), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192170,21 +205485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68865] = 7, + [74769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1703), 1, + STATE(1870), 1, sym_comment, - STATE(1714), 1, - sym_path, - STATE(1774), 1, - sym_cell_path, - ACTIONS(735), 2, + ACTIONS(901), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(733), 40, + ACTIONS(899), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192192,6 +205501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192225,21 +205535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68927] = 7, + [74823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1704), 1, + ACTIONS(3501), 1, + aux_sym_long_flag_token1, + STATE(1871), 1, sym_comment, - STATE(1714), 1, - sym_path, - STATE(1823), 1, - sym_cell_path, - ACTIONS(770), 2, + ACTIONS(1555), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 40, + ACTIONS(1553), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192280,28 +205586,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68989] = 7, - ACTIONS(3), 1, + [74879] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3495), 1, anon_sym_DOT, - STATE(1705), 1, - sym_comment, - STATE(1716), 1, - aux_sym_cell_path_repeat1, - STATE(1772), 1, + STATE(1863), 1, sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, + STATE(1872), 1, + sym_comment, + STATE(1995), 1, + sym_cell_path, + ACTIONS(730), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(732), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [74939] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3481), 1, anon_sym_LF, - ACTIONS(745), 40, + STATE(1873), 1, + sym_comment, + ACTIONS(3479), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192335,28 +205689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69051] = 7, + [74993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1706), 1, - sym_comment, - STATE(1714), 1, - sym_path, - STATE(1824), 1, - sym_cell_path, - ACTIONS(766), 2, - ts_builtin_sym_end, + ACTIONS(978), 1, anon_sym_LF, - ACTIONS(764), 40, + STATE(1874), 1, + sym_comment, + ACTIONS(976), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192390,30 +205739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69113] = 7, + [75047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(808), 1, + ACTIONS(1710), 1, anon_sym_LF, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(1707), 1, + STATE(1875), 1, sym_comment, - STATE(1759), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3458), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(806), 33, + ACTIONS(1708), 42, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, @@ -192426,6 +205762,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -192445,28 +205789,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69175] = 7, - ACTIONS(3), 1, + [75101] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3495), 1, anon_sym_DOT, - STATE(1708), 1, + STATE(1876), 1, sym_comment, - STATE(1714), 1, + STATE(1881), 1, + aux_sym_cell_path_repeat1, + STATE(1948), 1, sym_path, - STATE(1804), 1, - sym_cell_path, - ACTIONS(739), 2, - ts_builtin_sym_end, + ACTIONS(752), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(754), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [75161] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(737), 40, + STATE(1877), 1, + sym_comment, + ACTIONS(784), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192500,28 +205892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69237] = 7, + [75215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1709), 1, - sym_comment, - STATE(1714), 1, - sym_path, - STATE(1786), 1, - sym_cell_path, - ACTIONS(743), 2, - ts_builtin_sym_end, + ACTIONS(974), 1, anon_sym_LF, - ACTIONS(741), 40, + STATE(1878), 1, + sym_comment, + ACTIONS(972), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192555,21 +205942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69299] = 7, + [75269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1710), 1, + STATE(1879), 1, sym_comment, - STATE(1714), 1, - sym_path, - STATE(1803), 1, - sym_cell_path, - ACTIONS(755), 2, + ACTIONS(909), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(753), 40, + ACTIONS(907), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192577,6 +205958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192610,71 +205992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69361] = 7, + [75323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, - anon_sym_LPAREN, - STATE(1711), 1, - sym_comment, - ACTIONS(808), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2235), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2761), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(806), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [69423] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(3505), 1, anon_sym_LF, - ACTIONS(3462), 1, - anon_sym_QMARK2, - STATE(1712), 1, + STATE(1880), 1, sym_comment, - ACTIONS(836), 43, + ACTIONS(3503), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192684,7 +206009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192718,16 +206042,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69481] = 5, + [75377] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3507), 1, + anon_sym_DOT, + STATE(1948), 1, + sym_path, + STATE(1881), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(725), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [75435] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(970), 1, anon_sym_LF, - ACTIONS(3462), 1, - anon_sym_QMARK2, - STATE(1713), 1, + STATE(1882), 1, sym_comment, - ACTIONS(836), 43, + ACTIONS(968), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -192737,7 +206111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192771,28 +206144,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69539] = 7, + [75489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3456), 1, - anon_sym_DOT, - STATE(1705), 1, - aux_sym_cell_path_repeat1, - STATE(1714), 1, - sym_comment, - STATE(1772), 1, - sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, + ACTIONS(986), 1, anon_sym_LF, - ACTIONS(749), 40, + STATE(1883), 1, + sym_comment, + ACTIONS(984), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192826,49 +206194,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69601] = 8, - ACTIONS(147), 1, + [75543] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - STATE(1715), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2695), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(2342), 2, + ACTIONS(828), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2847), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2697), 6, + ACTIONS(85), 8, + aux_sym_val_number_token1, + aux_sym_val_number_token2, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(806), 7, + ACTIONS(826), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(808), 27, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -192882,27 +206247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [69665] = 6, + [75603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - anon_sym_DOT, - STATE(1772), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, + ACTIONS(986), 1, anon_sym_LF, - STATE(1716), 2, + STATE(1885), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 40, + ACTIONS(984), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192936,25 +206297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69725] = 4, + [75657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, - anon_sym_LF, - STATE(1717), 1, + STATE(1886), 1, sym_comment, - ACTIONS(846), 44, + ACTIONS(986), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(984), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -192988,17 +206346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69781] = 5, + [75710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3469), 1, - anon_sym_QMARK2, - STATE(1718), 1, + STATE(1887), 1, sym_comment, - ACTIONS(838), 2, + ACTIONS(3505), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 41, + ACTIONS(3503), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -193006,7 +206362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193040,31 +206395,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69838] = 7, + [75763] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1888), 1, + sym_comment, + ACTIONS(784), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(786), 28, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [75816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(1719), 1, + STATE(1889), 1, sym_comment, - ACTIONS(808), 2, + ACTIONS(986), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1775), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3471), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(806), 31, + ACTIONS(984), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -193075,6 +206466,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -193094,25 +206493,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69899] = 5, + [75869] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1890), 1, + sym_comment, + ACTIONS(780), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(782), 28, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [75922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1547), 1, - anon_sym_LF, - ACTIONS(3473), 1, - aux_sym_long_flag_token1, - STATE(1720), 1, + STATE(1891), 1, sym_comment, - ACTIONS(1545), 42, + ACTIONS(936), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(934), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193146,28 +206591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69956] = 7, + [75975] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(808), 1, + ACTIONS(758), 1, anon_sym_LF, - ACTIONS(3475), 1, - anon_sym_LPAREN, - STATE(1721), 1, + ACTIONS(3512), 1, + anon_sym_DOT, + STATE(1892), 1, sym_comment, - STATE(2405), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(249), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(806), 32, + STATE(1932), 1, + aux_sym_cell_path_repeat1, + STATE(1977), 1, + sym_path, + ACTIONS(756), 38, + anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -193176,6 +206614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -193200,24 +206643,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [70017] = 4, + [76034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1722), 1, - sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, + ACTIONS(3516), 1, anon_sym_LF, - ACTIONS(846), 42, + STATE(1893), 1, + sym_comment, + ACTIONS(3514), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193251,15 +206692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70072] = 4, + [76087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1723), 1, + STATE(1894), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(944), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(842), 42, + ACTIONS(942), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -193267,8 +206708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193302,24 +206741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70127] = 4, + [76140] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_LF, - STATE(1724), 1, + STATE(1895), 1, sym_comment, - ACTIONS(914), 43, + ACTIONS(932), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(930), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193353,24 +206790,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70182] = 4, + [76193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(3520), 1, anon_sym_LF, - STATE(1725), 1, + STATE(1896), 1, sym_comment, - ACTIONS(908), 43, + STATE(1912), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3518), 39, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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_CARET, + [76250] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1897), 1, + sym_comment, + ACTIONS(996), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(994), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193404,24 +206890,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70237] = 4, + [76303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_LF, - STATE(1726), 1, + STATE(1898), 1, sym_comment, - ACTIONS(901), 43, + ACTIONS(966), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(964), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193455,25 +206939,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70292] = 5, + [76356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3469), 1, - anon_sym_QMARK2, - STATE(1727), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(3524), 1, anon_sym_LF, - ACTIONS(836), 41, - anon_sym_SEMI, + STATE(1899), 1, + sym_comment, + STATE(1912), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3522), 39, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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_CARET, + [76413] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1900), 1, + sym_comment, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193507,68 +207039,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70349] = 7, - ACTIONS(147), 1, + [76466] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3477), 1, - anon_sym_DOT, - STATE(1728), 1, - sym_comment, - STATE(1765), 1, - aux_sym_cell_path_repeat1, - STATE(1842), 1, - sym_path, - ACTIONS(749), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(751), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1746), 1, anon_sym_PIPE, + ACTIONS(3528), 1, + anon_sym_LF, + STATE(1901), 1, + sym_comment, + STATE(1912), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3526), 39, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [70409] = 4, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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_CARET, + [76523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1729), 1, + STATE(1902), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(920), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(914), 41, + ACTIONS(918), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -193576,7 +207106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193610,23 +207139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70463] = 4, + [76576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_LF, - STATE(1730), 1, + STATE(1903), 1, sym_comment, - ACTIONS(976), 42, + ACTIONS(1031), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1029), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193660,23 +207188,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70517] = 4, + [76629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(946), 1, - anon_sym_LF, - STATE(1731), 1, + STATE(1904), 1, sym_comment, - ACTIONS(944), 42, + ACTIONS(1718), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1716), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193710,23 +207237,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70571] = 4, + [76682] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_LF, - STATE(1732), 1, + STATE(1905), 1, sym_comment, - ACTIONS(3479), 42, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(938), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193760,23 +207286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70625] = 4, + [76735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(942), 1, - anon_sym_LF, - STATE(1733), 1, + STATE(1906), 1, sym_comment, - ACTIONS(940), 42, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193810,23 +207335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70679] = 4, + [76788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(926), 1, - anon_sym_LF, - STATE(1734), 1, + STATE(1907), 1, sym_comment, - ACTIONS(924), 42, + ACTIONS(982), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(980), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193860,23 +207384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70733] = 4, + [76841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, - anon_sym_LF, - STATE(1735), 1, + STATE(1908), 1, sym_comment, - ACTIONS(846), 42, + ACTIONS(1008), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1006), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193910,23 +207433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70787] = 4, + [76894] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(934), 1, - anon_sym_LF, - STATE(1736), 1, + STATE(1909), 1, sym_comment, - ACTIONS(932), 42, + ACTIONS(1020), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1018), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -193960,26 +207482,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70841] = 4, + [76947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - STATE(1737), 1, + STATE(1910), 1, sym_comment, - ACTIONS(936), 42, + ACTIONS(3481), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(311), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3479), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -194010,23 +207532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70895] = 4, + [77002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3485), 1, - anon_sym_LF, - STATE(1738), 1, + STATE(1911), 1, sym_comment, - ACTIONS(3483), 42, + ACTIONS(3481), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3479), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194060,23 +207581,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70949] = 4, + [77055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, + ACTIONS(3532), 1, anon_sym_LF, - STATE(1739), 1, + ACTIONS(3535), 1, + anon_sym_PIPE, + STATE(1912), 2, sym_comment, - ACTIONS(3487), 42, - anon_sym_SEMI, + aux_sym_pipe_element_repeat1, + ACTIONS(3530), 39, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194100,33 +207630,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_short_flag, - aux_sym_unquoted_token1, - [71003] = 4, + anon_sym_CARET, + [77110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3493), 1, - anon_sym_LF, - STATE(1740), 1, + STATE(1913), 1, sym_comment, - ACTIONS(3491), 42, + ACTIONS(958), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(956), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194160,14 +207680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71057] = 4, + [77163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1573), 1, + ACTIONS(3540), 1, anon_sym_LF, - STATE(1741), 1, + STATE(1914), 1, sym_comment, - ACTIONS(1571), 42, + ACTIONS(3538), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -194176,7 +207696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194210,46 +207729,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71111] = 7, - ACTIONS(3), 1, + [77216] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3542), 1, anon_sym_LPAREN, - STATE(1742), 1, + STATE(1915), 1, sym_comment, - ACTIONS(808), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2532), 2, + STATE(2896), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(85), 8, + ACTIONS(2900), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2902), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(806), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(826), 8, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_short_flag, + ACTIONS(828), 23, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -194263,23 +207782,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [71171] = 4, + [77277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(958), 1, - anon_sym_LF, - STATE(1743), 1, + STATE(1916), 1, sym_comment, - ACTIONS(956), 42, + ACTIONS(1024), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1022), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194313,23 +207831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71225] = 4, + [77330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(974), 1, - anon_sym_LF, - STATE(1744), 1, + STATE(1917), 1, sym_comment, - ACTIONS(972), 42, + ACTIONS(1016), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1014), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194363,23 +207880,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71279] = 4, + [77383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(970), 1, - anon_sym_LF, - STATE(1745), 1, + STATE(1918), 1, sym_comment, - ACTIONS(968), 42, + ACTIONS(1000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194413,23 +207929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71333] = 4, + [77436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_LF, - STATE(1746), 1, + STATE(1919), 1, sym_comment, - ACTIONS(842), 42, + ACTIONS(924), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(922), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194463,23 +207978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71387] = 4, + [77489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - anon_sym_LF, - STATE(1747), 1, + STATE(1920), 1, sym_comment, - ACTIONS(3497), 42, + ACTIONS(115), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(113), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194513,23 +208027,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71441] = 4, + [77542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(3546), 1, anon_sym_LF, - STATE(1748), 1, + STATE(1912), 1, + aux_sym_pipe_element_repeat1, + STATE(1921), 1, sym_comment, - ACTIONS(1006), 42, + ACTIONS(3544), 39, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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_CARET, + [77599] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1922), 1, + sym_comment, + ACTIONS(3485), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194563,23 +208127,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71495] = 4, + [77652] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(3550), 1, anon_sym_LF, - STATE(1749), 1, + STATE(1912), 1, + aux_sym_pipe_element_repeat1, + STATE(1923), 1, sym_comment, - ACTIONS(988), 42, - anon_sym_SEMI, + ACTIONS(3548), 39, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194603,25 +208177,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_short_flag, - aux_sym_unquoted_token1, - [71549] = 4, + anon_sym_CARET, + [77709] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3552), 1, + anon_sym_QMARK2, + STATE(1924), 1, + sym_comment, + ACTIONS(772), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(774), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [77764] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1925), 1, sym_comment, - ACTIONS(903), 2, + ACTIONS(970), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(901), 41, + ACTIONS(968), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -194629,7 +208244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194663,23 +208277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71603] = 4, + [77817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_LF, - STATE(1751), 1, + STATE(1926), 1, sym_comment, - ACTIONS(976), 42, + ACTIONS(974), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(972), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194713,27 +208326,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71657] = 5, + [77870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_LF, - STATE(1752), 1, + STATE(1927), 1, sym_comment, - ACTIONS(305), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3479), 39, + ACTIONS(3499), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3497), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -194764,23 +208375,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71713] = 4, + [77923] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(766), 1, anon_sym_LF, - STATE(1753), 1, + ACTIONS(3512), 1, + anon_sym_DOT, + STATE(1892), 1, + sym_path, + STATE(1928), 1, sym_comment, - ACTIONS(1963), 42, + STATE(2029), 1, + sym_cell_path, + ACTIONS(764), 38, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [77982] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1929), 1, + sym_comment, + ACTIONS(3489), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3487), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194814,23 +208476,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71767] = 4, + [78035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(1754), 1, + STATE(1930), 1, sym_comment, - ACTIONS(1559), 42, + ACTIONS(1710), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1708), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194864,17 +208525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71821] = 5, + [78088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_long_flag_token1, - STATE(1755), 1, + STATE(1931), 1, sym_comment, - ACTIONS(1547), 2, + ACTIONS(962), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1545), 40, + ACTIONS(960), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -194915,23 +208574,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71877] = 4, + [78141] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1031), 1, + ACTIONS(754), 1, anon_sym_LF, - STATE(1756), 1, + ACTIONS(3512), 1, + anon_sym_DOT, + STATE(1932), 1, sym_comment, - ACTIONS(1029), 42, + STATE(1935), 1, + aux_sym_cell_path_repeat1, + STATE(1977), 1, + sym_path, + ACTIONS(752), 38, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [78200] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1933), 1, + sym_comment, + ACTIONS(978), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(976), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194965,23 +208675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71931] = 4, + [78253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_LF, - STATE(1757), 1, + STATE(1934), 1, sym_comment, - ACTIONS(964), 42, + ACTIONS(3493), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3491), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195015,23 +208724,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71985] = 4, + [78306] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(725), 1, anon_sym_LF, - STATE(1758), 1, + ACTIONS(3554), 1, + anon_sym_DOT, + STATE(1977), 1, + sym_path, + STATE(1935), 2, sym_comment, - ACTIONS(984), 42, + aux_sym_cell_path_repeat1, + ACTIONS(723), 38, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [78363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1936), 1, + sym_comment, + ACTIONS(105), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(103), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195065,23 +208824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72039] = 4, + [78416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_LF, - STATE(1759), 1, + STATE(1937), 1, sym_comment, - ACTIONS(980), 42, + ACTIONS(948), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(946), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195115,23 +208873,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72093] = 4, + [78469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_LF, - STATE(1760), 1, + STATE(1938), 1, sym_comment, - ACTIONS(1025), 42, + ACTIONS(990), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(988), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195165,23 +208922,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72147] = 4, + [78522] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3552), 1, + anon_sym_QMARK2, + STATE(1939), 1, + sym_comment, + ACTIONS(772), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(774), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [78577] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(109), 1, + ACTIONS(725), 1, anon_sym_LF, - STATE(1761), 1, + ACTIONS(3557), 1, + anon_sym_DOT, + STATE(2032), 1, + sym_path, + STATE(1940), 2, sym_comment, - ACTIONS(107), 42, + aux_sym_cell_path_repeat1, + ACTIONS(723), 37, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [78633] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3560), 1, + anon_sym_DOT, + STATE(1941), 1, + sym_comment, + STATE(1945), 1, + aux_sym_cell_path_repeat1, + STATE(2030), 1, + sym_path, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [78691] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1942), 1, + sym_comment, + ACTIONS(903), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(905), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [78743] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(732), 1, + anon_sym_LF, + ACTIONS(3562), 1, + anon_sym_DOT, + STATE(1943), 1, + sym_comment, + STATE(1946), 1, + sym_path, + STATE(2059), 1, + sym_cell_path, + ACTIONS(730), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [78801] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3564), 1, + anon_sym_LBRACK, + ACTIONS(3570), 1, + anon_sym_list, + STATE(1944), 1, + sym_comment, + STATE(4036), 1, + sym__type_annotation, + STATE(4037), 1, + sym__multiple_types, + STATE(4038), 1, + sym__one_type, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3566), 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, + [78865] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3560), 1, + anon_sym_DOT, + STATE(1945), 1, + sym_comment, + STATE(1961), 1, + aux_sym_cell_path_repeat1, + STATE(2030), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [78923] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(758), 1, + anon_sym_LF, + ACTIONS(3562), 1, + anon_sym_DOT, + STATE(1946), 1, + sym_comment, + STATE(1956), 1, + aux_sym_cell_path_repeat1, + STATE(2032), 1, + sym_path, + ACTIONS(756), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [78981] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3572), 1, + anon_sym_LF, + STATE(1947), 1, + sym_comment, + ACTIONS(3530), 40, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195205,33 +209375,584 @@ static const uint16_t ts_small_parse_table[] = { 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_CARET, + [79033] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1948), 1, + sym_comment, + ACTIONS(907), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(909), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [79085] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3570), 1, + anon_sym_list, + ACTIONS(3574), 1, + anon_sym_RBRACK, + STATE(1949), 1, + sym_comment, + STATE(1951), 1, + aux_sym__multiple_types_repeat1, + STATE(2234), 1, + sym__one_type, + STATE(3968), 1, + sym__type_annotation, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3566), 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, + [79149] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3560), 1, + anon_sym_DOT, + STATE(1941), 1, + sym_path, + STATE(1950), 1, + sym_comment, + STATE(2063), 1, + sym_cell_path, + ACTIONS(766), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(764), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79207] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3570), 1, + anon_sym_list, + ACTIONS(3576), 1, + anon_sym_RBRACK, + STATE(1951), 1, + sym_comment, + STATE(1953), 1, + aux_sym__multiple_types_repeat1, + STATE(2234), 1, + sym__one_type, + STATE(3968), 1, + sym__type_annotation, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3566), 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, + [79271] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(782), 1, + anon_sym_LF, + STATE(1952), 1, + sym_comment, + ACTIONS(780), 40, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79323] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + anon_sym_RBRACK, + ACTIONS(3586), 1, + anon_sym_list, + STATE(2234), 1, + sym__one_type, + STATE(3968), 1, + sym__type_annotation, + ACTIONS(3583), 2, + anon_sym_table, + anon_sym_record, + STATE(1953), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3580), 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, + [79385] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3589), 1, + anon_sym_QMARK2, + STATE(1954), 1, + sym_comment, + ACTIONS(772), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79439] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3589), 1, + anon_sym_QMARK2, + STATE(1955), 1, + sym_comment, + ACTIONS(772), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79493] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(754), 1, + anon_sym_LF, + ACTIONS(3562), 1, + anon_sym_DOT, + STATE(1940), 1, + aux_sym_cell_path_repeat1, + STATE(1956), 1, + sym_comment, + STATE(2032), 1, + sym_path, + ACTIONS(752), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - aux_sym_unquoted_token1, - [72201] = 4, + [79551] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3593), 1, + anon_sym_LT, + STATE(1957), 1, + sym_comment, + ACTIONS(3591), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [79603] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3595), 1, + anon_sym_LT, + STATE(1958), 1, + sym_comment, + ACTIONS(3591), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [79655] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(954), 1, + ACTIONS(3599), 1, anon_sym_LF, - STATE(1762), 1, + STATE(1959), 1, sym_comment, - ACTIONS(952), 42, - anon_sym_SEMI, + ACTIONS(3597), 40, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195255,152 +209976,181 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_short_flag, - aux_sym_unquoted_token1, - [72255] = 4, + anon_sym_CARET, + [79707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, + ACTIONS(786), 1, anon_sym_LF, - STATE(1763), 1, + STATE(1960), 1, sym_comment, - ACTIONS(3503), 42, + ACTIONS(784), 40, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72309] = 4, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79759] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(922), 1, + ACTIONS(3601), 1, + anon_sym_DOT, + STATE(2030), 1, + sym_path, + ACTIONS(725), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1764), 1, + STATE(1961), 2, sym_comment, - ACTIONS(920), 42, + aux_sym_cell_path_repeat1, + ACTIONS(723), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72363] = 7, - ACTIONS(147), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79815] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3477), 1, - anon_sym_DOT, - STATE(1765), 1, + STATE(1962), 1, sym_comment, - STATE(1766), 1, - aux_sym_cell_path_repeat1, - STATE(1842), 1, - sym_path, - ACTIONS(745), 13, - sym_identifier, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 38, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [79866] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3604), 1, + anon_sym_DOT, + STATE(2076), 1, + sym_path, + STATE(1963), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(747), 27, - anon_sym_COLON, + ACTIONS(725), 31, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -195416,19 +210166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [72423] = 6, - ACTIONS(147), 1, + [79921] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3507), 1, - anon_sym_DOT, - STATE(1842), 1, - sym_path, - STATE(1766), 2, + ACTIONS(359), 1, + anon_sym_DOT_DOT, + STATE(1964), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 13, + ACTIONS(357), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -195441,8 +210194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(759), 27, + ACTIONS(928), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -195468,70 +210220,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [72481] = 4, + [79976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(782), 1, anon_sym_LF, - STATE(1767), 1, + STATE(1965), 1, sym_comment, - ACTIONS(1002), 42, + ACTIONS(780), 39, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [72535] = 7, - ACTIONS(147), 1, + [80027] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1966), 1, + sym_comment, + ACTIONS(3607), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [80076] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3477), 1, + ACTIONS(3609), 1, anon_sym_DOT, - STATE(1728), 1, - sym_path, - STATE(1768), 1, + STATE(1967), 1, sym_comment, - STATE(1872), 1, + STATE(1969), 1, + sym_path, + STATE(1995), 1, sym_cell_path, - ACTIONS(737), 13, + ACTIONS(730), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -195544,8 +210337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(739), 27, + ACTIONS(732), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -195571,449 +210363,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [72595] = 4, - ACTIONS(3), 1, + [80133] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LF, - STATE(1769), 1, + ACTIONS(3611), 1, + anon_sym_DOT, + STATE(1968), 1, sym_comment, - ACTIONS(1014), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + STATE(1971), 1, + aux_sym_cell_path_repeat1, + STATE(2050), 1, + sym_path, + ACTIONS(756), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(758), 25, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72649] = 4, - ACTIONS(3), 1, + [80190] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(105), 1, - anon_sym_LF, - STATE(1770), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, sym_comment, - ACTIONS(103), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(1985), 1, + aux_sym_cell_path_repeat1, + STATE(2060), 1, + sym_path, + ACTIONS(756), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(758), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72703] = 4, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [80247] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LF, - STATE(1771), 1, + ACTIONS(3617), 1, + anon_sym_PIPE, + STATE(1970), 1, sym_comment, - ACTIONS(992), 42, - anon_sym_SEMI, + ACTIONS(3615), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72757] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1772), 1, - sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(908), 41, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3613), 23, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_DOT_DOT_LT, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72811] = 4, - ACTIONS(3), 1, + [80300] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_LF, - STATE(1773), 1, + ACTIONS(3611), 1, + anon_sym_DOT, + STATE(1971), 1, sym_comment, - ACTIONS(1018), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + STATE(2008), 1, + aux_sym_cell_path_repeat1, + STATE(2050), 1, + sym_path, + ACTIONS(752), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(754), 25, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72865] = 4, - ACTIONS(3), 1, + [80357] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1774), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(1972), 1, sym_comment, - ACTIONS(958), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(956), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2191), 1, + sym_cell_path, + ACTIONS(736), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(738), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72918] = 4, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [80414] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1775), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(1973), 1, sym_comment, - ACTIONS(982), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(980), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2153), 1, + sym_cell_path, + ACTIONS(760), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(762), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [72971] = 4, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [80471] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1974), 1, sym_comment, - ACTIONS(1561), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1559), 40, - anon_sym_SEMI, + ACTIONS(780), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(782), 34, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73024] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [80522] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(3617), 1, anon_sym_PIPE, - ACTIONS(3512), 1, - anon_sym_LF, - STATE(1777), 1, + STATE(1975), 1, sym_comment, - STATE(1797), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3510), 39, - sym_cmd_identifier, + ACTIONS(3621), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -196021,21 +210732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [73081] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(3516), 1, - anon_sym_LF, - STATE(1778), 1, - sym_comment, - STATE(1797), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3514), 39, + ACTIONS(3619), 23, sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_break, @@ -196043,99 +210741,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, anon_sym_try, anon_sym_return, anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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_CARET, - [73138] = 5, - ACTIONS(3), 1, + [80575] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1779), 1, + ACTIONS(3623), 1, + anon_sym_DOT, + STATE(1976), 1, sym_comment, - ACTIONS(3481), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(311), 3, - anon_sym_DOT_DOT_LT, + STATE(2005), 1, + sym_path, + STATE(2089), 1, + sym_cell_path, + ACTIONS(730), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3479), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(732), 31, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73193] = 7, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [80632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(3518), 1, - anon_sym_DOT, - STATE(1780), 1, + STATE(1977), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1866), 1, - sym_path, - ACTIONS(749), 38, + ACTIONS(907), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, @@ -196144,6 +210822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -196174,168 +210853,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [73252] = 4, + [80683] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1978), 1, + sym_comment, + ACTIONS(3625), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [80732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1979), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(786), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1018), 40, + ACTIONS(784), 38, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73305] = 4, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [80783] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(846), 40, + STATE(1980), 1, + sym_comment, + ACTIONS(784), 39, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [73358] = 4, - ACTIONS(3), 1, + [80834] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1783), 1, + ACTIONS(3617), 1, + anon_sym_PIPE, + STATE(1981), 1, sym_comment, - ACTIONS(954), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(952), 40, - anon_sym_SEMI, + ACTIONS(3629), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73411] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(3522), 1, - anon_sym_LF, - STATE(1784), 1, - sym_comment, - STATE(1797), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3520), 39, + anon_sym_CARET, + ACTIONS(3627), 23, sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_break, @@ -196343,366 +211026,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, anon_sym_try, anon_sym_return, anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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_CARET, - [73468] = 4, + [80887] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1785), 1, + ACTIONS(3631), 1, + anon_sym_DOT, + STATE(1982), 1, sym_comment, - ACTIONS(978), 2, + STATE(2007), 1, + sym_path, + STATE(2167), 1, + sym_cell_path, + ACTIONS(732), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 40, + ACTIONS(730), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [73521] = 4, + [80944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, - sym_comment, - ACTIONS(1004), 2, - ts_builtin_sym_end, + ACTIONS(901), 1, anon_sym_LF, - ACTIONS(1002), 40, + STATE(1983), 1, + sym_comment, + ACTIONS(899), 39, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [80995] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1984), 1, + sym_comment, + ACTIONS(3633), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [81044] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1985), 1, + sym_comment, + STATE(1988), 1, + aux_sym_cell_path_repeat1, + STATE(2060), 1, + sym_path, + ACTIONS(752), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(754), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [81101] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3635), 1, + anon_sym_QMARK2, + STATE(1986), 1, + sym_comment, + ACTIONS(772), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [73574] = 4, + [81154] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, - sym_comment, - ACTIONS(3489), 2, - ts_builtin_sym_end, + ACTIONS(774), 1, anon_sym_LF, - ACTIONS(3487), 40, + ACTIONS(3635), 1, + anon_sym_QMARK2, + STATE(1987), 1, + sym_comment, + ACTIONS(772), 38, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [73627] = 4, - ACTIONS(3), 1, + [81207] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1788), 1, + ACTIONS(3637), 1, + anon_sym_DOT, + STATE(2060), 1, + sym_path, + STATE(1988), 2, sym_comment, - ACTIONS(3481), 2, + aux_sym_cell_path_repeat1, + ACTIONS(723), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(725), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [81262] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1989), 1, + sym_comment, + ACTIONS(3640), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [81311] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3642), 1, + anon_sym_DOT, + STATE(2086), 1, + sym_path, + ACTIONS(725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3479), 40, + STATE(1990), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [73680] = 4, - ACTIONS(3), 1, + [81366] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1789), 1, + ACTIONS(3617), 1, + anon_sym_PIPE, + STATE(1991), 1, sym_comment, - ACTIONS(3505), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3503), 40, - anon_sym_SEMI, + ACTIONS(3647), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73733] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1790), 1, - sym_comment, - ACTIONS(1965), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1963), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3645), 23, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [73786] = 4, - ACTIONS(147), 1, + [81419] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(1992), 1, + sym_comment, + STATE(2175), 1, + sym_cell_path, + ACTIONS(748), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(750), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [81476] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(1993), 1, + sym_comment, + ACTIONS(3649), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [81525] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1791), 1, + ACTIONS(905), 1, + anon_sym_LF, + STATE(1994), 1, sym_comment, - ACTIONS(842), 14, - sym_identifier, + ACTIONS(903), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(844), 28, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -196713,19 +211662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [73839] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [81576] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1995), 1, sym_comment, - ACTIONS(846), 14, + ACTIONS(930), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -196735,7 +211684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(848), 28, + ACTIONS(932), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -196744,7 +211693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -196764,46 +211712,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [73892] = 8, - ACTIONS(147), 1, + [81627] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3524), 1, - anon_sym_LPAREN, - STATE(1793), 1, + ACTIONS(3651), 1, + anon_sym_QMARK2, + STATE(1996), 1, sym_comment, - STATE(2659), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2896), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2898), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(806), 8, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 37, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_short_flag, - ACTIONS(808), 23, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -196817,45 +211760,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [73953] = 7, - ACTIONS(3), 1, + [81680] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(747), 1, - anon_sym_LF, - ACTIONS(3518), 1, + ACTIONS(3609), 1, anon_sym_DOT, - STATE(1794), 1, - sym_comment, - STATE(1795), 1, - aux_sym_cell_path_repeat1, - STATE(1866), 1, + STATE(1969), 1, sym_path, - ACTIONS(745), 38, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(1997), 1, + sym_comment, + STATE(2176), 1, + sym_cell_path, + ACTIONS(744), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(746), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -196866,30 +211810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [74012] = 6, + [81737] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(759), 1, - anon_sym_LF, - ACTIONS(3526), 1, - anon_sym_DOT, - STATE(1866), 1, - sym_path, - STATE(1795), 2, + ACTIONS(3651), 1, + anon_sym_QMARK2, + STATE(1998), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 38, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 37, anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -196920,69 +211858,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [74069] = 4, - ACTIONS(3), 1, + [81790] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(3617), 1, + anon_sym_PIPE, + STATE(1999), 1, sym_comment, - ACTIONS(1031), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 40, - anon_sym_SEMI, + ACTIONS(3655), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74122] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3531), 1, - anon_sym_LF, - ACTIONS(3534), 1, - anon_sym_PIPE, - STATE(1797), 2, - sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3529), 39, + anon_sym_CARET, + ACTIONS(3653), 23, sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_break, @@ -196990,440 +211891,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, anon_sym_try, anon_sym_return, anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_CARET, - [74177] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(942), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(940), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74230] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1799), 1, - sym_comment, - ACTIONS(3485), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3483), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74283] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1800), 1, - sym_comment, - ACTIONS(1573), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1571), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74336] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1801), 1, - sym_comment, - ACTIONS(966), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(964), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74389] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1802), 1, - sym_comment, - ACTIONS(970), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(968), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74442] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1803), 1, - sym_comment, - ACTIONS(990), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(988), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74495] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1804), 1, - sym_comment, - ACTIONS(1008), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1006), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74548] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1805), 1, - sym_comment, - ACTIONS(974), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(972), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74601] = 5, - ACTIONS(147), 1, + [81843] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3537), 1, - anon_sym_QMARK2, - STATE(1806), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(2000), 1, sym_comment, - ACTIONS(836), 14, + STATE(2148), 1, + sym_cell_path, + ACTIONS(768), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -197432,8 +211930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(838), 27, + ACTIONS(770), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -197459,41 +211956,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [74656] = 5, - ACTIONS(147), 1, + [81900] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3537), 1, - anon_sym_QMARK2, - STATE(1807), 1, + ACTIONS(3631), 1, + anon_sym_DOT, + STATE(1990), 1, + aux_sym_cell_path_repeat1, + STATE(2001), 1, sym_comment, - ACTIONS(836), 14, - sym_identifier, + STATE(2086), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 35, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(838), 27, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [81957] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2002), 1, + sym_comment, + ACTIONS(784), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(786), 34, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -197509,96 +212050,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [74711] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1808), 1, - sym_comment, - ACTIONS(3499), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3497), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74764] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [82008] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(731), 1, - anon_sym_LF, - ACTIONS(3518), 1, + ACTIONS(3623), 1, anon_sym_DOT, - STATE(1780), 1, - sym_path, - STATE(1809), 1, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + STATE(2003), 1, sym_comment, - STATE(1894), 1, - sym_cell_path, - ACTIONS(729), 38, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(2076), 1, + sym_path, + ACTIONS(752), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(754), 31, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -197612,859 +212101,657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [74823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1810), 1, - sym_comment, - ACTIONS(3493), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3491), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74876] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1811), 1, - sym_comment, - ACTIONS(986), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(984), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74929] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1812), 1, - sym_comment, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [74982] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1813), 1, - sym_comment, - ACTIONS(934), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(932), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75035] = 4, - ACTIONS(3), 1, + [82065] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1814), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(2004), 1, sym_comment, - ACTIONS(926), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(924), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2107), 1, + sym_cell_path, + ACTIONS(764), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(766), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75088] = 4, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [82122] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1815), 1, + ACTIONS(3623), 1, + anon_sym_DOT, + STATE(2003), 1, + aux_sym_cell_path_repeat1, + STATE(2005), 1, sym_comment, - ACTIONS(946), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(944), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2076), 1, + sym_path, + ACTIONS(756), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(758), 31, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75141] = 6, - ACTIONS(3), 1, + [82179] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(3541), 1, - anon_sym_LF, - STATE(1797), 1, - aux_sym_pipe_element_repeat1, - STATE(1816), 1, + ACTIONS(3611), 1, + anon_sym_DOT, + STATE(1968), 1, + sym_path, + STATE(2006), 1, sym_comment, - ACTIONS(3539), 39, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + STATE(2166), 1, + sym_cell_path, + ACTIONS(730), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(732), 25, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_CARET, - [75198] = 4, + [82236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3545), 1, - anon_sym_LF, - STATE(1817), 1, + ACTIONS(3631), 1, + anon_sym_DOT, + STATE(2001), 1, + aux_sym_cell_path_repeat1, + STATE(2007), 1, sym_comment, - ACTIONS(3543), 41, + STATE(2086), 1, + sym_path, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [75251] = 6, - ACTIONS(3), 1, + [82293] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(3549), 1, - anon_sym_LF, - STATE(1797), 1, - aux_sym_pipe_element_repeat1, - STATE(1818), 1, + ACTIONS(3657), 1, + anon_sym_DOT, + STATE(2050), 1, + sym_path, + STATE(2008), 2, sym_comment, - ACTIONS(3547), 39, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(723), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(725), 25, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_CARET, - [75308] = 4, - ACTIONS(3), 1, + [82348] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1819), 1, + ACTIONS(3609), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_path, + STATE(2009), 1, sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(992), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2182), 1, + sym_cell_path, + ACTIONS(740), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(742), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [82405] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2010), 1, + sym_comment, + ACTIONS(784), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT, + ACTIONS(786), 26, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75361] = 4, - ACTIONS(3), 1, + [82455] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3553), 1, - anon_sym_LF, - STATE(1820), 1, + ACTIONS(3660), 1, + anon_sym_QMARK2, + STATE(2011), 1, sym_comment, - ACTIONS(3551), 41, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, + ACTIONS(772), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT, + ACTIONS(774), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75414] = 4, - ACTIONS(3), 1, + [82507] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1821), 1, + ACTIONS(3662), 1, + anon_sym_QMARK2, + STATE(2012), 1, sym_comment, - ACTIONS(978), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(976), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(772), 7, + anon_sym_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(774), 31, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75467] = 4, + [82559] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1822), 1, + ACTIONS(3664), 1, + anon_sym_QMARK2, + STATE(2013), 1, sym_comment, - ACTIONS(109), 2, + ACTIONS(774), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(107), 40, + ACTIONS(772), 36, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [75520] = 4, + [82611] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1823), 1, + ACTIONS(3664), 1, + anon_sym_QMARK2, + STATE(2014), 1, sym_comment, - ACTIONS(1027), 2, + ACTIONS(774), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1025), 40, + ACTIONS(772), 36, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - aux_sym_unquoted_token1, - [75573] = 4, - ACTIONS(3), 1, + [82663] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(2015), 1, sym_comment, - ACTIONS(922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(920), 40, - anon_sym_SEMI, + ACTIONS(3668), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1825), 1, - sym_comment, - ACTIONS(1016), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1014), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3666), 23, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75679] = 4, - ACTIONS(3), 1, + [82713] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(2016), 1, sym_comment, - ACTIONS(105), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(103), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(780), 7, + anon_sym_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(782), 32, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [75732] = 4, + [82763] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1827), 1, - sym_comment, - ACTIONS(844), 2, - ts_builtin_sym_end, + ACTIONS(725), 1, anon_sym_LF, - ACTIONS(842), 40, + ACTIONS(3670), 1, + anon_sym_DOT, + STATE(2097), 1, + sym_path, + STATE(2017), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -198488,197 +212775,31 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_short_flag, - aux_sym_unquoted_token1, - [75785] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(759), 1, - anon_sym_LF, - ACTIONS(3555), 1, - anon_sym_DOT, - STATE(1902), 1, - sym_path, - STATE(1828), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [75841] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3558), 1, - anon_sym_LBRACK, - ACTIONS(3564), 1, - anon_sym_list, - STATE(1829), 1, - sym_comment, - STATE(3718), 1, - sym__multiple_types, - STATE(3719), 1, - sym__type_annotation, - STATE(3746), 1, - sym__one_type, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [75905] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3564), 1, - anon_sym_list, - ACTIONS(3566), 1, - anon_sym_RBRACK, - STATE(1830), 1, - sym_comment, - STATE(1840), 1, - aux_sym__multiple_types_repeat1, - STATE(2106), 1, - sym__one_type, - STATE(3725), 1, - sym__type_annotation, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [75969] = 4, + [82817] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3570), 1, + ACTIONS(754), 1, anon_sym_LF, - STATE(1831), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + STATE(2017), 1, + aux_sym_cell_path_repeat1, + STATE(2018), 1, sym_comment, - ACTIONS(3568), 40, - sym_cmd_identifier, + STATE(2097), 1, + sym_path, + ACTIONS(752), 35, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, + anon_sym_RBRACE, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -198703,43 +212824,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [76021] = 5, - ACTIONS(3), 1, + sym_short_flag, + [82873] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(3572), 1, - anon_sym_QMARK2, - STATE(1832), 1, + STATE(2019), 1, sym_comment, - ACTIONS(836), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(784), 7, anon_sym_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(786), 32, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -198753,27 +212869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76075] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [82923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3574), 1, - anon_sym_DOT, - STATE(1833), 1, + STATE(2020), 1, sym_comment, - STATE(1846), 1, - aux_sym_cell_path_repeat1, - STATE(1920), 1, - sym_path, - ACTIONS(751), 2, + ACTIONS(901), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(749), 36, + ACTIONS(899), 37, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -198804,91 +212917,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76133] = 6, - ACTIONS(3), 1, + [82973] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3576), 1, - anon_sym_DOT, - STATE(1920), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1834), 2, + STATE(2021), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(780), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [76189] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(848), 1, - anon_sym_LF, - STATE(1835), 1, - sym_comment, - ACTIONS(846), 40, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(782), 26, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -198899,36 +212958,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [76241] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3574), 1, - anon_sym_DOT, - STATE(1833), 1, - sym_path, - STATE(1836), 1, + STATE(2022), 1, sym_comment, - STATE(1965), 1, - sym_cell_path, - ACTIONS(731), 2, + ACTIONS(782), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(729), 36, - anon_sym_EQ, + ACTIONS(780), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -198953,82 +213005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76299] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3579), 1, - anon_sym_RBRACK, - ACTIONS(3587), 1, - anon_sym_list, - STATE(2106), 1, - sym__one_type, - STATE(3725), 1, - sym__type_annotation, - ACTIONS(3584), 2, - anon_sym_table, - anon_sym_record, - STATE(1837), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3581), 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, - [76361] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [83073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, - anon_sym_LF, - ACTIONS(3590), 1, - anon_sym_DOT, - STATE(1838), 1, + STATE(2023), 1, sym_comment, - STATE(1847), 1, - aux_sym_cell_path_repeat1, - STATE(1902), 1, - sym_path, - ACTIONS(749), 37, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 37, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -199057,117 +213055,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [76419] = 7, + [83123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(739), 1, + ACTIONS(758), 1, anon_sym_LF, - ACTIONS(3590), 1, + ACTIONS(3673), 1, anon_sym_DOT, - STATE(1838), 1, - sym_path, - STATE(1839), 1, + STATE(2018), 1, + aux_sym_cell_path_repeat1, + STATE(2024), 1, sym_comment, - STATE(1952), 1, - sym_cell_path, - ACTIONS(737), 37, + STATE(2097), 1, + sym_path, + ACTIONS(756), 35, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, sym_short_flag, - [76477] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3564), 1, - anon_sym_list, - ACTIONS(3592), 1, - anon_sym_RBRACK, - STATE(1837), 1, - aux_sym__multiple_types_repeat1, - STATE(1840), 1, - sym_comment, - STATE(2106), 1, - sym__one_type, - STATE(3725), 1, - sym__type_annotation, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [76541] = 4, - ACTIONS(147), 1, + [83179] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(2025), 1, sym_comment, - ACTIONS(901), 14, + ACTIONS(784), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -199181,8 +213123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(903), 27, + ACTIONS(786), 26, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -199191,6 +213132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -199208,14 +213150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [76593] = 4, - ACTIONS(147), 1, + [83229] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(2026), 1, sym_comment, - ACTIONS(908), 14, + ACTIONS(780), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -199229,8 +213169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(910), 27, + ACTIONS(782), 26, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -199239,6 +213178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -199256,19 +213196,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [83279] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2027), 1, + sym_comment, + ACTIONS(3677), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [76645] = 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3675), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [83329] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(732), 1, anon_sym_LF, - ACTIONS(3572), 1, - anon_sym_QMARK2, - STATE(1843), 1, + ACTIONS(3679), 1, + anon_sym_DOT, + STATE(2028), 1, sym_comment, - ACTIONS(836), 39, - anon_sym_EQ, + STATE(2037), 1, + sym_path, + STATE(2257), 1, + sym_cell_path, + ACTIONS(730), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -199276,13 +213263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -199307,62 +213288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76699] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3594), 1, - anon_sym_LF, - STATE(1844), 1, - sym_comment, - ACTIONS(3529), 40, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_CARET, - [76751] = 4, + [83385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1031), 1, anon_sym_LF, - STATE(1845), 1, + STATE(2029), 1, sym_comment, - ACTIONS(842), 40, + ACTIONS(1029), 38, anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, @@ -199371,14 +213307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -199403,27 +213337,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76803] = 7, + [83435] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3574), 1, - anon_sym_DOT, - STATE(1834), 1, - aux_sym_cell_path_repeat1, - STATE(1846), 1, + STATE(2030), 1, sym_comment, - STATE(1920), 1, - sym_path, - ACTIONS(747), 2, + ACTIONS(909), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(745), 36, + ACTIONS(907), 37, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -199454,25 +213383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76861] = 7, + [83485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(747), 1, + ACTIONS(725), 1, anon_sym_LF, - ACTIONS(3590), 1, + ACTIONS(3681), 1, anon_sym_DOT, - STATE(1828), 1, - aux_sym_cell_path_repeat1, - STATE(1847), 1, - sym_comment, - STATE(1902), 1, + STATE(2143), 1, sym_path, - ACTIONS(745), 37, + STATE(2031), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -199504,42 +213431,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [76919] = 7, - ACTIONS(147), 1, + [83539] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3596), 1, - anon_sym_DOT, - STATE(1848), 1, + ACTIONS(909), 1, + anon_sym_LF, + STATE(2032), 1, sym_comment, - STATE(1890), 1, - sym_path, - STATE(1975), 1, - sym_cell_path, - ACTIONS(737), 12, - sym_identifier, + ACTIONS(907), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(739), 25, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -199550,20 +213470,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76976] = 4, + sym_short_flag, + [83589] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(916), 1, + ACTIONS(754), 1, anon_sym_LF, - STATE(1849), 1, + ACTIONS(3679), 1, + anon_sym_DOT, + STATE(2031), 1, + aux_sym_cell_path_repeat1, + STATE(2033), 1, sym_comment, - ACTIONS(914), 39, - anon_sym_EQ, + STATE(2143), 1, + sym_path, + ACTIONS(752), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -199571,13 +213498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -199602,26 +213523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [77027] = 6, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [83645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3598), 1, - anon_sym_DOT, - STATE(1963), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, + ACTIONS(905), 1, anon_sym_LF, - STATE(1850), 2, + STATE(2034), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 35, + ACTIONS(903), 38, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -199651,36 +213572,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [77082] = 7, - ACTIONS(147), 1, + [83695] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3601), 1, - anon_sym_DOT, - STATE(1851), 1, + ACTIONS(3684), 1, + anon_sym_QMARK2, + STATE(2035), 1, sym_comment, - STATE(1865), 1, - aux_sym_cell_path_repeat1, - STATE(1961), 1, - sym_path, - ACTIONS(749), 6, + ACTIONS(772), 13, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(751), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(774), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -199696,27 +213619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [77139] = 7, - ACTIONS(147), 1, + [83747] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1852), 1, + ACTIONS(3684), 1, + anon_sym_QMARK2, + STATE(2036), 1, sym_comment, - STATE(1864), 1, - sym_path, - STATE(1872), 1, - sym_cell_path, - ACTIONS(737), 12, + ACTIONS(772), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -199725,7 +213640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(739), 25, + ACTIONS(774), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -199751,25 +213666,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77196] = 4, + [83799] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(758), 1, anon_sym_LF, - STATE(1853), 1, + ACTIONS(3679), 1, + anon_sym_DOT, + STATE(2033), 1, + aux_sym_cell_path_repeat1, + STATE(2037), 1, sym_comment, - ACTIONS(842), 39, + STATE(2143), 1, + sym_path, + ACTIONS(756), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -199797,183 +213715,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [77247] = 5, - ACTIONS(147), 1, + [83855] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(1854), 1, + ACTIONS(766), 1, + anon_sym_LF, + ACTIONS(3673), 1, + anon_sym_DOT, + STATE(2024), 1, + sym_path, + STATE(2038), 1, sym_comment, - ACTIONS(3607), 16, + STATE(2282), 1, + sym_cell_path, + ACTIONS(764), 35, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3605), 23, - sym_cmd_identifier, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [77300] = 4, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [83911] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(848), 1, - anon_sym_LF, - STATE(1855), 1, + ACTIONS(3662), 1, + anon_sym_QMARK2, + STATE(2039), 1, sym_comment, - ACTIONS(846), 39, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(772), 7, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [77351] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(1856), 1, - sym_comment, - ACTIONS(3613), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3611), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [77404] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3615), 1, - anon_sym_DOT, - STATE(1850), 1, - aux_sym_cell_path_repeat1, - STATE(1857), 1, - sym_comment, - STATE(1963), 1, - sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(745), 35, - anon_sym_SEMI, + ACTIONS(774), 31, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -199988,73 +213810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [77461] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(1858), 1, - sym_comment, - ACTIONS(3619), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3617), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [77514] = 7, - ACTIONS(147), 1, + [83963] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1859), 1, + ACTIONS(3660), 1, + anon_sym_QMARK2, + STATE(2040), 1, sym_comment, - STATE(1864), 1, - sym_path, - STATE(1996), 1, - sym_cell_path, - ACTIONS(733), 12, + ACTIONS(772), 13, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -200063,15 +213831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(735), 25, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(774), 25, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -200089,22 +213853,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77571] = 4, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_LF, - STATE(1860), 1, + STATE(2041), 1, sym_comment, - ACTIONS(901), 39, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 37, anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, @@ -200136,239 +213904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [77622] = 5, + [84065] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(105), 1, anon_sym_LF, - ACTIONS(3621), 1, - anon_sym_QMARK2, - STATE(1861), 1, + STATE(2042), 1, sym_comment, - ACTIONS(836), 38, + ACTIONS(3686), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(103), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [77675] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1862), 1, - sym_comment, - STATE(1864), 1, - sym_path, - STATE(1983), 1, - sym_cell_path, - ACTIONS(753), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(755), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [77732] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1863), 1, - sym_comment, - STATE(1864), 1, - sym_path, - STATE(1979), 1, - sym_cell_path, - ACTIONS(764), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(766), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [77789] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1864), 1, - sym_comment, - STATE(1870), 1, - aux_sym_cell_path_repeat1, - STATE(1937), 1, - sym_path, - ACTIONS(749), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(751), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [77846] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3601), 1, - anon_sym_DOT, - STATE(1865), 1, - sym_comment, - STATE(1877), 1, - aux_sym_cell_path_repeat1, - STATE(1961), 1, - sym_path, - ACTIONS(745), 6, - anon_sym_GT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(747), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -200382,31 +213951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [77903] = 4, + [84117] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, + ACTIONS(725), 1, anon_sym_LF, - STATE(1866), 1, + ACTIONS(3688), 1, + anon_sym_DOT, + STATE(2275), 1, + sym_path, + STATE(2043), 2, sym_comment, - ACTIONS(908), 39, - anon_sym_EQ, + aux_sym_cell_path_repeat1, + ACTIONS(723), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -200431,40 +213997,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [77954] = 4, - ACTIONS(147), 1, + sym_short_flag, + [84170] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3691), 1, + anon_sym_QMARK2, + STATE(2044), 1, sym_comment, - ACTIONS(842), 6, - anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(844), 34, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(772), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -200478,64 +214041,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78005] = 5, - ACTIONS(147), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [84221] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(1868), 1, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(2045), 1, sym_comment, - ACTIONS(3625), 16, + STATE(2052), 1, + aux_sym_cell_path_repeat1, + STATE(2272), 1, + sym_path, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 33, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3623), 23, - sym_cmd_identifier, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, + anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [78058] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [84276] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(762), 1, anon_sym_LF, - ACTIONS(3621), 1, - anon_sym_QMARK2, - STATE(1869), 1, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2046), 1, sym_comment, - ACTIONS(836), 38, + STATE(2083), 1, + sym_path, + STATE(2301), 1, + sym_cell_path, + ACTIONS(760), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -200544,7 +214114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -200570,83 +214139,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [78111] = 7, - ACTIONS(147), 1, + [84331] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, + ACTIONS(732), 1, + anon_sym_LF, + ACTIONS(3695), 1, anon_sym_DOT, - STATE(1870), 1, + STATE(2047), 1, sym_comment, - STATE(1881), 1, - aux_sym_cell_path_repeat1, - STATE(1937), 1, + STATE(2059), 1, + sym_cell_path, + STATE(2083), 1, sym_path, - ACTIONS(745), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(747), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [78168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1871), 1, - sym_comment, - ACTIONS(844), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(842), 38, - anon_sym_EQ, + ACTIONS(730), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -200671,16 +214187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78219] = 4, - ACTIONS(147), 1, + sym_short_flag, + [84386] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(2048), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(903), 13, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -200690,15 +214207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(1008), 27, - anon_sym_COLON, + ACTIONS(905), 25, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -200718,40 +214230,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [78270] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84435] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(2049), 1, sym_comment, - ACTIONS(846), 6, + ACTIONS(105), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3697), 6, anon_sym_EQ, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(848), 34, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(103), 30, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -200765,39 +214279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78321] = 7, - ACTIONS(3), 1, + [84486] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3615), 1, - anon_sym_DOT, - STATE(1874), 1, + STATE(2050), 1, sym_comment, - STATE(1880), 1, - sym_path, - STATE(2045), 1, - sym_cell_path, - ACTIONS(739), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(737), 35, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(907), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(909), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -200808,43 +214319,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [78378] = 7, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84535] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3601), 1, - anon_sym_DOT, - STATE(1851), 1, - sym_path, - STATE(1875), 1, + STATE(2051), 1, sym_comment, - STATE(1968), 1, - sym_cell_path, - ACTIONS(737), 6, + ACTIONS(899), 13, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(739), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(901), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -200860,93 +214369,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [78435] = 5, - ACTIONS(147), 1, + [84584] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(1876), 1, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(2052), 1, sym_comment, - ACTIONS(3629), 16, + STATE(2055), 1, + aux_sym_cell_path_repeat1, + STATE(2272), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 33, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, + anon_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_CARET, - ACTIONS(3627), 23, - sym_cmd_identifier, + sym_short_flag, + [84639] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(2045), 1, + sym_path, + STATE(2053), 1, + sym_comment, + STATE(2286), 1, + sym_cell_path, + ACTIONS(766), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(764), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, + anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [78488] = 6, - ACTIONS(147), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [84694] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3631), 1, + ACTIONS(750), 1, + anon_sym_LF, + ACTIONS(3695), 1, anon_sym_DOT, - STATE(1961), 1, - sym_path, - STATE(1877), 2, + STATE(2054), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(759), 31, - anon_sym_COMMA, + STATE(2083), 1, + sym_path, + STATE(2316), 1, + sym_cell_path, + ACTIONS(748), 34, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -200960,43 +214512,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_short_flag, + [84749] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3699), 1, + anon_sym_DOT, + STATE(2272), 1, + sym_path, + ACTIONS(725), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2055), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [78543] = 7, - ACTIONS(147), 1, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [84802] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3596), 1, + ACTIONS(3702), 1, anon_sym_DOT, - STATE(1878), 1, + STATE(2223), 1, + sym_path, + ACTIONS(725), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2056), 2, sym_comment, - STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(1931), 1, - sym_path, - ACTIONS(745), 12, - sym_identifier, + ACTIONS(723), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(747), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201007,50 +214601,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78600] = 6, - ACTIONS(147), 1, + [84855] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(319), 1, - anon_sym_DOT_DOT, - STATE(1879), 1, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3691), 1, + anon_sym_QMARK2, + STATE(2057), 1, sym_comment, - ACTIONS(317), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 12, - sym_identifier, + ACTIONS(772), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1012), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201061,27 +214647,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [78655] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [84906] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3615), 1, - anon_sym_DOT, - STATE(1857), 1, - aux_sym_cell_path_repeat1, - STATE(1880), 1, + ACTIONS(3570), 1, + anon_sym_list, + STATE(2058), 1, sym_comment, - STATE(1963), 1, - sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, + STATE(3856), 1, + sym__type_annotation, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3566), 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, + [84961] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(932), 1, anon_sym_LF, - ACTIONS(749), 35, + STATE(2059), 1, + sym_comment, + ACTIONS(930), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -201111,21 +214746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [78712] = 6, - ACTIONS(147), 1, + [85010] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3634), 1, - anon_sym_DOT, - STATE(1937), 1, - sym_path, - STATE(1881), 2, + STATE(2060), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 12, + ACTIONS(907), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -201134,7 +214765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(759), 25, + ACTIONS(909), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -201160,46 +214791,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [78767] = 7, - ACTIONS(147), 1, + [85059] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, + ACTIONS(746), 1, + anon_sym_LF, + ACTIONS(3695), 1, anon_sym_DOT, - STATE(1864), 1, - sym_path, - STATE(1882), 1, + STATE(2061), 1, sym_comment, - STATE(1982), 1, + STATE(2083), 1, + sym_path, + STATE(2347), 1, sym_cell_path, - ACTIONS(729), 12, - sym_identifier, + ACTIONS(744), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(731), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201210,40 +214835,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [78824] = 6, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [85114] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3637), 1, + ACTIONS(3705), 1, anon_sym_DOT, - STATE(1931), 1, - sym_path, - STATE(1883), 2, - sym_comment, + STATE(2056), 1, aux_sym_cell_path_repeat1, - ACTIONS(757), 12, - sym_identifier, + STATE(2062), 1, + sym_comment, + STATE(2223), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(759), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201254,51 +214881,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78879] = 7, - ACTIONS(147), 1, + [85169] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1864), 1, - sym_path, - STATE(1884), 1, + STATE(2063), 1, sym_comment, - STATE(2056), 1, - sym_cell_path, - ACTIONS(723), 12, - sym_identifier, + ACTIONS(1031), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1029), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(725), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [85218] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(770), 1, + anon_sym_LF, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2064), 1, + sym_comment, + STATE(2083), 1, + sym_path, + STATE(2311), 1, + sym_cell_path, + ACTIONS(768), 34, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201309,30 +214976,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [78936] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [85273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3640), 1, - anon_sym_QMARK2, - STATE(1885), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(836), 37, - anon_sym_EQ, + STATE(2065), 1, + sym_comment, + ACTIONS(784), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -201357,22 +215022,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78989] = 7, - ACTIONS(147), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [85322] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1864), 1, - sym_path, - STATE(1886), 1, + ACTIONS(3570), 1, + anon_sym_list, + STATE(2066), 1, sym_comment, - STATE(2053), 1, - sym_cell_path, - ACTIONS(741), 12, + STATE(2215), 1, + sym__type_annotation, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3566), 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, + [85377] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2067), 1, + sym_comment, + ACTIONS(903), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -201381,7 +215092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(743), 25, + ACTIONS(905), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -201407,30 +215118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [79046] = 5, + [85426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3640), 1, - anon_sym_QMARK2, - STATE(1887), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + ACTIONS(782), 1, anon_sym_LF, - ACTIONS(836), 37, - anon_sym_EQ, + STATE(2068), 1, + sym_comment, + ACTIONS(780), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -201455,29 +215160,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [79099] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [85475] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1888), 1, + ACTIONS(3570), 1, + anon_sym_list, + STATE(2069), 1, sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, + STATE(2215), 1, + sym__type_annotation, + ACTIONS(3568), 2, + anon_sym_table, + anon_sym_record, + STATE(1966), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3707), 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, + [85530] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(742), 1, anon_sym_LF, - ACTIONS(846), 38, - anon_sym_EQ, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2070), 1, + sym_comment, + STATE(2083), 1, + sym_path, + STATE(2369), 1, + sym_cell_path, + ACTIONS(740), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -201502,41 +215258,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [79150] = 7, - ACTIONS(147), 1, + sym_short_flag, + [85585] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - STATE(1864), 1, - sym_path, - STATE(1889), 1, + STATE(2071), 1, sym_comment, - STATE(1978), 1, - sym_cell_path, - ACTIONS(768), 12, - sym_identifier, + ACTIONS(903), 7, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(770), 25, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(905), 31, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -201552,41 +215299,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [79207] = 7, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [85634] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3596), 1, + ACTIONS(3705), 1, anon_sym_DOT, - STATE(1878), 1, + STATE(2062), 1, aux_sym_cell_path_repeat1, - STATE(1890), 1, + STATE(2072), 1, sym_comment, - STATE(1931), 1, + STATE(2223), 1, sym_path, - ACTIONS(749), 12, - sym_identifier, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(751), 25, - anon_sym_COMMA, + anon_sym_DOT_DOT_EQ, + [85689] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(738), 1, + anon_sym_LF, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2073), 1, + sym_comment, + STATE(2083), 1, + sym_path, + STATE(2307), 1, + sym_cell_path, + ACTIONS(736), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -201597,25 +215396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [79264] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [85744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(3642), 1, - anon_sym_DOT, - STATE(1891), 1, + STATE(2074), 1, sym_comment, - STATE(1907), 1, - aux_sym_cell_path_repeat1, - STATE(2071), 1, - sym_path, - ACTIONS(749), 35, + ACTIONS(784), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -201626,6 +215418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -201649,26 +215443,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - sym_short_flag, - [79320] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3644), 1, - anon_sym_QMARK2, - STATE(1892), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [85793] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(754), 1, anon_sym_LF, - ACTIONS(836), 36, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2043), 1, + aux_sym_cell_path_repeat1, + STATE(2075), 1, + sym_comment, + STATE(2275), 1, + sym_path, + ACTIONS(752), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -201694,16 +215492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [79372] = 4, - ACTIONS(147), 1, + [85848] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(2076), 1, sym_comment, - ACTIONS(842), 7, + ACTIONS(907), 7, anon_sym_GT, anon_sym_DOT, anon_sym_STAR, @@ -201711,7 +215506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(844), 32, + ACTIONS(909), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -201720,7 +215515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -201744,28 +215538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [79422] = 4, + [85897] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1020), 1, + ACTIONS(766), 1, anon_sym_LF, - STATE(1894), 1, + ACTIONS(3695), 1, + anon_sym_DOT, + STATE(2077), 1, sym_comment, - ACTIONS(1018), 38, - anon_sym_EQ, + STATE(2083), 1, + sym_path, + STATE(2340), 1, + sym_cell_path, + ACTIONS(764), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -201790,28 +215585,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [79472] = 4, + sym_short_flag, + [85952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(2078), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(914), 37, - anon_sym_EQ, + ACTIONS(903), 36, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -201836,115 +215627,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [79522] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1896), 1, - sym_comment, - ACTIONS(842), 13, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(844), 26, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [79572] = 4, - ACTIONS(147), 1, + sym_short_flag, + [86001] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(782), 1, + anon_sym_LF, + STATE(2079), 1, sym_comment, - ACTIONS(3648), 16, + ACTIONS(780), 37, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3646), 23, - sym_cmd_identifier, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [79622] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [86050] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_LF, - STATE(1898), 1, + ACTIONS(3705), 1, + anon_sym_DOT, + STATE(2072), 1, + sym_path, + STATE(2080), 1, sym_comment, - ACTIONS(901), 38, + STATE(2349), 1, + sym_cell_path, + ACTIONS(732), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(730), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -201973,39 +215724,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [79672] = 5, - ACTIONS(147), 1, + [86105] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3650), 1, - anon_sym_QMARK2, - STATE(1899), 1, + ACTIONS(928), 1, + anon_sym_LF, + STATE(2081), 1, sym_comment, - ACTIONS(836), 7, - anon_sym_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(401), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(838), 31, - anon_sym_COMMA, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 34, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -202019,22 +215769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [79724] = 7, + sym_short_flag, + [86156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(731), 1, + ACTIONS(774), 1, anon_sym_LF, - ACTIONS(3642), 1, - anon_sym_DOT, - STATE(1891), 1, - sym_path, - STATE(1900), 1, + ACTIONS(3709), 1, + anon_sym_QMARK2, + STATE(2082), 1, sym_comment, - STATE(2142), 1, - sym_cell_path, - ACTIONS(729), 35, + ACTIONS(772), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -202045,6 +215790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -202070,24 +215816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [79780] = 7, + [86207] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, + ACTIONS(758), 1, anon_sym_LF, - ACTIONS(3652), 1, + ACTIONS(3695), 1, anon_sym_DOT, - STATE(1901), 1, - sym_comment, - STATE(1908), 1, + STATE(2075), 1, aux_sym_cell_path_repeat1, - STATE(2080), 1, + STATE(2083), 1, + sym_comment, + STATE(2275), 1, sym_path, - ACTIONS(749), 35, + ACTIONS(756), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -202116,25 +215863,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_short_flag, + [86262] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3715), 1, + anon_sym_list, + STATE(2084), 1, + sym_comment, + STATE(2961), 1, + sym__type_annotation, + ACTIONS(3713), 2, + anon_sym_table, + anon_sym_record, + STATE(3036), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3711), 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, + [86317] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(3709), 1, + anon_sym_QMARK2, + STATE(2085), 1, + sym_comment, + ACTIONS(772), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [79836] = 4, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [86368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LF, - STATE(1902), 1, + STATE(2086), 1, sym_comment, - ACTIONS(908), 38, + ACTIONS(909), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(907), 36, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -202165,16 +216003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [79886] = 4, - ACTIONS(147), 1, + [86417] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(2087), 1, sym_comment, - ACTIONS(846), 13, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -202183,12 +216021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(848), 26, + ACTIONS(940), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -202206,27 +216047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [79936] = 5, - ACTIONS(147), 1, + [86465] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3650), 1, - anon_sym_QMARK2, - STATE(1904), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT, + STATE(2088), 1, sym_comment, - ACTIONS(836), 7, + ACTIONS(407), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 5, anon_sym_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(838), 31, + ACTIONS(928), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -202256,35 +216093,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [79988] = 5, - ACTIONS(147), 1, + [86517] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3654), 1, - anon_sym_QMARK2, - STATE(1905), 1, + STATE(2089), 1, sym_comment, - ACTIONS(836), 13, - sym_identifier, + ACTIONS(930), 6, anon_sym_GT, - anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(838), 25, + ACTIONS(932), 31, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -202300,43 +216132,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80040] = 5, - ACTIONS(147), 1, + [86565] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3656), 1, - anon_sym_QMARK2, - STATE(1906), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2090), 1, sym_comment, - ACTIONS(836), 13, - sym_identifier, + STATE(2194), 1, + sym_path, + STATE(2467), 1, + sym_cell_path, + ACTIONS(760), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(838), 25, - anon_sym_COLON, + ACTIONS(762), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -202352,30 +216181,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [80092] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [86619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(747), 1, - anon_sym_LF, - ACTIONS(3642), 1, - anon_sym_DOT, - STATE(1907), 1, + STATE(2091), 1, sym_comment, - STATE(1922), 1, - aux_sym_cell_path_repeat1, - STATE(2071), 1, - sym_path, - ACTIONS(745), 35, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -202401,27 +216228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [80148] = 7, + [86667] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(747), 1, - anon_sym_LF, - ACTIONS(3652), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1908), 1, + STATE(2092), 1, sym_comment, - STATE(1914), 1, - aux_sym_cell_path_repeat1, - STATE(2080), 1, + STATE(2167), 1, + sym_cell_path, + STATE(2174), 1, sym_path, - ACTIONS(745), 35, + ACTIONS(732), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(730), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -202447,42 +216274,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [80204] = 7, - ACTIONS(3), 1, + sym_short_flag, + [86721] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(739), 1, - anon_sym_LF, - ACTIONS(3652), 1, + ACTIONS(3717), 1, anon_sym_DOT, - STATE(1901), 1, - sym_path, - STATE(1909), 1, + STATE(2093), 1, sym_comment, - STATE(2088), 1, + STATE(2194), 1, + sym_path, + STATE(2466), 1, sym_cell_path, - ACTIONS(737), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(736), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(738), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -202496,20 +216322,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [86775] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2094), 1, + sym_comment, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [80260] = 4, - ACTIONS(147), 1, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [86823] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1910), 1, + ACTIONS(3721), 1, + anon_sym_DOT, + STATE(2095), 1, sym_comment, - ACTIONS(842), 13, + STATE(2206), 1, + sym_path, + STATE(2458), 1, + sym_cell_path, + ACTIONS(748), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -202518,18 +216389,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(844), 26, - anon_sym_COLON, + ACTIONS(750), 23, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86877] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(905), 1, + anon_sym_LF, + STATE(2096), 1, + sym_comment, + ACTIONS(903), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [86925] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(909), 1, + anon_sym_LF, + STATE(2097), 1, + sym_comment, + ACTIONS(907), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [86973] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3723), 1, + anon_sym_DOT, + STATE(2098), 1, + sym_comment, + STATE(2102), 1, + aux_sym_cell_path_repeat1, + STATE(2361), 1, + sym_path, + ACTIONS(752), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(754), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -202545,33 +216542,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [80310] = 5, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [87027] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3654), 1, - anon_sym_QMARK2, - STATE(1911), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2099), 1, sym_comment, - ACTIONS(836), 13, - sym_identifier, + STATE(2194), 1, + sym_path, + STATE(2477), 1, + sym_cell_path, + ACTIONS(744), 5, anon_sym_GT, - anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(838), 25, + ACTIONS(746), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -202587,24 +216592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80362] = 5, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [87081] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3656), 1, - anon_sym_QMARK2, - STATE(1912), 1, + STATE(2100), 1, sym_comment, - ACTIONS(836), 13, + ACTIONS(926), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -202613,7 +216613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(838), 25, + ACTIONS(928), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -202639,21 +216639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [80414] = 4, + [87129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, - sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, + ACTIONS(782), 1, anon_sym_LF, - ACTIONS(846), 37, + STATE(2101), 1, + sym_comment, + ACTIONS(780), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_QMARK2, @@ -202681,42 +216682,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [80464] = 6, - ACTIONS(3), 1, + [87177] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(759), 1, - anon_sym_LF, - ACTIONS(3658), 1, + ACTIONS(3725), 1, anon_sym_DOT, - STATE(2080), 1, + STATE(2361), 1, sym_path, - STATE(1914), 2, + STATE(2102), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(757), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(723), 7, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(725), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -202731,122 +216727,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [80518] = 4, + sym_short_flag, + [87229] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, - sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, + ACTIONS(824), 1, anon_sym_LF, - ACTIONS(901), 37, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, anon_sym_bit_DASHand, + ACTIONS(3744), 1, anon_sym_bit_DASHxor, + ACTIONS(3746), 1, anon_sym_bit_DASHor, + ACTIONS(3748), 1, anon_sym_and, + ACTIONS(3750), 1, anon_sym_xor, + ACTIONS(3752), 1, anon_sym_or, - [80568] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1916), 1, + STATE(2103), 1, sym_comment, - ACTIONS(846), 13, - sym_identifier, - anon_sym_GT, + STATE(3115), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(848), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(822), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [80618] = 5, + [87311] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(109), 1, - anon_sym_LF, - STATE(1917), 1, + ACTIONS(3719), 1, + anon_sym_DOT, + STATE(2104), 1, sym_comment, - ACTIONS(3661), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(107), 32, + STATE(2174), 1, + sym_path, + STATE(2440), 1, + sym_cell_path, + ACTIONS(738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(736), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -202872,35 +216836,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [80670] = 4, - ACTIONS(3), 1, + sym_short_flag, + [87365] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1918), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2105), 1, sym_comment, - ACTIONS(844), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(842), 37, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2194), 1, + sym_path, + STATE(2478), 1, + sym_cell_path, + ACTIONS(748), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(750), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -202914,40 +216884,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [80720] = 5, - ACTIONS(3), 1, + [87419] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3644), 1, - anon_sym_QMARK2, - STATE(1919), 1, + STATE(2106), 1, sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(836), 36, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(952), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(954), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -202958,46 +216928,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [80772] = 4, - ACTIONS(3), 1, + [87467] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(2107), 1, sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(908), 37, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1029), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1031), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203008,129 +216972,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [87515] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(840), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, anon_sym_and, + ACTIONS(3750), 1, anon_sym_xor, + ACTIONS(3752), 1, anon_sym_or, - [80822] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1921), 1, + STATE(2108), 1, sym_comment, - ACTIONS(3665), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3663), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, + STATE(3098), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [80872] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(759), 1, - anon_sym_LF, - ACTIONS(3667), 1, - anon_sym_DOT, - STATE(2071), 1, - sym_path, - STATE(1922), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 35, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(838), 4, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [80926] = 4, - ACTIONS(147), 1, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [87597] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1923), 1, + ACTIONS(566), 1, + anon_sym_DOT_DOT, + STATE(2109), 1, sym_comment, - ACTIONS(846), 7, + ACTIONS(564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 11, + sym_identifier, anon_sym_GT, - anon_sym_DOT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(848), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(928), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -203146,125 +217076,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [80976] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3670), 1, - anon_sym_DOT, - STATE(2143), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1924), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [81029] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_LF, - STATE(1925), 1, - sym_comment, - ACTIONS(842), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [81078] = 7, + [87649] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(735), 1, - anon_sym_LF, - ACTIONS(3673), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1926), 1, + STATE(2110), 1, sym_comment, - STATE(1932), 1, + STATE(2174), 1, sym_path, - STATE(2223), 1, + STATE(2422), 1, sym_cell_path, - ACTIONS(733), 34, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -203291,136 +217126,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [81133] = 7, - ACTIONS(3), 1, + [87703] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3675), 1, - anon_sym_DOT, - STATE(1924), 1, - aux_sym_cell_path_repeat1, - STATE(1927), 1, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + STATE(2111), 1, sym_comment, - STATE(2143), 1, - sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(745), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [81188] = 7, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [87765] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - anon_sym_DOT, - STATE(1928), 1, - sym_comment, - STATE(1945), 1, - sym_path, - STATE(2232), 1, - sym_cell_path, - ACTIONS(731), 2, - ts_builtin_sym_end, + ACTIONS(790), 1, anon_sym_LF, - ACTIONS(729), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, + ACTIONS(2645), 1, sym_short_flag, - [81243] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(739), 1, - anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1929), 1, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2112), 1, sym_comment, - STATE(1932), 1, - sym_path, - STATE(1952), 1, - sym_cell_path, - ACTIONS(737), 34, + STATE(3113), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(788), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [87847] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2113), 1, + sym_comment, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203431,68 +217282,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [87895] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + STATE(2114), 1, + sym_comment, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1002), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [81298] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3681), 1, - anon_sym_list, - STATE(1930), 1, - sym_comment, - STATE(2054), 1, - sym__type_annotation, - ACTIONS(3679), 2, - anon_sym_table, - anon_sym_record, - STATE(2150), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3677), 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, - [81353] = 4, - ACTIONS(147), 1, + ACTIONS(1004), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [87951] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(2115), 1, sym_comment, - ACTIONS(908), 13, + ACTIONS(1010), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -203501,11 +217348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(910), 25, + ACTIONS(1012), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -203523,87 +217374,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81402] = 7, + [87999] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(751), 1, + ACTIONS(863), 1, anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1932), 1, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2116), 1, sym_comment, - STATE(1954), 1, - aux_sym_cell_path_repeat1, - STATE(2093), 1, - sym_path, - ACTIONS(749), 34, + STATE(3118), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(3728), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + [88081] = 13, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + STATE(2117), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, 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, - sym_short_flag, - [81457] = 4, - ACTIONS(3), 1, + [88147] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1933), 1, + STATE(2118), 1, sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(901), 36, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203614,42 +217532,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [81506] = 4, - ACTIONS(3), 1, + [88195] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(844), 1, - anon_sym_LF, - STATE(1934), 1, + STATE(2119), 1, sym_comment, - ACTIONS(842), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(113), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(115), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203660,26 +217576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81555] = 7, + [88243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(731), 1, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1935), 1, + STATE(2120), 1, sym_comment, - STATE(2229), 1, - sym_cell_path, - ACTIONS(729), 34, + ACTIONS(784), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -203688,7 +217592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -203714,39 +217620,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [81610] = 5, + [88291] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(1936), 1, - sym_comment, - ACTIONS(109), 2, - ts_builtin_sym_end, + ACTIONS(852), 1, anon_sym_LF, - ACTIONS(3683), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(107), 30, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2121), 1, + sym_comment, + STATE(3111), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(850), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + anon_sym_RBRACE, + ACTIONS(3732), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [88373] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + STATE(2122), 1, + sym_comment, + ACTIONS(3760), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3758), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1002), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203757,20 +217728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [81661] = 4, - ACTIONS(147), 1, + [88427] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(2123), 1, sym_comment, - ACTIONS(908), 13, + ACTIONS(1010), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -203779,7 +217746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(910), 25, + ACTIONS(1012), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -203805,40 +217772,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [81710] = 7, - ACTIONS(3), 1, + [88475] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(725), 1, - anon_sym_LF, - ACTIONS(3673), 1, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1938), 1, + STATE(2124), 1, sym_comment, - STATE(2176), 1, + STATE(2206), 1, + sym_path, + STATE(2374), 1, sym_cell_path, - ACTIONS(723), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(740), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(742), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203849,135 +217816,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [81765] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88529] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, + ACTIONS(844), 1, anon_sym_LF, - STATE(1939), 1, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2125), 1, sym_comment, - ACTIONS(846), 37, + STATE(3108), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(842), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(3728), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81814] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3564), 1, - anon_sym_list, - STATE(1940), 1, - sym_comment, - STATE(3577), 1, - sym__type_annotation, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [81869] = 5, - ACTIONS(3), 1, + [88611] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - STATE(1941), 1, + STATE(2126), 1, sym_comment, - ACTIONS(401), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -203988,67 +217925,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [81920] = 5, + [88661] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(836), 1, anon_sym_LF, - ACTIONS(3685), 1, - anon_sym_QMARK2, - STATE(1942), 1, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2127), 1, sym_comment, - ACTIONS(836), 36, + STATE(3105), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(834), 4, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [81971] = 4, - ACTIONS(147), 1, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [88743] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1943), 1, + STATE(2128), 1, sym_comment, - ACTIONS(901), 13, + ACTIONS(1014), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -204057,7 +218004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(903), 25, + ACTIONS(1016), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -204083,17 +218030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [82020] = 4, - ACTIONS(147), 1, + [88791] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(2129), 1, sym_comment, - ACTIONS(914), 13, + ACTIONS(1010), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -204102,7 +218048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(916), 25, + ACTIONS(1012), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -204128,88 +218074,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [82069] = 7, - ACTIONS(3), 1, + [88839] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3675), 1, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(1927), 1, - aux_sym_cell_path_repeat1, - STATE(1945), 1, + STATE(2130), 1, sym_comment, - STATE(2143), 1, + STATE(2166), 1, + sym_cell_path, + STATE(2206), 1, sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(749), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(730), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(732), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - sym_short_flag, - [82124] = 7, - ACTIONS(3), 1, + [88893] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(770), 1, - anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1946), 1, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + STATE(2131), 1, sym_comment, - STATE(2165), 1, - sym_cell_path, - ACTIONS(768), 34, - anon_sym_SEMI, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1002), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204220,41 +218170,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [82179] = 6, - ACTIONS(3), 1, + [88951] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DOT, - STATE(2148), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1947), 2, + STATE(2132), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204265,20 +218214,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [88999] = 14, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + STATE(2133), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [82232] = 4, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [89067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, + ACTIONS(1726), 1, anon_sym_LF, - STATE(1948), 1, + STATE(2134), 1, sym_comment, - ACTIONS(846), 37, + ACTIONS(1724), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -204287,10 +218284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -204316,64 +218312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [82281] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3564), 1, - anon_sym_list, - STATE(1949), 1, - sym_comment, - STATE(2744), 1, - sym__type_annotation, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [82336] = 4, - ACTIONS(147), 1, + [89115] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(2135), 1, sym_comment, - ACTIONS(901), 13, + ACTIONS(1010), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -204382,11 +218330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(903), 25, + ACTIONS(1012), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -204404,33 +218356,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82385] = 7, + [89163] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, - anon_sym_LF, - ACTIONS(3673), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1951), 1, + STATE(2136), 1, sym_comment, - STATE(2162), 1, + STATE(2174), 1, + sym_path, + STATE(2380), 1, sym_cell_path, - ACTIONS(764), 34, + ACTIONS(766), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(764), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -204457,22 +218403,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82440] = 4, + [89217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(905), 1, anon_sym_LF, - STATE(1952), 1, + STATE(2137), 1, sym_comment, - ACTIONS(1006), 37, + ACTIONS(903), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -204501,41 +218447,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [82489] = 7, - ACTIONS(3), 1, + [89265] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(743), 1, - anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1953), 1, + ACTIONS(3774), 1, + anon_sym_QMARK2, + STATE(2138), 1, sym_comment, - STATE(2231), 1, - sym_cell_path, - ACTIONS(741), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(772), 7, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(774), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204550,40 +218492,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82544] = 7, - ACTIONS(3), 1, + [89315] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(747), 1, - anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1954), 1, + ACTIONS(3774), 1, + anon_sym_QMARK2, + STATE(2139), 1, sym_comment, - STATE(1955), 1, - aux_sym_cell_path_repeat1, - STATE(2093), 1, - sym_path, - ACTIONS(745), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(772), 7, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(774), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204598,39 +218537,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82599] = 6, - ACTIONS(3), 1, + [89365] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(759), 1, - anon_sym_LF, - ACTIONS(3690), 1, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(2093), 1, - sym_path, - STATE(1955), 2, + STATE(2140), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(2206), 1, + sym_path, + STATE(2383), 1, + sym_cell_path, + ACTIONS(764), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(766), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204641,30 +218581,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89419] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, anon_sym_and, + ACTIONS(3750), 1, anon_sym_xor, + ACTIONS(3752), 1, anon_sym_or, - sym_short_flag, - [82652] = 7, - ACTIONS(3), 1, + STATE(2141), 1, + sym_comment, + STATE(3102), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(854), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [89501] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_DOT, - STATE(1947), 1, - aux_sym_cell_path_repeat1, - STATE(1956), 1, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + STATE(2142), 1, sym_comment, - STATE(2148), 1, - sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [89571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(745), 33, + STATE(2143), 1, + sym_comment, + ACTIONS(907), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -204693,38 +218744,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [82707] = 7, + [89619] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(319), 1, + anon_sym_LF, + ACTIONS(327), 1, anon_sym_DOT, - STATE(1957), 1, + ACTIONS(331), 1, + anon_sym_QMARK2, + ACTIONS(339), 1, + anon_sym_bit_DASHand, + ACTIONS(341), 1, + anon_sym_bit_DASHxor, + ACTIONS(343), 1, + anon_sym_bit_DASHor, + ACTIONS(345), 1, + anon_sym_and, + ACTIONS(347), 1, + anon_sym_xor, + ACTIONS(349), 1, + anon_sym_or, + STATE(2144), 1, sym_comment, - STATE(1966), 1, + STATE(2225), 1, sym_path, - STATE(2159), 1, + STATE(2574), 1, sym_cell_path, - ACTIONS(739), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(737), 33, + ACTIONS(323), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(333), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(335), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(337), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(317), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(325), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(329), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(321), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [89701] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2145), 1, + sym_comment, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204735,22 +218849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [82762] = 5, + [89749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(901), 1, anon_sym_LF, - ACTIONS(3685), 1, - anon_sym_QMARK2, - STATE(1958), 1, + STATE(2146), 1, sym_comment, - ACTIONS(836), 36, + ACTIONS(899), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -204787,88 +218893,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [82813] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3564), 1, - anon_sym_list, - STATE(1959), 1, - sym_comment, - STATE(2054), 1, - sym__type_annotation, - ACTIONS(3562), 2, - anon_sym_table, - anon_sym_record, - STATE(2740), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3560), 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, - [82868] = 7, - ACTIONS(3), 1, + [89797] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(755), 1, - anon_sym_LF, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1932), 1, - sym_path, - STATE(1960), 1, + STATE(2147), 1, sym_comment, - STATE(2169), 1, - sym_cell_path, - ACTIONS(753), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1022), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1024), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [89845] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2148), 1, + sym_comment, + ACTIONS(980), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(982), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204879,35 +218981,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [89893] = 16, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + STATE(2149), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [82923] = 4, - ACTIONS(147), 1, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [89965] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(2150), 1, sym_comment, - ACTIONS(908), 7, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DOT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(910), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -204923,41 +219081,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [82972] = 5, + [90013] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(3782), 1, anon_sym_LF, - ACTIONS(3695), 1, + ACTIONS(3792), 1, anon_sym_QMARK2, - STATE(1962), 1, + ACTIONS(3800), 1, + anon_sym_bit_DASHand, + ACTIONS(3802), 1, + anon_sym_bit_DASHxor, + ACTIONS(3804), 1, + anon_sym_bit_DASHor, + ACTIONS(3806), 1, + anon_sym_and, + ACTIONS(3808), 1, + anon_sym_xor, + ACTIONS(3810), 1, + anon_sym_or, + STATE(2151), 1, sym_comment, - ACTIONS(836), 36, + STATE(2225), 1, + sym_path, + STATE(2715), 1, + sym_cell_path, + ACTIONS(3786), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3794), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3796), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3798), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3780), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(3788), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3790), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3784), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [90095] = 17, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + ACTIONS(3812), 1, + anon_sym_bit_DASHor, + STATE(2152), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3766), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90169] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2153), 1, + sym_comment, + ACTIONS(994), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(996), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -204968,40 +219243,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [83023] = 4, - ACTIONS(3), 1, + [90217] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1963), 1, + STATE(2154), 1, sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(908), 36, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205012,43 +219287,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [90265] = 18, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + ACTIONS(3812), 1, + anon_sym_bit_DASHor, + ACTIONS(3814), 1, anon_sym_and, + STATE(2155), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1002), 3, + sym_identifier, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [83072] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(3695), 1, - anon_sym_QMARK2, - STATE(1964), 1, - sym_comment, - ACTIONS(836), 36, - anon_sym_SEMI, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90341] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3816), 1, + anon_sym_DOT, + STATE(2319), 1, + sym_path, + STATE(2156), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(725), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205059,44 +219388,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90393] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2157), 1, + sym_comment, + ACTIONS(1010), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [83123] = 4, - ACTIONS(3), 1, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [90441] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(2158), 1, sym_comment, - ACTIONS(1020), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1018), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1006), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1008), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205107,41 +219479,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [90489] = 19, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + ACTIONS(3812), 1, + anon_sym_bit_DASHor, + ACTIONS(3814), 1, anon_sym_and, + ACTIONS(3819), 1, anon_sym_xor, + STATE(2159), 1, + sym_comment, + ACTIONS(1002), 2, + sym_identifier, anon_sym_or, - [83172] = 7, - ACTIONS(3), 1, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90567] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1966), 1, + STATE(2160), 1, sym_comment, - STATE(2148), 1, - sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(749), 33, - anon_sym_SEMI, + ACTIONS(1010), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205152,37 +219582,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [90615] = 20, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1002), 1, + sym_identifier, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + ACTIONS(3812), 1, + anon_sym_bit_DASHor, + ACTIONS(3814), 1, anon_sym_and, + ACTIONS(3819), 1, anon_sym_xor, + ACTIONS(3821), 1, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [83227] = 4, - ACTIONS(147), 1, + STATE(2161), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90695] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1967), 1, + STATE(2162), 1, sym_comment, - ACTIONS(901), 7, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DOT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(903), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -205198,35 +219686,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [83276] = 4, - ACTIONS(147), 1, + [90743] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1968), 1, + ACTIONS(3721), 1, + anon_sym_DOT, + STATE(2156), 1, + aux_sym_cell_path_repeat1, + STATE(2163), 1, sym_comment, - ACTIONS(1006), 6, + STATE(2319), 1, + sym_path, + ACTIONS(752), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(1008), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(754), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -205242,26 +219730,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [83324] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90797] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1969), 1, + STATE(2164), 1, sym_comment, - STATE(1999), 1, + STATE(2174), 1, sym_path, - STATE(2366), 1, + STATE(2416), 1, sym_cell_path, - ACTIONS(731), 2, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(729), 32, + ACTIONS(744), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -205294,25 +219780,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [83378] = 4, + [90851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1727), 1, - anon_sym_LF, - STATE(1970), 1, + ACTIONS(3823), 1, + anon_sym_QMARK2, + STATE(2165), 1, sym_comment, - ACTIONS(1725), 36, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -205338,25 +219825,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [83426] = 5, + [90901] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2166), 1, + sym_comment, + ACTIONS(930), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(932), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(3699), 1, - anon_sym_QMARK2, - STATE(1971), 1, + STATE(2167), 1, sym_comment, - ACTIONS(836), 35, + ACTIONS(932), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(930), 35, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -205382,59 +219909,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [83476] = 20, - ACTIONS(147), 1, + [90997] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3701), 1, - sym_identifier, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, - anon_sym_bit_DASHand, - ACTIONS(3727), 1, - anon_sym_bit_DASHxor, - ACTIONS(3729), 1, - anon_sym_bit_DASHor, - ACTIONS(3731), 1, - anon_sym_and, - ACTIONS(3733), 1, - anon_sym_xor, - ACTIONS(3735), 1, - anon_sym_or, - STATE(1972), 1, + STATE(2168), 1, sym_comment, - ACTIONS(3705), 2, + ACTIONS(1037), 12, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3713), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3723), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3711), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3721), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3719), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3703), 8, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1039), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -205443,18 +219940,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83556] = 7, - ACTIONS(147), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [91045] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3737), 1, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(1973), 1, + STATE(2169), 1, sym_comment, - STATE(2027), 1, + STATE(2206), 1, sym_path, - STATE(2237), 1, + STATE(2459), 1, sym_cell_path, - ACTIONS(764), 11, + ACTIONS(744), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -205466,7 +219980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(766), 23, + ACTIONS(746), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -205490,25 +220004,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83610] = 5, + [91099] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(3699), 1, - anon_sym_QMARK2, - STATE(1974), 1, + ACTIONS(3719), 1, + anon_sym_DOT, + STATE(2170), 1, sym_comment, - ACTIONS(836), 35, + STATE(2174), 1, + sym_path, + STATE(2414), 1, + sym_cell_path, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -205535,35 +220051,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [83660] = 4, - ACTIONS(147), 1, + [91153] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1975), 1, + ACTIONS(3823), 1, + anon_sym_QMARK2, + STATE(2171), 1, sym_comment, - ACTIONS(1006), 12, - sym_identifier, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [91203] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2172), 1, + sym_comment, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 35, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(1008), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205574,29 +220134,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83708] = 7, - ACTIONS(147), 1, + [91251] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(3717), 1, anon_sym_DOT, - STATE(1968), 1, + STATE(2089), 1, sym_cell_path, - STATE(1976), 1, + STATE(2173), 1, sym_comment, - STATE(2081), 1, + STATE(2194), 1, sym_path, - ACTIONS(737), 5, + ACTIONS(730), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(739), 29, + ACTIONS(732), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -205626,40 +220187,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [83762] = 7, - ACTIONS(147), 1, + [91305] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3737), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1977), 1, + STATE(2174), 1, sym_comment, - STATE(2027), 1, + STATE(2183), 1, + aux_sym_cell_path_repeat1, + STATE(2291), 1, sym_path, - STATE(2247), 1, - sym_cell_path, - ACTIONS(729), 11, - sym_identifier, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(731), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -205670,15 +220230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83816] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [91359] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1978), 1, + STATE(2175), 1, sym_comment, - ACTIONS(1025), 12, + ACTIONS(1018), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -205691,7 +220252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1027), 25, + ACTIONS(1020), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -205717,12 +220278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83864] = 4, - ACTIONS(147), 1, + [91407] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1979), 1, + STATE(2176), 1, sym_comment, - ACTIONS(920), 12, + ACTIONS(922), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -205735,7 +220296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(922), 25, + ACTIONS(924), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -205761,35 +220322,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83912] = 4, - ACTIONS(147), 1, + [91455] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1980), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2177), 1, sym_comment, - ACTIONS(1014), 12, - sym_identifier, + STATE(2194), 1, + sym_path, + STATE(2375), 1, + sym_cell_path, + ACTIONS(764), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1016), 25, - anon_sym_COLON, + ACTIONS(766), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -205805,25 +220366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83960] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [91509] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1981), 1, - sym_comment, - ACTIONS(1012), 2, - ts_builtin_sym_end, + ACTIONS(774), 1, anon_sym_LF, - ACTIONS(407), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 32, + ACTIONS(3825), 1, + anon_sym_QMARK2, + STATE(2178), 1, + sym_comment, + ACTIONS(772), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -205850,15 +220414,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [84010] = 4, - ACTIONS(147), 1, + [91559] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1982), 1, + ACTIONS(3721), 1, + anon_sym_DOT, + STATE(2179), 1, sym_comment, - ACTIONS(1018), 12, + STATE(2206), 1, + sym_path, + STATE(2396), 1, + sym_cell_path, + ACTIONS(760), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -205868,15 +220437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1020), 25, - anon_sym_COLON, + ACTIONS(762), 23, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -205894,12 +220458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84058] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91613] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1983), 1, + STATE(2180), 1, sym_comment, - ACTIONS(988), 12, + ACTIONS(998), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -205912,7 +220479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(990), 25, + ACTIONS(1000), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -205938,59 +220505,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84106] = 7, - ACTIONS(147), 1, + [91661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(1984), 1, + ACTIONS(1722), 1, + anon_sym_LF, + STATE(2181), 1, sym_comment, - STATE(2027), 1, - sym_path, - STATE(2239), 1, - sym_cell_path, - ACTIONS(768), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(770), 23, - anon_sym_COMMA, + ACTIONS(1720), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84160] = 4, - ACTIONS(147), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [91709] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1985), 1, + STATE(2182), 1, sym_comment, - ACTIONS(980), 12, + ACTIONS(934), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206003,7 +220567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(982), 25, + ACTIONS(936), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206029,40 +220593,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84208] = 4, - ACTIONS(147), 1, + [91757] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1986), 1, + ACTIONS(3719), 1, + anon_sym_DOT, + STATE(2183), 1, sym_comment, - ACTIONS(972), 12, - sym_identifier, + STATE(2211), 1, + aux_sym_cell_path_repeat1, + STATE(2291), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(974), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -206073,56 +220636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84256] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(1987), 1, - sym_comment, - ACTIONS(968), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(970), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [84304] = 4, - ACTIONS(147), 1, + sym_short_flag, + [91811] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1988), 1, + STATE(2184), 1, sym_comment, - ACTIONS(964), 12, + ACTIONS(918), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206135,7 +220658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(966), 25, + ACTIONS(920), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206161,27 +220684,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84352] = 7, + [91859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOT, - STATE(1989), 1, - sym_comment, - STATE(1999), 1, - sym_path, - STATE(2367), 1, - sym_cell_path, - ACTIONS(725), 2, - ts_builtin_sym_end, + ACTIONS(774), 1, anon_sym_LF, - ACTIONS(723), 32, + ACTIONS(3825), 1, + anon_sym_QMARK2, + STATE(2185), 1, + sym_comment, + ACTIONS(772), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -206208,68 +220729,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [84406] = 4, - ACTIONS(147), 1, + [91909] = 21, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1990), 1, - sym_comment, - ACTIONS(1010), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, anon_sym_and, + ACTIONS(3750), 1, anon_sym_xor, + ACTIONS(3752), 1, anon_sym_or, - ACTIONS(1012), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2186), 1, + sym_comment, + STATE(3099), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(846), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [84454] = 7, - ACTIONS(147), 1, + [91991] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(3717), 1, anon_sym_DOT, - STATE(1991), 1, + STATE(2187), 1, sym_comment, - STATE(2081), 1, + STATE(2194), 1, sym_path, - STATE(2252), 1, + STATE(2473), 1, sym_cell_path, - ACTIONS(729), 5, + ACTIONS(740), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(731), 29, + ACTIONS(742), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -206299,38 +220837,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [84508] = 6, - ACTIONS(3), 1, + [92045] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3741), 1, - anon_sym_DOT, - STATE(2200), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1992), 2, + STATE(2188), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(942), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(944), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -206341,43 +220881,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [84560] = 7, - ACTIONS(3), 1, + [92093] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOT, - STATE(1992), 1, - aux_sym_cell_path_repeat1, - STATE(1993), 1, + STATE(2189), 1, sym_comment, - STATE(2200), 1, - sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(745), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(946), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(948), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -206388,25 +220925,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [84614] = 7, + [92141] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(1994), 1, - sym_comment, - STATE(1999), 1, + STATE(2174), 1, sym_path, - STATE(2253), 1, + STATE(2190), 1, + sym_comment, + STATE(2384), 1, sym_cell_path, - ACTIONS(735), 2, + ACTIONS(770), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(733), 32, + ACTIONS(768), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -206439,12 +220972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [84668] = 4, - ACTIONS(147), 1, + [92195] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(2191), 1, sym_comment, - ACTIONS(948), 12, + ACTIONS(956), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206457,7 +220990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(950), 25, + ACTIONS(958), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206483,12 +221016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84716] = 4, - ACTIONS(147), 1, + [92243] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1996), 1, + STATE(2192), 1, sym_comment, - ACTIONS(956), 12, + ACTIONS(960), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206501,7 +221034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(958), 25, + ACTIONS(962), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206527,12 +221060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84764] = 4, - ACTIONS(147), 1, + [92291] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1997), 1, + STATE(2193), 1, sym_comment, - ACTIONS(952), 12, + ACTIONS(964), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206545,7 +221078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(954), 25, + ACTIONS(966), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206571,35 +221104,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84812] = 4, - ACTIONS(147), 1, + [92339] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(1998), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2194), 1, sym_comment, - ACTIONS(940), 12, - sym_identifier, + STATE(2210), 1, + aux_sym_cell_path_repeat1, + STATE(2346), 1, + sym_path, + ACTIONS(756), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(942), 25, - anon_sym_COLON, + ACTIONS(758), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -206615,39 +221148,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84860] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [92393] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3697), 1, + ACTIONS(3723), 1, anon_sym_DOT, - STATE(1993), 1, - aux_sym_cell_path_repeat1, - STATE(1999), 1, + STATE(2195), 1, sym_comment, - STATE(2200), 1, + STATE(2216), 1, sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(749), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2508), 1, + sym_cell_path, + ACTIONS(730), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(732), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -206661,79 +221195,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [84914] = 4, - ACTIONS(3), 1, + [92447] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2000), 1, + STATE(2196), 1, sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(846), 35, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(968), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [84962] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(705), 1, - anon_sym_DOT_DOT, - STATE(2001), 1, - sym_comment, - ACTIONS(703), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1012), 29, + ACTIONS(970), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -206749,15 +221242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [85014] = 4, - ACTIONS(147), 1, + [92495] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2002), 1, + STATE(2197), 1, sym_comment, - ACTIONS(944), 12, + ACTIONS(972), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206770,7 +221260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(946), 25, + ACTIONS(974), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206796,35 +221286,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85062] = 4, - ACTIONS(147), 1, + [92543] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2003), 1, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2194), 1, + sym_path, + STATE(2198), 1, sym_comment, - ACTIONS(936), 12, - sym_identifier, + STATE(2475), 1, + sym_cell_path, + ACTIONS(768), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 25, - anon_sym_COLON, + ACTIONS(770), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -206840,15 +221330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85110] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [92597] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2004), 1, + ACTIONS(3721), 1, + anon_sym_DOT, + STATE(2199), 1, sym_comment, - ACTIONS(932), 12, + STATE(2206), 1, + sym_path, + STATE(2388), 1, + sym_cell_path, + ACTIONS(768), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -206858,15 +221356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(934), 25, - anon_sym_COLON, + ACTIONS(770), 23, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -206884,12 +221377,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85158] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92651] = 20, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3768), 1, + anon_sym_in, + ACTIONS(3776), 1, + anon_sym_bit_DASHand, + ACTIONS(3778), 1, + anon_sym_bit_DASHxor, + ACTIONS(3812), 1, + anon_sym_bit_DASHor, + ACTIONS(3814), 1, + anon_sym_and, + ACTIONS(3819), 1, + anon_sym_xor, + ACTIONS(3821), 1, + anon_sym_or, + ACTIONS(3827), 1, + sym_identifier, + STATE(2200), 1, + sym_comment, + ACTIONS(3754), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3756), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3760), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3764), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3772), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3758), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3770), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3766), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3829), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92731] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2005), 1, + STATE(2201), 1, sym_comment, - ACTIONS(924), 12, + ACTIONS(976), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -206902,7 +221458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(926), 25, + ACTIONS(978), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -206928,40 +221484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85206] = 7, - ACTIONS(147), 1, + [92779] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(2006), 1, - sym_comment, - STATE(2081), 1, + STATE(2174), 1, sym_path, - STATE(2364), 1, + STATE(2202), 1, + sym_comment, + STATE(2386), 1, sym_cell_path, - ACTIONS(764), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(766), 29, - anon_sym_COMMA, + ACTIONS(762), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(760), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -206975,19 +221530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [85260] = 6, - ACTIONS(147), 1, + sym_short_flag, + [92833] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(556), 1, - anon_sym_DOT_DOT, - STATE(2007), 1, + STATE(2203), 1, sym_comment, - ACTIONS(554), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 11, + ACTIONS(984), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -206997,10 +221549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1012), 23, + ACTIONS(986), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -207018,22 +221575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85312] = 6, - ACTIONS(147), 1, + [92881] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3744), 1, - anon_sym_DOT, - STATE(2173), 1, - sym_path, - STATE(2008), 2, + STATE(2204), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 11, + ACTIONS(984), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -207043,10 +221593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(759), 23, + ACTIONS(986), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -207064,24 +221619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85364] = 7, + [92929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_path, - STATE(2009), 1, + STATE(2205), 1, sym_comment, - STATE(2363), 1, - sym_cell_path, - ACTIONS(743), 2, + ACTIONS(928), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(741), 32, + ACTIONS(417), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -207114,39 +221664,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [85418] = 7, - ACTIONS(3), 1, + [92979] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3697), 1, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(1999), 1, - sym_path, - STATE(2010), 1, + STATE(2163), 1, + aux_sym_cell_path_repeat1, + STATE(2206), 1, sym_comment, - STATE(2268), 1, - sym_cell_path, - ACTIONS(755), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(753), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2319), 1, + sym_path, + ACTIONS(756), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(758), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -207157,19 +221708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [85472] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2011), 1, + STATE(2207), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(782), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(842), 35, + ACTIONS(780), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -207205,35 +221755,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [85520] = 4, - ACTIONS(147), 1, + [93081] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2012), 1, + ACTIONS(3831), 1, + anon_sym_DOT, + STATE(2346), 1, + sym_path, + STATE(2208), 2, sym_comment, - ACTIONS(976), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(723), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(978), 25, - anon_sym_COLON, + ACTIONS(725), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -207249,15 +221798,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85568] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [93133] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2013), 1, + ACTIONS(3721), 1, + anon_sym_DOT, + STATE(2206), 1, + sym_path, + STATE(2209), 1, sym_comment, - ACTIONS(976), 12, + STATE(2487), 1, + sym_cell_path, + ACTIONS(736), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -207267,17 +221824,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(978), 25, - anon_sym_COLON, + ACTIONS(738), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93187] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2208), 1, + aux_sym_cell_path_repeat1, + STATE(2210), 1, + sym_comment, + STATE(2346), 1, + sym_path, + ACTIONS(752), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(754), 29, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -207293,71 +221892,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85616] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [93241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3747), 1, - anon_sym_QMARK2, - STATE(2014), 1, - sym_comment, - ACTIONS(838), 2, + ACTIONS(3834), 1, + anon_sym_DOT, + STATE(2291), 1, + sym_path, + ACTIONS(725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 34, + STATE(2211), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, sym_short_flag, - [85666] = 5, + [93293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3747), 1, - anon_sym_QMARK2, - STATE(2015), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + ACTIONS(1555), 1, anon_sym_LF, - ACTIONS(836), 34, + ACTIONS(3837), 1, + aux_sym_long_flag_token1, + STATE(2212), 1, + sym_comment, + ACTIONS(1553), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -207383,32 +221986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [85716] = 7, - ACTIONS(147), 1, + [93343] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3749), 1, - anon_sym_DOT, - STATE(2016), 1, + STATE(2213), 1, sym_comment, - STATE(2049), 1, - aux_sym_cell_path_repeat1, - STATE(2172), 1, - sym_path, - ACTIONS(749), 7, + ACTIONS(988), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(751), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(990), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -207424,26 +222030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [85770] = 7, - ACTIONS(147), 1, + [93391] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2008), 1, - aux_sym_cell_path_repeat1, - STATE(2017), 1, + STATE(2214), 1, sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(745), 11, + ACTIONS(103), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -207453,10 +222048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(747), 23, + ACTIONS(105), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -207474,61 +222074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85824] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3753), 1, - anon_sym_LT, - STATE(2018), 1, - sym_comment, - ACTIONS(3751), 36, - anon_sym_COMMA, - 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, - [85872] = 4, - ACTIONS(147), 1, + [93439] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LT, - STATE(2019), 1, + STATE(2215), 1, sym_comment, - ACTIONS(3751), 36, + ACTIONS(3839), 37, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_any, @@ -207565,93 +222116,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [85920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1717), 1, - anon_sym_LF, - STATE(2020), 1, - sym_comment, - ACTIONS(1715), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [85968] = 11, - ACTIONS(147), 1, + [93485] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2021), 1, + ACTIONS(3723), 1, + anon_sym_DOT, + STATE(2098), 1, + aux_sym_cell_path_repeat1, + STATE(2216), 1, sym_comment, - ACTIONS(3705), 2, + STATE(2361), 1, + sym_path, + ACTIONS(756), 7, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3713), 2, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(758), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -207660,44 +222158,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86030] = 8, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [93539] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2022), 1, + ACTIONS(3841), 1, + anon_sym_QMARK2, + STATE(2217), 1, sym_comment, - ACTIONS(3707), 2, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3713), 2, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3711), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(928), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -207708,93 +222203,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86086] = 13, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [93589] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2023), 1, + ACTIONS(3841), 1, + anon_sym_QMARK2, + STATE(2218), 1, sym_comment, - ACTIONS(3705), 2, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3713), 2, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3711), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3721), 3, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, + 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, - ACTIONS(3719), 4, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [93639] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_LF, + STATE(2219), 1, + sym_comment, + STATE(2241), 1, + aux_sym_cell_path_repeat1, + STATE(2555), 1, + sym_path, + ACTIONS(752), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 13, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86152] = 7, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [93692] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(327), 1, anon_sym_DOT, - STATE(2024), 1, + ACTIONS(770), 1, + anon_sym_LF, + STATE(2220), 1, sym_comment, - STATE(2081), 1, + STATE(2225), 1, sym_path, - STATE(2359), 1, + STATE(2713), 1, sym_cell_path, - ACTIONS(723), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(725), 29, - anon_sym_COMMA, + ACTIONS(768), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -207808,39 +222346,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [86206] = 7, - ACTIONS(147), 1, + [93745] = 20, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2025), 1, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(3845), 1, + anon_sym_LF, + ACTIONS(3861), 1, + anon_sym_bit_DASHand, + ACTIONS(3863), 1, + anon_sym_bit_DASHxor, + ACTIONS(3865), 1, + anon_sym_bit_DASHor, + ACTIONS(3867), 1, + anon_sym_and, + ACTIONS(3869), 1, + anon_sym_xor, + ACTIONS(3871), 1, + anon_sym_or, + STATE(2221), 1, sym_comment, - ACTIONS(3713), 2, + STATE(2225), 1, + sym_path, + STATE(2627), 1, + sym_cell_path, + ACTIONS(3849), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3855), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3711), 3, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3859), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3843), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3851), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3853), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(928), 9, - sym_identifier, + anon_sym_SLASH_SLASH, + ACTIONS(3847), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [93824] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3873), 1, + anon_sym_QMARK2, + STATE(2222), 1, + sym_comment, + ACTIONS(772), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT, + ACTIONS(774), 27, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -207855,40 +222443,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86260] = 7, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [93873] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, - anon_sym_DOT, - STATE(2026), 1, + STATE(2223), 1, sym_comment, - STATE(2081), 1, - sym_path, - STATE(2353), 1, - sym_cell_path, - ACTIONS(753), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(755), 29, - anon_sym_COMMA, + ACTIONS(909), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(907), 34, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -207902,18 +222489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [86314] = 7, - ACTIONS(147), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [93920] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2017), 1, - aux_sym_cell_path_repeat1, - STATE(2027), 1, + STATE(2224), 1, sym_comment, - STATE(2173), 1, - sym_path, - ACTIONS(749), 11, + ACTIONS(784), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -207925,10 +222509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(751), 23, + ACTIONS(786), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -207949,39 +222535,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86368] = 6, - ACTIONS(147), 1, + [93967] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3757), 1, + ACTIONS(327), 1, anon_sym_DOT, - STATE(2168), 1, - sym_path, - STATE(2028), 2, - sym_comment, + ACTIONS(758), 1, + anon_sym_LF, + STATE(2219), 1, aux_sym_cell_path_repeat1, - ACTIONS(757), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(759), 29, - anon_sym_COMMA, + STATE(2225), 1, + sym_comment, + STATE(2555), 1, + sym_path, + ACTIONS(756), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -207995,35 +222581,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [86420] = 4, - ACTIONS(147), 1, + [94020] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2029), 1, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(732), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2226), 1, sym_comment, - ACTIONS(984), 12, - sym_identifier, + STATE(2257), 1, + sym_cell_path, + ACTIONS(730), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(986), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + [94073] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3873), 1, + anon_sym_QMARK2, + STATE(2227), 1, + sym_comment, + ACTIONS(772), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(774), 27, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -208039,15 +222665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86468] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [94122] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2228), 1, sym_comment, - ACTIONS(107), 12, + ACTIONS(780), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -208057,22 +222688,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(109), 25, - anon_sym_COLON, + ACTIONS(782), 25, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [94169] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1710), 1, + anon_sym_LF, + STATE(2229), 1, + sym_comment, + ACTIONS(1708), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [94216] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2230), 1, + sym_comment, + STATE(2698), 1, + sym_cell_path, + ACTIONS(736), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208083,41 +222800,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86516] = 5, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [94269] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(3877), 1, + anon_sym_LF, + ACTIONS(3893), 1, + anon_sym_bit_DASHand, + ACTIONS(3895), 1, + anon_sym_bit_DASHxor, + ACTIONS(3897), 1, + anon_sym_bit_DASHor, + ACTIONS(3899), 1, + anon_sym_and, + ACTIONS(3901), 1, + anon_sym_xor, + ACTIONS(3903), 1, + anon_sym_or, + STATE(2225), 1, + sym_path, + STATE(2231), 1, + sym_comment, + STATE(2682), 1, + sym_cell_path, + ACTIONS(3881), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3887), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3889), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3891), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3875), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3883), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3885), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3879), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [94348] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LF, + STATE(2232), 1, + sym_comment, + ACTIONS(1014), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [94395] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2031), 1, + ACTIONS(901), 1, + anon_sym_LF, + STATE(2233), 1, sym_comment, - ACTIONS(3713), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 12, - sym_identifier, + ACTIONS(899), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208128,369 +222944,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86566] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2032), 1, - sym_comment, - ACTIONS(3707), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3713), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(928), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(930), 20, - anon_sym_COLON, + sym_short_flag, + [94442] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3905), 1, anon_sym_COMMA, + STATE(2234), 1, + sym_comment, + ACTIONS(3907), 35, anon_sym_RBRACK, - 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, + [94489] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2235), 1, + sym_comment, + ACTIONS(1722), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1720), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [94536] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, anon_sym_bit_DASHand, + ACTIONS(3925), 1, anon_sym_bit_DASHxor, + ACTIONS(3927), 1, anon_sym_bit_DASHor, - [86624] = 14, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - STATE(2033), 1, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2236), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(3123), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(840), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(3921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(3913), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3719), 4, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [86692] = 15, - ACTIONS(147), 1, + [94617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, - anon_sym_bit_DASHand, - STATE(2034), 1, + STATE(2237), 1, sym_comment, - ACTIONS(3705), 2, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3713), 2, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3723), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3721), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3719), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86762] = 16, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [94664] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, anon_sym_bit_DASHand, - ACTIONS(3727), 1, + ACTIONS(3925), 1, anon_sym_bit_DASHxor, - STATE(2035), 1, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2238), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(3136), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(788), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(790), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(3921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(3913), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3719), 4, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [86834] = 17, - ACTIONS(147), 1, + [94745] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, + ACTIONS(371), 1, + anon_sym_DOT, + ACTIONS(375), 1, + anon_sym_QMARK2, + ACTIONS(383), 1, anon_sym_bit_DASHand, - ACTIONS(3727), 1, + ACTIONS(385), 1, anon_sym_bit_DASHxor, - ACTIONS(3729), 1, + ACTIONS(387), 1, anon_sym_bit_DASHor, - STATE(2036), 1, + ACTIONS(389), 1, + anon_sym_and, + ACTIONS(391), 1, + anon_sym_xor, + ACTIONS(393), 1, + anon_sym_or, + STATE(2239), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(2312), 1, + sym_path, + STATE(2820), 1, + sym_cell_path, + ACTIONS(317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(377), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(379), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(381), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(369), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3719), 4, + ACTIONS(373), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(365), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86908] = 18, - ACTIONS(147), 1, + [94826] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, anon_sym_bit_DASHand, - ACTIONS(3727), 1, + ACTIONS(3925), 1, anon_sym_bit_DASHxor, - ACTIONS(3729), 1, + ACTIONS(3927), 1, anon_sym_bit_DASHor, - ACTIONS(3731), 1, + ACTIONS(3929), 1, anon_sym_and, - STATE(2037), 1, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2240), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(3139), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(3921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(928), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(3913), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3719), 4, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86984] = 7, - ACTIONS(147), 1, + [94907] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(725), 1, + anon_sym_LF, + ACTIONS(3935), 1, anon_sym_DOT, - STATE(2028), 1, - aux_sym_cell_path_repeat1, - STATE(2038), 1, - sym_comment, - STATE(2168), 1, + STATE(2555), 1, sym_path, - ACTIONS(745), 5, + STATE(2241), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(723), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(747), 29, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [94958] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(750), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2242), 1, + sym_comment, + STATE(2708), 1, + sym_cell_path, + ACTIONS(748), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208504,159 +223408,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [87038] = 19, - ACTIONS(147), 1, + [95011] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, + ACTIONS(371), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_QMARK2, + ACTIONS(3954), 1, anon_sym_bit_DASHand, - ACTIONS(3727), 1, + ACTIONS(3956), 1, anon_sym_bit_DASHxor, - ACTIONS(3729), 1, + ACTIONS(3958), 1, anon_sym_bit_DASHor, - ACTIONS(3731), 1, + ACTIONS(3960), 1, anon_sym_and, - ACTIONS(3733), 1, + ACTIONS(3962), 1, anon_sym_xor, - STATE(2039), 1, - sym_comment, - ACTIONS(928), 2, - sym_identifier, + ACTIONS(3964), 1, anon_sym_or, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(2243), 1, + sym_comment, + STATE(2312), 1, + sym_path, + STATE(2848), 1, + sym_cell_path, + ACTIONS(3780), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3940), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(3948), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(3950), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(3952), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(3942), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3719), 4, + ACTIONS(3944), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3938), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87116] = 20, - ACTIONS(147), 1, + [95092] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(3709), 1, - anon_sym_in, - ACTIONS(3715), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3725), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, anon_sym_bit_DASHand, - ACTIONS(3727), 1, + ACTIONS(3925), 1, anon_sym_bit_DASHxor, - ACTIONS(3729), 1, + ACTIONS(3927), 1, anon_sym_bit_DASHor, - ACTIONS(3731), 1, + ACTIONS(3929), 1, anon_sym_and, - ACTIONS(3733), 1, + ACTIONS(3931), 1, anon_sym_xor, - ACTIONS(3735), 1, + ACTIONS(3933), 1, anon_sym_or, - STATE(2040), 1, + STATE(2244), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3707), 2, + STATE(3145), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(822), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(824), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3713), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3717), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3723), 2, + ACTIONS(3921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3711), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3721), 3, + ACTIONS(3913), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3719), 4, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87196] = 7, - ACTIONS(147), 1, + [95173] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_path, - STATE(2041), 1, + ACTIONS(3966), 1, + anon_sym_QMARK2, + STATE(2245), 1, sym_comment, - STATE(2234), 1, - sym_cell_path, - ACTIONS(753), 11, - sym_identifier, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(755), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208667,31 +223568,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87250] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [95222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_path, - STATE(2042), 1, - sym_comment, - STATE(2270), 1, - sym_cell_path, - ACTIONS(766), 2, - ts_builtin_sym_end, + ACTIONS(786), 1, anon_sym_LF, - ACTIONS(764), 32, + STATE(2246), 1, + sym_comment, + ACTIONS(784), 35, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -208716,36 +223615,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [87304] = 7, - ACTIONS(147), 1, + [95269] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_path, - STATE(2043), 1, + ACTIONS(3968), 1, + anon_sym_QMARK2, + STATE(2247), 1, sym_comment, - STATE(2264), 1, - sym_cell_path, - ACTIONS(733), 11, - sym_identifier, + ACTIONS(772), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(735), 23, + ACTIONS(774), 30, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -208761,28 +223656,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87358] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [95318] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(2044), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2248), 1, sym_comment, - ACTIONS(844), 2, + STATE(3150), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(850), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(852), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(842), 35, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [95399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1718), 1, + anon_sym_LF, + STATE(2249), 1, + sym_comment, + ACTIONS(1716), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -208808,33 +223762,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [87406] = 4, - ACTIONS(3), 1, + [95446] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2045), 1, + ACTIONS(3968), 1, + anon_sym_QMARK2, + STATE(2250), 1, sym_comment, - ACTIONS(1008), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1006), 35, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(772), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(774), 30, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208848,26 +223806,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [95495] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1571), 1, + anon_sym_LF, + STATE(2251), 1, + sym_comment, + ACTIONS(1569), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, sym_short_flag, - [87454] = 5, + [95542] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3760), 1, - anon_sym_QMARK2, - STATE(2046), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2252), 1, sym_comment, - ACTIONS(838), 2, + STATE(3156), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(842), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(844), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 34, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [95623] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(905), 1, + anon_sym_LF, + STATE(2253), 1, + sym_comment, + ACTIONS(903), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -208894,38 +223951,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [87504] = 5, - ACTIONS(3), 1, + sym_short_flag, + [95670] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3760), 1, - anon_sym_QMARK2, - STATE(2047), 1, + STATE(2254), 1, sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(836), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(780), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(782), 28, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -208940,37 +223993,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [87554] = 4, - ACTIONS(147), 1, + sym_short_flag, + [95717] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(2255), 1, sym_comment, - ACTIONS(960), 12, - sym_identifier, + ACTIONS(784), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(962), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT, + ACTIONS(786), 28, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -208986,29 +224032,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [87602] = 7, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [95764] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3749), 1, - anon_sym_DOT, - STATE(2049), 1, + STATE(2256), 1, sym_comment, - STATE(2062), 1, - aux_sym_cell_path_repeat1, - STATE(2172), 1, - sym_path, - ACTIONS(745), 7, + ACTIONS(907), 7, + anon_sym_EQ, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(747), 27, + ACTIONS(909), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -209030,30 +224080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [87656] = 7, + [95811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_path, - STATE(2050), 1, - sym_comment, - STATE(2271), 1, - sym_cell_path, - ACTIONS(770), 2, - ts_builtin_sym_end, + ACTIONS(932), 1, anon_sym_LF, - ACTIONS(768), 32, + STATE(2257), 1, + sym_comment, + ACTIONS(930), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -209079,41 +224121,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [95858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3970), 1, + aux_sym_long_flag_token1, + STATE(2258), 1, + sym_comment, + ACTIONS(1555), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1553), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, sym_short_flag, - [87710] = 7, - ACTIONS(147), 1, + [95907] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, + ACTIONS(327), 1, anon_sym_DOT, - STATE(2051), 1, - sym_comment, - STATE(2081), 1, + ACTIONS(766), 1, + anon_sym_LF, + STATE(2225), 1, sym_path, - STATE(2328), 1, + STATE(2259), 1, + sym_comment, + STATE(2670), 1, sym_cell_path, - ACTIONS(741), 5, + ACTIONS(764), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(743), 29, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [95960] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(746), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2260), 1, + sym_comment, + STATE(2710), 1, + sym_cell_path, + ACTIONS(744), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209127,40 +224260,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [87764] = 7, - ACTIONS(147), 1, + [96013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, - anon_sym_DOT, - STATE(2052), 1, + ACTIONS(782), 1, + anon_sym_LF, + STATE(2261), 1, sym_comment, - STATE(2081), 1, - sym_path, - STATE(2325), 1, - sym_cell_path, - ACTIONS(733), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(735), 29, - anon_sym_COMMA, + ACTIONS(780), 35, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209174,58 +224303,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [87818] = 4, - ACTIONS(147), 1, + [96060] = 21, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2053), 1, - sym_comment, - ACTIONS(1002), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, anon_sym_and, + ACTIONS(3931), 1, anon_sym_xor, + ACTIONS(3933), 1, anon_sym_or, - ACTIONS(1004), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(2262), 1, + sym_comment, + STATE(3161), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(834), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(836), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [87866] = 3, - ACTIONS(147), 1, + [96141] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2054), 1, + ACTIONS(3972), 1, + anon_sym_GT, + STATE(2263), 1, sym_comment, - ACTIONS(3762), 37, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4015), 1, + sym_flat_type, + ACTIONS(3566), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -209260,28 +224407,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - anon_sym_LBRACE, - [87912] = 7, + [96190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, + STATE(2264), 1, + sym_comment, + ACTIONS(901), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(899), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, - STATE(1999), 1, - sym_path, - STATE(2045), 1, - sym_cell_path, - STATE(2055), 1, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [96237] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2265), 1, sym_comment, - ACTIONS(739), 2, + STATE(3164), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(854), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(856), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(737), 32, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [96318] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(762), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2266), 1, + sym_comment, + STATE(2699), 1, + sym_cell_path, + ACTIONS(760), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -209307,36 +224556,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [87966] = 4, - ACTIONS(147), 1, + [96371] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2267), 1, sym_comment, - ACTIONS(992), 12, - sym_identifier, + ACTIONS(903), 7, + anon_sym_EQ, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(994), 25, + ACTIONS(905), 29, anon_sym_COLON, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -209352,15 +224595,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88014] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [96418] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3974), 1, + anon_sym_GT, + STATE(2268), 1, + sym_comment, + STATE(3947), 1, + sym_flat_type, + ACTIONS(3566), 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, + [96467] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2057), 1, + STATE(2269), 1, sym_comment, - ACTIONS(848), 2, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(846), 35, + ACTIONS(903), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -209370,7 +224661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -209396,15 +224686,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [88062] = 4, - ACTIONS(147), 1, + [96514] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2058), 1, + STATE(2270), 1, sym_comment, - ACTIONS(1029), 12, + ACTIONS(3591), 36, + anon_sym_COMMA, + 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, + [96559] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3976), 1, + anon_sym_QMARK2, + STATE(2271), 1, + sym_comment, + ACTIONS(772), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -209414,15 +224747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1031), 25, - anon_sym_COLON, + ACTIONS(774), 24, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -209440,85 +224769,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88110] = 21, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - ACTIONS(3784), 1, - anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - ACTIONS(3788), 1, - anon_sym_or, - STATE(2059), 1, + STATE(2272), 1, sym_comment, - STATE(2894), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(816), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [88192] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(903), 1, + ACTIONS(909), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2060), 1, - sym_comment, - ACTIONS(901), 36, + ACTIONS(907), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, @@ -209545,25 +224815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [88240] = 4, + [96655] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_LF, - STATE(2061), 1, + STATE(2273), 1, sym_comment, - ACTIONS(914), 36, + ACTIONS(1726), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1724), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -209589,36 +224858,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [88288] = 6, - ACTIONS(147), 1, + [96702] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3790), 1, - anon_sym_DOT, - STATE(2172), 1, - sym_path, - STATE(2062), 2, + ACTIONS(928), 1, + anon_sym_LF, + STATE(2274), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 7, + ACTIONS(351), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(759), 27, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209632,43 +224902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [88340] = 7, - ACTIONS(147), 1, + [96751] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_path, - STATE(2063), 1, + ACTIONS(909), 1, + anon_sym_LF, + STATE(2275), 1, sym_comment, - STATE(2300), 1, - sym_cell_path, - ACTIONS(741), 11, - sym_identifier, + ACTIONS(907), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(743), 23, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209679,40 +224941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88394] = 5, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [96798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3793), 1, - anon_sym_QMARK2, - STATE(2064), 1, + STATE(2276), 1, sym_comment, - ACTIONS(836), 7, - anon_sym_EQ, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(838), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209727,82 +224988,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [88444] = 5, + [96845] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1547), 1, - anon_sym_LF, - ACTIONS(3795), 1, - aux_sym_long_flag_token1, - STATE(2065), 1, + STATE(2277), 1, sym_comment, - ACTIONS(1545), 35, + ACTIONS(786), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(784), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [88494] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3793), 1, - anon_sym_QMARK2, - STATE(2066), 1, - sym_comment, - ACTIONS(836), 7, - anon_sym_EQ, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(838), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209817,18 +225031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [88544] = 7, - ACTIONS(147), 1, + [96892] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_path, - STATE(2067), 1, + ACTIONS(3976), 1, + anon_sym_QMARK2, + STATE(2278), 1, sym_comment, - STATE(2320), 1, - sym_cell_path, - ACTIONS(723), 11, + ACTIONS(772), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -209840,10 +225050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(725), 23, + ACTIONS(774), 24, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -209864,40 +225075,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88598] = 4, - ACTIONS(147), 1, + [96941] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2068), 1, + ACTIONS(3966), 1, + anon_sym_QMARK2, + STATE(2279), 1, sym_comment, - ACTIONS(103), 12, - sym_identifier, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(105), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + sym_short_flag, + [96990] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(327), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_LF, + STATE(2225), 1, + sym_path, + STATE(2280), 1, + sym_comment, + STATE(2717), 1, + sym_cell_path, + ACTIONS(740), 32, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209908,37 +225162,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88646] = 7, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [97043] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3749), 1, - anon_sym_DOT, - STATE(2016), 1, - sym_path, - STATE(2069), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + ACTIONS(3933), 1, + anon_sym_or, + STATE(2281), 1, sym_comment, - STATE(2326), 1, - sym_cell_path, - ACTIONS(737), 7, - anon_sym_GT, + STATE(3133), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(846), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(848), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [97124] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1031), 1, + anon_sym_LF, + STATE(2282), 1, + sym_comment, + ACTIONS(1029), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(739), 27, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [97171] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + ACTIONS(3752), 1, + anon_sym_or, + STATE(2283), 1, + sym_comment, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3740), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3732), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [97243] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2284), 1, + sym_comment, + ACTIONS(1010), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -209952,89 +225364,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [88700] = 21, + [97289] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(822), 1, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, + ACTIONS(3742), 1, anon_sym_bit_DASHand, - ACTIONS(3780), 1, + ACTIONS(3744), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, + ACTIONS(3746), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, + ACTIONS(3748), 1, anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - ACTIONS(3788), 1, - anon_sym_or, - STATE(2070), 1, + STATE(2285), 1, sym_comment, - STATE(2860), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(820), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [88782] = 4, + ACTIONS(1002), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [97357] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LF, - STATE(2071), 1, + STATE(2286), 1, sym_comment, - ACTIONS(908), 36, + ACTIONS(1031), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1029), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -210060,101 +225460,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [88830] = 21, + [97403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(774), 1, + ACTIONS(970), 1, anon_sym_LF, - ACTIONS(2621), 1, + STATE(2287), 1, + sym_comment, + ACTIONS(968), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, sym_short_flag, - ACTIONS(3778), 1, + [97449] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(371), 1, + anon_sym_DOT, + ACTIONS(3992), 1, anon_sym_bit_DASHand, - ACTIONS(3780), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, + ACTIONS(3996), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, + ACTIONS(3998), 1, anon_sym_and, - ACTIONS(3786), 1, + ACTIONS(4000), 1, anon_sym_xor, - ACTIONS(3788), 1, + ACTIONS(4002), 1, anon_sym_or, - STATE(2072), 1, + STATE(2288), 1, sym_comment, - STATE(2887), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + STATE(2312), 1, + sym_path, + STATE(2726), 1, + sym_cell_path, + ACTIONS(3843), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3845), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3980), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3986), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3988), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3990), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3982), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3984), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3978), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [97527] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(974), 1, + anon_sym_LF, + STATE(2289), 1, + sym_comment, + ACTIONS(972), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(772), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [97573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2290), 1, + sym_comment, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, - ACTIONS(3768), 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [97619] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2291), 1, + sym_comment, + ACTIONS(909), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(907), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + 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, + sym_short_flag, + [97665] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(978), 1, + anon_sym_LF, + STATE(2292), 1, + sym_comment, + ACTIONS(976), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [88912] = 7, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [97711] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3739), 1, - anon_sym_DOT, - STATE(2073), 1, + ACTIONS(986), 1, + anon_sym_LF, + STATE(2293), 1, sym_comment, - STATE(2081), 1, - sym_path, - STATE(2296), 1, - sym_cell_path, - ACTIONS(768), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(770), 29, - anon_sym_COMMA, + ACTIONS(984), 34, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -210168,75 +225769,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [88966] = 21, + sym_short_flag, + [97757] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(826), 1, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, + ACTIONS(3742), 1, anon_sym_bit_DASHand, - ACTIONS(3780), 1, + ACTIONS(3744), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, + ACTIONS(3746), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, - anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - ACTIONS(3788), 1, - anon_sym_or, - STATE(2074), 1, + STATE(2294), 1, sym_comment, - STATE(2863), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(824), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89048] = 4, + ACTIONS(1002), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [97823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(986), 1, anon_sym_LF, - STATE(2075), 1, + STATE(2295), 1, sym_comment, - ACTIONS(842), 36, + ACTIONS(984), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -210245,9 +225838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -210273,75 +225864,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [89096] = 21, + [97869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(856), 1, + ACTIONS(1008), 1, anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - ACTIONS(3784), 1, - anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - ACTIONS(3788), 1, - anon_sym_or, - STATE(2076), 1, + STATE(2296), 1, sym_comment, - STATE(2885), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(854), 4, + ACTIONS(1006), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89178] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [97915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2077), 1, + STATE(2297), 1, sym_comment, - ACTIONS(846), 36, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -210350,9 +225922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -210378,144 +225948,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [89226] = 21, + [97961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(834), 1, + ACTIONS(774), 1, anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - ACTIONS(3784), 1, - anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - ACTIONS(3788), 1, - anon_sym_or, - STATE(2078), 1, + ACTIONS(4004), 1, + anon_sym_QMARK2, + STATE(2298), 1, sym_comment, - STATE(2868), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + ACTIONS(772), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(832), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [98009] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2299), 1, + sym_comment, + STATE(2312), 1, + sym_path, + STATE(2802), 1, + sym_cell_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89308] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3780), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, anon_sym_and, - ACTIONS(3786), 1, anon_sym_xor, - ACTIONS(3788), 1, anon_sym_or, - STATE(2079), 1, + [98061] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + STATE(2300), 1, sym_comment, - STATE(2878), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89390] = 4, + ACTIONS(1002), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [98125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, + ACTIONS(996), 1, anon_sym_LF, - STATE(2080), 1, + STATE(2301), 1, sym_comment, - ACTIONS(908), 36, + ACTIONS(994), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -210541,27 +226128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [89438] = 7, - ACTIONS(147), 1, + sym_short_flag, + [98171] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3739), 1, - anon_sym_DOT, - STATE(2038), 1, - aux_sym_cell_path_repeat1, - STATE(2081), 1, + STATE(2302), 1, sym_comment, - STATE(2168), 1, - sym_path, - ACTIONS(749), 5, + ACTIONS(899), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(751), 29, + ACTIONS(901), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -210570,6 +226149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -210591,40 +226171,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [89492] = 7, - ACTIONS(147), 1, + [98217] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3737), 1, - anon_sym_DOT, - STATE(1975), 1, - sym_cell_path, - STATE(2027), 1, - sym_path, - STATE(2082), 1, + STATE(2303), 1, sym_comment, - ACTIONS(737), 11, - sym_identifier, + ACTIONS(1571), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1569), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [98263] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(962), 1, + anon_sym_LF, + STATE(2304), 1, + sym_comment, + ACTIONS(960), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(739), 23, - anon_sym_COMMA, + sym_short_flag, + [98309] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(990), 1, + anon_sym_LF, + STATE(2305), 1, + sym_comment, + ACTIONS(988), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -210635,86 +226293,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89546] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - ACTIONS(3784), 1, anon_sym_and, - ACTIONS(3786), 1, anon_sym_xor, - ACTIONS(3788), 1, anon_sym_or, - STATE(2083), 1, + sym_short_flag, + [98355] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(105), 1, + anon_sym_LF, + STATE(2306), 1, sym_comment, - STATE(2871), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(850), 4, + ACTIONS(103), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89628] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [98401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, + ACTIONS(958), 1, anon_sym_LF, - STATE(2084), 1, + STATE(2307), 1, sym_comment, - ACTIONS(901), 36, + ACTIONS(956), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -210740,204 +226380,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_short_flag, + [98447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2308), 1, + sym_comment, + ACTIONS(1710), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1708), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [89676] = 21, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [98493] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, + ACTIONS(371), 1, anon_sym_DOT, - ACTIONS(3799), 1, - anon_sym_LF, - ACTIONS(3809), 1, - anon_sym_QMARK2, - ACTIONS(3817), 1, + ACTIONS(4020), 1, anon_sym_bit_DASHand, - ACTIONS(3819), 1, + ACTIONS(4022), 1, anon_sym_bit_DASHxor, - ACTIONS(3821), 1, + ACTIONS(4024), 1, anon_sym_bit_DASHor, - ACTIONS(3823), 1, + ACTIONS(4026), 1, anon_sym_and, - ACTIONS(3825), 1, + ACTIONS(4028), 1, anon_sym_xor, - ACTIONS(3827), 1, + ACTIONS(4030), 1, anon_sym_or, - STATE(2085), 1, + STATE(2309), 1, sym_comment, - STATE(2114), 1, + STATE(2312), 1, sym_path, - STATE(2408), 1, + STATE(2769), 1, sym_cell_path, - ACTIONS(3803), 2, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4008), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3811), 2, + ACTIONS(4014), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3813), 2, + ACTIONS(4016), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3815), 2, + ACTIONS(4018), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3797), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3805), 4, + ACTIONS(4010), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3807), 4, + ACTIONS(4012), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3801), 6, + ACTIONS(4006), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89758] = 21, + [98571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(327), 1, + ACTIONS(1012), 1, anon_sym_LF, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(339), 1, - anon_sym_QMARK2, - ACTIONS(347), 1, + STATE(2310), 1, + sym_comment, + ACTIONS(1010), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(349), 1, anon_sym_bit_DASHxor, - ACTIONS(351), 1, anon_sym_bit_DASHor, - ACTIONS(353), 1, anon_sym_and, - ACTIONS(355), 1, anon_sym_xor, - ACTIONS(357), 1, anon_sym_or, - STATE(2086), 1, + sym_short_flag, + [98617] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(982), 1, + anon_sym_LF, + STATE(2311), 1, sym_comment, - STATE(2114), 1, - sym_path, - STATE(2436), 1, - sym_cell_path, - ACTIONS(331), 2, + ACTIONS(980), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(341), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(343), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(325), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [98663] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2312), 1, + sym_comment, + STATE(2325), 1, + aux_sym_cell_path_repeat1, + STATE(2718), 1, + sym_path, + ACTIONS(758), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(756), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(333), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(337), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(329), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89840] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(830), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - ACTIONS(3778), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3780), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, anon_sym_and, - ACTIONS(3786), 1, anon_sym_xor, - ACTIONS(3788), 1, anon_sym_or, - STATE(2087), 1, + [98715] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + STATE(2313), 1, sym_comment, - STATE(2855), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(3766), 2, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3768), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89922] = 4, + ACTIONS(1002), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [98777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(948), 1, anon_sym_LF, - STATE(2088), 1, + STATE(2314), 1, sym_comment, - ACTIONS(1006), 35, + ACTIONS(946), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -210966,37 +226701,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_short_flag, + [98823] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2315), 1, + sym_comment, + ACTIONS(1016), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1014), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [89969] = 5, - ACTIONS(147), 1, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [98869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3829), 1, - anon_sym_QMARK2, - STATE(2089), 1, + ACTIONS(1020), 1, + anon_sym_LF, + STATE(2316), 1, sym_comment, - ACTIONS(836), 8, + ACTIONS(1018), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(838), 27, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -211010,17 +226785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [90018] = 4, + [98915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, + ACTIONS(920), 1, anon_sym_LF, - STATE(2090), 1, + STATE(2317), 1, sym_comment, - ACTIONS(901), 35, + ACTIONS(918), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -211029,7 +226802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -211056,90 +226828,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [90065] = 21, + [98961] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2091), 1, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2312), 1, + sym_path, + STATE(2318), 1, sym_comment, - STATE(2920), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(858), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(860), 2, + STATE(2852), 1, + sym_cell_path, + ACTIONS(750), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(748), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90146] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [99013] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(2319), 1, sym_comment, - ACTIONS(901), 7, - anon_sym_EQ, + ACTIONS(907), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(903), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(909), 24, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -211155,27 +226912,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [90193] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LF, - STATE(2093), 1, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2312), 1, + sym_path, + STATE(2320), 1, sym_comment, - ACTIONS(908), 35, + STATE(2834), 1, + sym_cell_path, + ACTIONS(738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(736), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -211201,25 +226960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [90240] = 4, + [99111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2094), 1, - sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, + ACTIONS(1012), 1, anon_sym_LF, - ACTIONS(846), 34, + STATE(2321), 1, + sym_comment, + ACTIONS(1010), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -211245,35 +227002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [90287] = 4, - ACTIONS(3), 1, + [99157] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_LF, - STATE(2095), 1, + STATE(2322), 1, sym_comment, - ACTIONS(914), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(903), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(905), 24, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -211284,31 +227041,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [90334] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(770), 1, - anon_sym_LF, - STATE(2096), 1, + STATE(2323), 1, sym_comment, - STATE(2114), 1, - sym_path, - STATE(2395), 1, - sym_cell_path, - ACTIONS(768), 32, + ACTIONS(928), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(395), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -211334,195 +227087,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90387] = 21, + [99251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2097), 1, + ACTIONS(1039), 1, + anon_sym_LF, + STATE(2324), 1, sym_comment, - STATE(2917), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(828), 2, + ACTIONS(1037), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(830), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90468] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2098), 1, - sym_comment, - ACTIONS(1727), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1725), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [90515] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3847), 1, anon_sym_bit_DASHxor, - ACTIONS(3849), 1, anon_sym_bit_DASHor, - ACTIONS(3851), 1, anon_sym_and, - ACTIONS(3853), 1, anon_sym_xor, - ACTIONS(3855), 1, anon_sym_or, - STATE(2099), 1, + sym_short_flag, + [99297] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2325), 1, sym_comment, - STATE(2933), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(850), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(852), 2, + STATE(2345), 1, + aux_sym_cell_path_repeat1, + STATE(2718), 1, + sym_path, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(752), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90596] = 5, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [99349] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3857), 1, - anon_sym_QMARK2, - STATE(2100), 1, + STATE(2326), 1, sym_comment, - ACTIONS(836), 5, + ACTIONS(899), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(838), 30, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(901), 24, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -211538,190 +227213,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [90645] = 21, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99395] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(371), 1, anon_sym_DOT, - ACTIONS(3867), 1, - anon_sym_QMARK2, - ACTIONS(3875), 1, - anon_sym_bit_DASHand, - ACTIONS(3877), 1, - anon_sym_bit_DASHxor, - ACTIONS(3879), 1, - anon_sym_bit_DASHor, - ACTIONS(3881), 1, - anon_sym_and, - ACTIONS(3883), 1, - anon_sym_xor, - ACTIONS(3885), 1, - anon_sym_or, - STATE(2101), 1, - sym_comment, - STATE(2188), 1, + STATE(2312), 1, sym_path, - STATE(2574), 1, + STATE(2327), 1, + sym_comment, + STATE(2745), 1, sym_cell_path, - ACTIONS(3797), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3799), 2, + ACTIONS(770), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3861), 2, + ACTIONS(768), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3869), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3871), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3873), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3863), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3865), 4, + 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, + [99447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(966), 1, + anon_sym_LF, + STATE(2328), 1, + sym_comment, + ACTIONS(964), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3859), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90726] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3847), 1, anon_sym_bit_DASHxor, - ACTIONS(3849), 1, anon_sym_bit_DASHor, - ACTIONS(3851), 1, anon_sym_and, - ACTIONS(3853), 1, anon_sym_xor, - ACTIONS(3855), 1, anon_sym_or, - STATE(2102), 1, - sym_comment, - STATE(2924), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(854), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(856), 2, - ts_builtin_sym_end, + sym_short_flag, + [99493] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(3833), 2, + STATE(2329), 1, + sym_comment, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3843), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3835), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1573), 1, - anon_sym_LF, - STATE(2103), 1, - sym_comment, - ACTIONS(1571), 35, + ACTIONS(1002), 12, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_short_flag, - [90854] = 7, + [99553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(766), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2104), 1, + STATE(2330), 1, sym_comment, - STATE(2114), 1, - sym_path, - STATE(2396), 1, - sym_cell_path, - ACTIONS(764), 32, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -211750,127 +227393,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90907] = 21, + sym_short_flag, + [99599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2105), 1, - sym_comment, - STATE(2930), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(772), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(774), 2, - ts_builtin_sym_end, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(3833), 2, + STATE(2331), 1, + sym_comment, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, + ACTIONS(1002), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90988] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3887), 1, - anon_sym_COMMA, - STATE(2106), 1, - sym_comment, - ACTIONS(3889), 35, - 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, - [91035] = 7, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [99653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(747), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2107), 1, + STATE(2332), 1, sym_comment, - STATE(2138), 1, - aux_sym_cell_path_repeat1, - STATE(2390), 1, - sym_path, - ACTIONS(745), 32, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -211899,180 +227481,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91088] = 21, + sym_short_flag, + [99699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2108), 1, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2333), 1, sym_comment, - STATE(2909), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(832), 2, + ACTIONS(1010), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(834), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [91169] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2109), 1, - sym_comment, - ACTIONS(3891), 36, - anon_sym_COMMA, - 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, - [91214] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2110), 1, - sym_comment, - ACTIONS(3893), 36, - anon_sym_COMMA, - 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, - [91259] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(842), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(844), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -212083,40 +227520,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91306] = 5, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [99745] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - anon_sym_QMARK2, - STATE(2112), 1, + STATE(2334), 1, sym_comment, - ACTIONS(836), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(838), 30, - anon_sym_COMMA, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 33, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -212130,24 +227565,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91355] = 4, + sym_short_flag, + [99791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(2113), 1, + STATE(2335), 1, sym_comment, - ACTIONS(1559), 35, + ACTIONS(1718), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1716), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -212173,24 +227608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [91402] = 7, + [99837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(751), 1, + ACTIONS(940), 1, anon_sym_LF, - STATE(2107), 1, - aux_sym_cell_path_repeat1, - STATE(2114), 1, + STATE(2336), 1, sym_comment, - STATE(2390), 1, - sym_path, - ACTIONS(749), 32, + ACTIONS(938), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -212219,24 +227649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91455] = 7, + sym_short_flag, + [99883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(731), 1, + ACTIONS(954), 1, anon_sym_LF, - STATE(2114), 1, - sym_path, - STATE(2115), 1, + STATE(2337), 1, sym_comment, - STATE(2490), 1, - sym_cell_path, - ACTIONS(729), 32, + ACTIONS(952), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -212265,24 +227691,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91508] = 4, + sym_short_flag, + [99929] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2116), 1, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2312), 1, + sym_path, + STATE(2338), 1, sym_comment, - ACTIONS(844), 2, + STATE(2832), 1, + sym_cell_path, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(842), 34, + ACTIONS(744), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -212307,190 +227737,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [91555] = 21, + [99981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2117), 1, + STATE(2339), 1, sym_comment, - STATE(2906), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(824), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(826), 2, + ACTIONS(901), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(899), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91636] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(3897), 1, - anon_sym_LF, - ACTIONS(3913), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3915), 1, anon_sym_bit_DASHxor, - ACTIONS(3917), 1, anon_sym_bit_DASHor, - ACTIONS(3919), 1, anon_sym_and, - ACTIONS(3921), 1, anon_sym_xor, - ACTIONS(3923), 1, anon_sym_or, - STATE(2114), 1, - sym_path, - STATE(2118), 1, + sym_short_flag, + [100027] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1031), 1, + anon_sym_LF, + STATE(2340), 1, sym_comment, - STATE(2488), 1, - sym_cell_path, - ACTIONS(3901), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3907), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3909), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3911), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3895), 4, + ACTIONS(1029), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3903), 4, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3905), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3899), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91715] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3925), 1, - anon_sym_GT, - STATE(2119), 1, - sym_comment, - STATE(3811), 1, - sym_flat_type, - ACTIONS(3560), 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, - [91764] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [100073] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2120), 1, + STATE(2341), 1, sym_comment, - ACTIONS(908), 7, - anon_sym_EQ, + ACTIONS(903), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(910), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, + ACTIONS(905), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -212513,37 +227863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [91811] = 4, - ACTIONS(147), 1, + [100119] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2121), 1, + ACTIONS(1004), 1, + anon_sym_LF, + STATE(2342), 1, sym_comment, - ACTIONS(846), 11, - sym_identifier, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(848), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -212554,21 +227902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91858] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [100167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(115), 1, anon_sym_LF, - STATE(2122), 1, + STATE(2343), 1, sym_comment, - ACTIONS(359), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 32, + ACTIONS(113), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -212576,7 +227921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -212601,333 +227948,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91907] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2123), 1, - sym_comment, - ACTIONS(3751), 36, - anon_sym_COMMA, - 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, - [91952] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3927), 1, - anon_sym_GT, - STATE(2124), 1, - sym_comment, - STATE(3782), 1, - sym_flat_type, - ACTIONS(3560), 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, - [92001] = 21, + [100213] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2125), 1, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(2312), 1, + sym_path, + STATE(2344), 1, sym_comment, - STATE(2899), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(820), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(822), 2, + STATE(2798), 1, + sym_cell_path, + ACTIONS(766), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(764), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [92082] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2126), 1, - sym_comment, - ACTIONS(1717), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1715), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [92129] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - ACTIONS(3845), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3847), 1, anon_sym_bit_DASHxor, - ACTIONS(3849), 1, anon_sym_bit_DASHor, - ACTIONS(3851), 1, anon_sym_and, - ACTIONS(3853), 1, anon_sym_xor, - ACTIONS(3855), 1, anon_sym_or, - STATE(2127), 1, + [100265] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4032), 1, + anon_sym_DOT, + STATE(2718), 1, + sym_path, + ACTIONS(725), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2345), 2, sym_comment, - STATE(2932), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(816), 2, + aux_sym_cell_path_repeat1, + ACTIONS(723), 30, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(818), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [92210] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - ACTIONS(375), 1, - anon_sym_QMARK2, - ACTIONS(383), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(385), 1, anon_sym_bit_DASHxor, - ACTIONS(387), 1, anon_sym_bit_DASHor, - ACTIONS(389), 1, anon_sym_and, - ACTIONS(391), 1, anon_sym_xor, - ACTIONS(393), 1, anon_sym_or, - STATE(2128), 1, + [100315] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2346), 1, sym_comment, - STATE(2188), 1, - sym_path, - STATE(2570), 1, - sym_cell_path, - ACTIONS(325), 2, - anon_sym_SEMI, + ACTIONS(907), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(909), 30, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(327), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(367), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(377), 2, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(379), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(381), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(369), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(373), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(365), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [92291] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [100361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_QMARK2, - STATE(2129), 1, - sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, + ACTIONS(924), 1, anon_sym_LF, - ACTIONS(836), 33, + STATE(2347), 1, + sym_comment, + ACTIONS(922), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -212954,41 +228121,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [92340] = 7, + [100407] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(739), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2088), 1, - sym_cell_path, - STATE(2114), 1, - sym_path, - STATE(2130), 1, + STATE(2348), 1, sym_comment, - ACTIONS(737), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3730), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3734), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(3728), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1002), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -213000,24 +228167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92393] = 5, + sym_short_flag, + [100463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_QMARK2, - STATE(2131), 1, + STATE(2349), 1, sym_comment, - ACTIONS(838), 2, + ACTIONS(932), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 33, + ACTIONS(930), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -213043,25 +228207,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [92442] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [100509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(725), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2114), 1, - sym_path, - STATE(2132), 1, + STATE(2350), 1, sym_comment, - STATE(2401), 1, - sym_cell_path, - ACTIONS(723), 32, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -213090,33 +228251,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92495] = 4, - ACTIONS(147), 1, + sym_short_flag, + [100555] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + ACTIONS(944), 1, + anon_sym_LF, + STATE(2351), 1, sym_comment, - ACTIONS(842), 8, + ACTIONS(942), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(844), 28, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -213130,36 +228293,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [92542] = 4, - ACTIONS(147), 1, + [100601] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2134), 1, + ACTIONS(1004), 1, + anon_sym_LF, + STATE(2352), 1, sym_comment, - ACTIONS(846), 8, - anon_sym_GT, + ACTIONS(3730), 2, anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(848), 28, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1002), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -213173,30 +228338,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [92589] = 7, + [100653] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, + ACTIONS(371), 1, anon_sym_DOT, - ACTIONS(755), 1, - anon_sym_LF, - STATE(2114), 1, + STATE(2312), 1, sym_path, - STATE(2135), 1, - sym_comment, - STATE(2403), 1, + STATE(2349), 1, sym_cell_path, - ACTIONS(753), 32, + STATE(2353), 1, + sym_comment, + ACTIONS(732), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(730), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -213222,14 +228384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92642] = 3, - ACTIONS(147), 1, + [100705] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2354), 1, sym_comment, - ACTIONS(3931), 36, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(3257), 1, + sym_flat_type, + ACTIONS(3566), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -213264,82 +228426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [92687] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(3935), 1, - anon_sym_LF, - ACTIONS(3951), 1, - anon_sym_bit_DASHand, - ACTIONS(3953), 1, - anon_sym_bit_DASHxor, - ACTIONS(3955), 1, - anon_sym_bit_DASHor, - ACTIONS(3957), 1, - anon_sym_and, - ACTIONS(3959), 1, - anon_sym_xor, - ACTIONS(3961), 1, - anon_sym_or, - STATE(2114), 1, - sym_path, - STATE(2137), 1, - sym_comment, - STATE(2439), 1, - sym_cell_path, - ACTIONS(3939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3945), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3947), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3949), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3941), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3943), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3937), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [92766] = 6, + [100751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(759), 1, + ACTIONS(1012), 1, anon_sym_LF, - ACTIONS(3963), 1, - anon_sym_DOT, - STATE(2390), 1, - sym_path, - STATE(2138), 2, + STATE(2355), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 32, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -213368,67 +228467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92817] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(916), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(914), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - [92864] = 7, + [100797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(735), 1, + ACTIONS(928), 1, anon_sym_LF, - STATE(2114), 1, - sym_path, - STATE(2140), 1, + STATE(2356), 1, sym_comment, - STATE(2413), 1, - sym_cell_path, - ACTIONS(733), 32, + ACTIONS(926), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -213457,228 +228509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92917] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2141), 1, - sym_comment, - ACTIONS(3966), 36, - anon_sym_COMMA, - 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, - [92962] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_LF, - STATE(2142), 1, - sym_comment, - ACTIONS(1018), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [93009] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2143), 1, - sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(908), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [93056] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1569), 1, - anon_sym_LF, - STATE(2144), 1, - sym_comment, - ACTIONS(1567), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [93103] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2145), 1, - sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(901), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - [93150] = 5, - ACTIONS(147), 1, + [100843] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3829), 1, - anon_sym_QMARK2, - STATE(2146), 1, + STATE(2357), 1, sym_comment, - ACTIONS(836), 8, + ACTIONS(903), 8, anon_sym_GT, anon_sym_DASH, anon_sym_DOT, @@ -213687,7 +228524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(838), 27, + ACTIONS(905), 27, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -213715,25 +228552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [93199] = 4, + [100889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(1024), 1, anon_sym_LF, - STATE(2147), 1, + STATE(2358), 1, sym_comment, - ACTIONS(842), 35, + ACTIONS(1022), 34, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -213758,21 +228593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93246] = 4, + sym_short_flag, + [100935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, + ACTIONS(1000), 1, anon_sym_LF, - ACTIONS(908), 34, + STATE(2359), 1, + sym_comment, + ACTIONS(998), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -213798,114 +228635,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [93293] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3968), 1, - aux_sym_long_flag_token1, - STATE(2149), 1, - sym_comment, - ACTIONS(1547), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1545), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - [93342] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2150), 1, - sym_comment, - ACTIONS(3970), 36, - anon_sym_COMMA, - 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, - [93387] = 4, + [100981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(848), 1, + ACTIONS(1016), 1, anon_sym_LF, - STATE(2151), 1, + STATE(2360), 1, sym_comment, - ACTIONS(846), 35, + ACTIONS(1014), 34, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -213930,39 +228677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93434] = 7, - ACTIONS(3), 1, + sym_short_flag, + [101027] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_DOT, - ACTIONS(743), 1, - anon_sym_LF, - STATE(2114), 1, - sym_path, - STATE(2152), 1, + STATE(2361), 1, sym_comment, - STATE(2412), 1, - sym_cell_path, - ACTIONS(741), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(907), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(909), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -213976,37 +228717,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93487] = 5, - ACTIONS(147), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [101073] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_QMARK2, - STATE(2153), 1, + ACTIONS(1004), 1, + anon_sym_LF, + STATE(2362), 1, sym_comment, - ACTIONS(836), 11, - sym_identifier, - anon_sym_GT, + ACTIONS(3730), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3738), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3732), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(3728), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + 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, - ACTIONS(838), 24, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + sym_short_flag, + [101131] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(371), 1, anon_sym_DOT, + STATE(2312), 1, + sym_path, + STATE(2363), 1, + sym_comment, + STATE(2730), 1, + sym_cell_path, + ACTIONS(762), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(760), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214017,40 +228810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93536] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_QMARK2, - STATE(2154), 1, - sym_comment, - ACTIONS(836), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(838), 24, - anon_sym_COMMA, + [101183] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2364), 1, + sym_comment, + ACTIONS(1010), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214061,67 +228851,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93585] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [101229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(946), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2155), 1, + STATE(2365), 1, sym_comment, - ACTIONS(944), 35, + ACTIONS(3736), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3734), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 28, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, sym_short_flag, - [93632] = 4, - ACTIONS(3), 1, + [101279] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2366), 1, sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, + STATE(3256), 1, + sym_flat_type, + ACTIONS(3566), 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, + [101325] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - ACTIONS(901), 34, + STATE(2367), 1, + sym_comment, + ACTIONS(1010), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214147,29 +228982,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [93679] = 7, - ACTIONS(3), 1, + sym_short_flag, + [101371] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2157), 1, + STATE(2368), 1, sym_comment, - STATE(2159), 1, - sym_cell_path, - STATE(2188), 1, - sym_path, - ACTIONS(739), 2, - ts_builtin_sym_end, + ACTIONS(4035), 35, + 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, + [101415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(936), 1, anon_sym_LF, - ACTIONS(737), 30, + STATE(2369), 1, + sym_comment, + ACTIONS(934), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214195,69 +229065,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93731] = 11, + sym_short_flag, + [101461] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2158), 1, + ACTIONS(3742), 1, + anon_sym_bit_DASHand, + ACTIONS(3744), 1, + anon_sym_bit_DASHxor, + ACTIONS(3746), 1, + anon_sym_bit_DASHor, + ACTIONS(3748), 1, + anon_sym_and, + ACTIONS(3750), 1, + anon_sym_xor, + STATE(2370), 1, sym_comment, - ACTIONS(3766), 2, + ACTIONS(3730), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(3736), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(3738), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(3740), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3768), 4, + ACTIONS(3732), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(3734), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(3728), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 12, + ACTIONS(1002), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, anon_sym_or, sym_short_flag, - [93791] = 4, + [101531] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2159), 1, - sym_comment, - ACTIONS(1008), 2, - ts_builtin_sym_end, + ACTIONS(1012), 1, anon_sym_LF, - ACTIONS(1006), 33, + STATE(2371), 1, + sym_comment, + ACTIONS(1010), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214283,67 +229161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [93837] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2160), 1, - sym_comment, - ACTIONS(946), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(944), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - [93883] = 4, + [101577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_LF, - STATE(2161), 1, + ACTIONS(4004), 1, + anon_sym_QMARK2, + STATE(2372), 1, sym_comment, - ACTIONS(952), 34, + ACTIONS(772), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214369,35 +229205,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [93929] = 4, - ACTIONS(3), 1, + [101625] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(922), 1, - anon_sym_LF, - STATE(2162), 1, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + STATE(2373), 1, sym_comment, - ACTIONS(920), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1002), 2, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_LT2, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(1004), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214411,19 +229251,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [93975] = 4, - ACTIONS(147), 1, + [101680] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2374), 1, + sym_comment, + ACTIONS(934), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(936), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101725] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2375), 1, sym_comment, - ACTIONS(901), 5, + ACTIONS(1029), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(903), 30, + ACTIONS(1031), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -214432,7 +229312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -214454,76 +229333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [94021] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2164), 1, - sym_comment, - ACTIONS(1573), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1571), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [94067] = 4, - ACTIONS(3), 1, + [101770] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_LF, - STATE(2165), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(2376), 1, sym_comment, - ACTIONS(1025), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(2385), 1, + aux_sym_cell_path_repeat1, + ACTIONS(752), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(754), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214538,34 +229377,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94113] = 4, - ACTIONS(3), 1, + [101821] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(942), 1, - anon_sym_LF, - STATE(2166), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(2376), 1, + aux_sym_cell_path_repeat1, + STATE(2377), 1, sym_comment, - ACTIONS(940), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(756), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(758), 25, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214580,22 +229421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94159] = 4, + [101872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - STATE(2167), 1, + STATE(2378), 1, sym_comment, - ACTIONS(1010), 34, + ACTIONS(1016), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1014), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214622,27 +229462,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94205] = 4, - ACTIONS(147), 1, + [101917] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2168), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2379), 1, sym_comment, - ACTIONS(908), 5, + STATE(2508), 1, + sym_cell_path, + ACTIONS(730), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(910), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(732), 25, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -214664,22 +229505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [94251] = 4, + sym_short_flag, + [101968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_LF, - STATE(2169), 1, + STATE(2380), 1, sym_comment, - ACTIONS(988), 34, + ACTIONS(1031), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1029), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -214706,114 +229547,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94297] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2170), 1, - sym_comment, - ACTIONS(1561), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1559), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [94343] = 7, - ACTIONS(3), 1, + [102013] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2171), 1, + STATE(2381), 1, sym_comment, - STATE(2188), 1, - sym_path, - STATE(2604), 1, - sym_cell_path, - ACTIONS(725), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(723), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1022), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [94395] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2172), 1, - sym_comment, - ACTIONS(908), 8, - anon_sym_GT, + ACTIONS(1024), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(910), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -214829,18 +229585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [94441] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [102058] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2382), 1, sym_comment, - ACTIONS(908), 11, + ACTIONS(1014), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -214852,11 +229605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(910), 24, + ACTIONS(1016), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -214877,34 +229629,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94487] = 4, - ACTIONS(3), 1, + [102103] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_LF, - STATE(2174), 1, + STATE(2383), 1, sym_comment, - ACTIONS(980), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1029), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1031), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -214915,28 +229667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [94533] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [102148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2175), 1, + STATE(2384), 1, sym_comment, - STATE(2188), 1, - sym_path, - STATE(2572), 1, - sym_cell_path, - ACTIONS(731), 2, + ACTIONS(982), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(729), 30, + ACTIONS(980), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -214964,34 +229710,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [94585] = 4, - ACTIONS(3), 1, + sym_short_flag, + [102193] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LF, - STATE(2176), 1, + ACTIONS(4049), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(2385), 2, sym_comment, - ACTIONS(992), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(723), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(725), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -215006,22 +229754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94631] = 4, + [102242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, - anon_sym_LF, - STATE(2177), 1, + STATE(2386), 1, sym_comment, - ACTIONS(948), 34, + ACTIONS(996), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(994), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -215048,22 +229795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94677] = 5, + [102287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2387), 1, sym_comment, - ACTIONS(1012), 2, + ACTIONS(1008), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(395), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 30, + ACTIONS(1006), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -215091,12 +229835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [94725] = 4, - ACTIONS(147), 1, + sym_short_flag, + [102332] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2388), 1, sym_comment, - ACTIONS(901), 11, + ACTIONS(980), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -215108,11 +229853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(903), 24, + ACTIONS(982), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -215133,41 +229877,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94771] = 9, + [102377] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4054), 1, anon_sym_LF, - STATE(2180), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + STATE(1921), 1, + aux_sym_pipe_element_repeat1, + STATE(2389), 1, sym_comment, - ACTIONS(3766), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3770), 4, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4052), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 18, - anon_sym_SEMI, - anon_sym_RPAREN, + [102452] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2390), 1, + sym_comment, + ACTIONS(926), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(928), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -215179,228 +229974,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [94827] = 7, - ACTIONS(3), 1, + [102497] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - STATE(2181), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + STATE(1080), 1, + sym_block, + STATE(2391), 1, sym_comment, - ACTIONS(3766), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3876), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3770), 4, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [102580] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, anon_sym_bit_DASHand, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, + ACTIONS(4108), 1, anon_sym_bit_DASHor, + ACTIONS(4110), 1, anon_sym_and, + ACTIONS(4112), 1, anon_sym_xor, + ACTIONS(4114), 1, anon_sym_or, + ACTIONS(4116), 1, sym_short_flag, - [94879] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - STATE(2182), 1, + STATE(1079), 1, + sym_block, + STATE(2392), 1, sym_comment, - ACTIONS(3766), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3878), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3768), 4, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + [102663] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, anon_sym_bit_DASHand, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, + ACTIONS(4108), 1, anon_sym_bit_DASHor, + ACTIONS(4110), 1, anon_sym_and, + ACTIONS(4112), 1, anon_sym_xor, + ACTIONS(4114), 1, anon_sym_or, + ACTIONS(4116), 1, sym_short_flag, - [94937] = 20, - ACTIONS(3), 1, + STATE(1076), 1, + sym_block, + STATE(2393), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(3899), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [102746] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - ACTIONS(3988), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(3990), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(3992), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(3994), 1, + ACTIONS(4110), 1, anon_sym_and, - ACTIONS(3996), 1, + ACTIONS(4112), 1, anon_sym_xor, - ACTIONS(3998), 1, + ACTIONS(4114), 1, anon_sym_or, - STATE(2183), 1, + ACTIONS(4116), 1, + sym_short_flag, + STATE(1073), 1, + sym_block, + STATE(2394), 1, sym_comment, - STATE(2188), 1, - sym_path, - STATE(2613), 1, - sym_cell_path, - ACTIONS(3895), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3897), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3976), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3912), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3982), 2, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3984), 2, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3986), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3978), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3980), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3974), 6, - anon_sym_GT, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [95015] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2184), 1, - sym_comment, - STATE(3065), 1, - sym_flat_type, - ACTIONS(3560), 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, - [95061] = 4, - ACTIONS(3), 1, + [102829] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(109), 1, - anon_sym_LF, - STATE(2185), 1, + STATE(2395), 1, sym_comment, - ACTIONS(107), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(952), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(954), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -215414,37 +230255,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95107] = 6, - ACTIONS(3), 1, + [102874] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - STATE(2186), 1, + STATE(2396), 1, sym_comment, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3770), 4, + ACTIONS(994), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(996), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -215455,87 +230293,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [102919] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, anon_sym_and, + ACTIONS(4112), 1, anon_sym_xor, + ACTIONS(4114), 1, anon_sym_or, + ACTIONS(4116), 1, sym_short_flag, - [95157] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - STATE(2187), 1, + STATE(1054), 1, + sym_block, + STATE(2397), 1, sym_comment, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3310), 1, + sym_long_flag, + STATE(3875), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [95205] = 7, - ACTIONS(3), 1, + [103002] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_comment, - STATE(2220), 1, - aux_sym_cell_path_repeat1, - STATE(2404), 1, - sym_path, - ACTIONS(751), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(749), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4045), 1, + anon_sym_PLUS, + STATE(2398), 1, + sym_comment, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1004), 18, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -215547,38 +230404,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [95257] = 7, - ACTIONS(3), 1, + [103061] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_path, - STATE(2189), 1, + STATE(2399), 1, sym_comment, - STATE(2606), 1, - sym_cell_path, - ACTIONS(735), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(733), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -215592,38 +230445,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [95309] = 8, - ACTIONS(3), 1, + [103106] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - STATE(2190), 1, + STATE(2400), 1, sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3770), 4, + ACTIONS(1010), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 24, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -215637,40 +230486,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95363] = 4, - ACTIONS(3), 1, + [103151] = 12, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_LF, - STATE(2191), 1, - sym_comment, - ACTIONS(984), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(4045), 1, + anon_sym_PLUS, + STATE(2401), 1, + sym_comment, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1004), 14, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -215679,83 +230535,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95409] = 20, - ACTIONS(3), 1, + [103212] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - ACTIONS(4014), 1, - anon_sym_bit_DASHand, - ACTIONS(4016), 1, - anon_sym_bit_DASHxor, - ACTIONS(4018), 1, - anon_sym_bit_DASHor, - ACTIONS(4020), 1, + STATE(2402), 1, + sym_comment, + ACTIONS(1006), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(4022), 1, anon_sym_xor, - ACTIONS(4024), 1, anon_sym_or, - STATE(2188), 1, - sym_path, - STATE(2192), 1, - sym_comment, - STATE(2620), 1, - sym_cell_path, - ACTIONS(3933), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3935), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4002), 2, + ACTIONS(1008), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4008), 2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4010), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4012), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4004), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4006), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4000), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [95487] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103257] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2403), 1, sym_comment, - ACTIONS(901), 8, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(903), 27, - anon_sym_DASH_DASH, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -215777,26 +230617,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [95533] = 4, + [103302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LF, - STATE(2194), 1, + STATE(2404), 1, sym_comment, - ACTIONS(1014), 34, + ACTIONS(782), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(780), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -215821,178 +230658,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95579] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2195), 1, - sym_comment, - STATE(3062), 1, - sym_flat_type, - ACTIONS(3560), 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, - [95625] = 12, - ACTIONS(3), 1, + [103347] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - STATE(2196), 1, + STATE(2405), 1, sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [95687] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - STATE(2197), 1, - sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, + ACTIONS(1002), 3, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [95751] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(974), 1, - anon_sym_LF, - STATE(2198), 1, - sym_comment, - ACTIONS(972), 34, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1004), 25, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216006,77 +230702,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95797] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2199), 1, - sym_comment, - ACTIONS(1569), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1567), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [95843] = 4, - ACTIONS(3), 1, + [103398] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2406), 1, sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(908), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216090,39 +230743,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95889] = 7, - ACTIONS(3), 1, + [103443] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_path, - STATE(2201), 1, + STATE(2407), 1, sym_comment, - STATE(2619), 1, - sym_cell_path, - ACTIONS(766), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(764), 30, - anon_sym_SEMI, + ACTIONS(4041), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1004), 27, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216136,34 +230785,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [95941] = 4, - ACTIONS(3), 1, + [103490] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_LF, - STATE(2202), 1, + STATE(2408), 1, sym_comment, - ACTIONS(976), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216177,35 +230826,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95987] = 4, - ACTIONS(3), 1, + [103535] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_LF, - STATE(2203), 1, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + STATE(2409), 1, sym_comment, - ACTIONS(976), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1002), 2, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_LT2, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(1004), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216219,140 +230873,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96033] = 14, - ACTIONS(3), 1, + [103592] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - STATE(2204), 1, + STATE(2410), 1, sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, + ACTIONS(1022), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3772), 2, + anon_sym_LT2, + ACTIONS(1024), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - sym_short_flag, - [96099] = 15, - ACTIONS(3), 1, + [103637] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(3780), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(3784), 1, + ACTIONS(4110), 1, anon_sym_and, - STATE(2205), 1, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + STATE(1047), 1, + sym_block, + STATE(2411), 1, sym_comment, - ACTIONS(3766), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3896), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3768), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [96167] = 4, - ACTIONS(3), 1, + [103720] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(970), 1, - anon_sym_LF, - STATE(2206), 1, + STATE(2412), 1, sym_comment, - ACTIONS(968), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216366,65 +231015,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96213] = 4, - ACTIONS(3), 1, + [103765] = 13, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2207), 1, - sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(901), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_PLUS, + STATE(2413), 1, + sym_comment, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1004), 12, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96259] = 4, + [103828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(926), 1, - anon_sym_LF, - STATE(2208), 1, + STATE(2414), 1, sym_comment, - ACTIONS(924), 34, + ACTIONS(1020), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1018), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -216451,34 +231106,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96305] = 4, - ACTIONS(3), 1, + [103873] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_LF, - STATE(2209), 1, + ACTIONS(715), 1, + anon_sym_DOT_DOT, + STATE(2415), 1, sym_comment, - ACTIONS(964), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(713), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(926), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(928), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216493,22 +231149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96351] = 4, + [103922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(934), 1, - anon_sym_LF, - STATE(2210), 1, + STATE(2416), 1, sym_comment, - ACTIONS(932), 34, + ACTIONS(924), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(922), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -216535,76 +231190,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96397] = 4, - ACTIONS(3), 1, + [103967] = 14, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(105), 1, - anon_sym_LF, - STATE(2211), 1, - sym_comment, - ACTIONS(103), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, + anon_sym_bit_DASHand, + STATE(2417), 1, + sym_comment, + ACTIONS(4039), 2, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1004), 11, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [96443] = 4, - ACTIONS(3), 1, + [104032] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_LF, - STATE(2212), 1, + STATE(2418), 1, sym_comment, - ACTIONS(1029), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216618,23 +231282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96489] = 4, + [104077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - STATE(2213), 1, + STATE(2419), 1, sym_comment, - ACTIONS(936), 34, + ACTIONS(1000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(998), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -216661,143 +231323,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96535] = 16, - ACTIONS(3), 1, + [104122] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(3780), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(3782), 1, - anon_sym_bit_DASHor, - ACTIONS(3784), 1, - anon_sym_and, - ACTIONS(3786), 1, - anon_sym_xor, - STATE(2214), 1, + STATE(2420), 1, sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, + ACTIONS(4043), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3776), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3764), 6, - anon_sym_GT, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 7, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4124), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1004), 10, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_or, - sym_short_flag, - [96605] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(3778), 1, - anon_sym_bit_DASHand, - ACTIONS(3780), 1, - anon_sym_bit_DASHxor, - ACTIONS(3782), 1, + anon_sym_EQ_GT, anon_sym_bit_DASHor, - ACTIONS(3784), 1, anon_sym_and, - ACTIONS(3786), 1, anon_sym_xor, - ACTIONS(3788), 1, anon_sym_or, - STATE(2215), 1, + [104189] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2421), 1, sym_comment, - ACTIONS(3766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3774), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3776), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3768), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3770), 4, + ACTIONS(1010), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - ACTIONS(3764), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [96677] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(946), 1, - anon_sym_LF, - STATE(2216), 1, - sym_comment, - ACTIONS(944), 34, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1012), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -216811,25 +231416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96723] = 7, + [104234] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_path, - STATE(2217), 1, + STATE(2422), 1, sym_comment, - STATE(2548), 1, - sym_cell_path, - ACTIONS(755), 2, + ACTIONS(936), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(753), 30, + ACTIONS(934), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -216857,60 +231456,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [96775] = 4, - ACTIONS(147), 1, + sym_short_flag, + [104279] = 16, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2218), 1, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, + anon_sym_bit_DASHand, + ACTIONS(4130), 1, + anon_sym_bit_DASHxor, + ACTIONS(4132), 1, + anon_sym_bit_DASHor, + STATE(2423), 1, sym_comment, - ACTIONS(914), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(916), 24, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4043), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96821] = 4, - ACTIONS(147), 1, + ACTIONS(1004), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [104348] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2424), 1, sym_comment, - ACTIONS(914), 5, + ACTIONS(1010), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(916), 30, + ACTIONS(1012), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -216919,7 +231530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -216941,69 +231551,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [96867] = 7, - ACTIONS(3), 1, + [104393] = 17, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2220), 1, - sym_comment, - STATE(2228), 1, - aux_sym_cell_path_repeat1, - STATE(2404), 1, - sym_path, - ACTIONS(747), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(745), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, + anon_sym_bit_DASHand, + ACTIONS(4130), 1, + anon_sym_bit_DASHxor, + ACTIONS(4132), 1, + anon_sym_bit_DASHor, + ACTIONS(4134), 1, + anon_sym_and, + STATE(2425), 1, + sym_comment, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1004), 8, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_xor, anon_sym_or, - [96919] = 7, + [104464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_path, - STATE(2221), 1, + STATE(2426), 1, sym_comment, - STATE(2608), 1, - sym_cell_path, - ACTIONS(770), 2, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 30, + ACTIONS(938), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -217031,75 +231645,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [96971] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2222), 1, - sym_comment, - ACTIONS(4026), 35, - 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, - [97015] = 4, - ACTIONS(3), 1, + sym_short_flag, + [104509] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(958), 1, - anon_sym_LF, - STATE(2223), 1, + STATE(2427), 1, sym_comment, - ACTIONS(956), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217113,124 +231687,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [97061] = 4, - ACTIONS(3), 1, + [104554] = 18, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(962), 1, - anon_sym_LF, - STATE(2224), 1, - sym_comment, - ACTIONS(960), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4045), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(4128), 1, anon_sym_bit_DASHand, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, + ACTIONS(4132), 1, anon_sym_bit_DASHor, + ACTIONS(4134), 1, anon_sym_and, + ACTIONS(4136), 1, anon_sym_xor, - anon_sym_or, - sym_short_flag, - [97107] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(371), 1, - anon_sym_DOT, - STATE(2188), 1, - sym_path, - STATE(2225), 1, + STATE(2428), 1, sym_comment, - STATE(2648), 1, - sym_cell_path, - ACTIONS(743), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(741), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, + ACTIONS(1004), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_or, - [97159] = 5, - ACTIONS(3), 1, + [104627] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(4028), 1, - anon_sym_QMARK2, - STATE(2226), 1, + STATE(2429), 1, sym_comment, - ACTIONS(836), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217244,121 +231783,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97207] = 5, - ACTIONS(3), 1, + [104672] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(838), 1, - anon_sym_LF, - ACTIONS(4028), 1, - anon_sym_QMARK2, - STATE(2227), 1, - sym_comment, - ACTIONS(836), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4037), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4045), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(4128), 1, anon_sym_bit_DASHand, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, + ACTIONS(4132), 1, anon_sym_bit_DASHor, + ACTIONS(4134), 1, anon_sym_and, + ACTIONS(4136), 1, anon_sym_xor, + ACTIONS(4138), 1, anon_sym_or, - [97255] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4030), 1, - anon_sym_DOT, - STATE(2404), 1, - sym_path, - ACTIONS(759), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2228), 2, + STATE(2430), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [97305] = 4, - ACTIONS(3), 1, + ACTIONS(1004), 6, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [104747] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_LF, - STATE(2229), 1, + STATE(2431), 1, sym_comment, - ACTIONS(1018), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1010), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217372,20 +231880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [97351] = 4, + [104792] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, + ACTIONS(4140), 1, + anon_sym_QMARK2, + STATE(2432), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(774), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(914), 33, + ACTIONS(772), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_DOT, @@ -217414,23 +231922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [97397] = 4, + [104839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_LF, - STATE(2231), 1, + ACTIONS(4140), 1, + anon_sym_QMARK2, + STATE(2433), 1, sym_comment, - ACTIONS(1002), 34, + ACTIONS(774), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(772), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -217456,68 +231964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [97443] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2232), 1, - sym_comment, - ACTIONS(1020), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1018), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [97489] = 4, - ACTIONS(147), 1, + [104886] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2434), 1, sym_comment, - ACTIONS(914), 7, - anon_sym_EQ, + ACTIONS(1037), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(916), 27, - anon_sym_COLON, - anon_sym_DASH_DASH, + ACTIONS(1039), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -217539,57 +232005,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [97534] = 4, - ACTIONS(147), 1, + [104931] = 23, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2234), 1, - sym_comment, - ACTIONS(988), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, anon_sym_and, + ACTIONS(4112), 1, anon_sym_xor, + ACTIONS(4114), 1, anon_sym_or, - ACTIONS(990), 23, - anon_sym_COMMA, + ACTIONS(4116), 1, + sym_short_flag, + STATE(1043), 1, + sym_block, + STATE(2435), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(3906), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97579] = 4, + [105014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2235), 1, + STATE(2436), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(920), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(980), 32, + ACTIONS(918), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -217622,34 +232106,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97624] = 4, - ACTIONS(147), 1, + [105059] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2236), 1, + STATE(2437), 1, sym_comment, - ACTIONS(1014), 11, - sym_identifier, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(942), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1016), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217660,37 +232143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97669] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [105104] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2237), 1, + STATE(2438), 1, sym_comment, - ACTIONS(920), 11, - sym_identifier, + ACTIONS(948), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(946), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(922), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217701,32 +232184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97714] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [105149] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2238), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2439), 1, sym_comment, - ACTIONS(980), 11, - sym_identifier, + STATE(2864), 1, + sym_cell_path, + ACTIONS(768), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(982), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(770), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -217742,37 +232228,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97759] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [105200] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2440), 1, sym_comment, - ACTIONS(1025), 11, - sym_identifier, + ACTIONS(958), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(956), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1027), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217783,18 +232269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97804] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [105245] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2240), 1, + STATE(2441), 1, sym_comment, - ACTIONS(109), 2, + ACTIONS(962), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(107), 32, + ACTIONS(960), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -217827,15 +232314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97849] = 4, + [105290] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2241), 1, + STATE(2442), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(966), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(984), 32, + ACTIONS(964), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -217868,15 +232355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97894] = 4, + [105335] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2443), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(970), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 32, + ACTIONS(968), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -217909,15 +232396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97939] = 4, + [105380] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2444), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(974), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 32, + ACTIONS(972), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -217950,34 +232437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97984] = 4, - ACTIONS(3), 1, + [105425] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_LF, - STATE(2244), 1, + STATE(2445), 1, sym_comment, - ACTIONS(914), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(113), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(115), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -217988,31 +232475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [98029] = 7, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105470] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2245), 1, + STATE(2446), 1, sym_comment, - STATE(2324), 1, - sym_path, - STATE(2674), 1, - sym_cell_path, - ACTIONS(741), 6, + ACTIONS(103), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(743), 25, - anon_sym_DASH_DASH, + ACTIONS(105), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -218034,16 +232519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [98080] = 4, + [105515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2246), 1, + STATE(2447), 1, sym_comment, - ACTIONS(926), 2, + ACTIONS(978), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(924), 32, + ACTIONS(976), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -218076,29 +232560,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98125] = 4, - ACTIONS(147), 1, + [105560] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2247), 1, + STATE(2448), 1, sym_comment, - ACTIONS(1018), 11, - sym_identifier, + ACTIONS(988), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1020), 23, + ACTIONS(990), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -218114,36 +232598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98170] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105605] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2248), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2449), 1, sym_comment, - ACTIONS(934), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(932), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2913), 1, + sym_cell_path, + ACTIONS(760), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(762), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218158,21 +232645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98215] = 4, + [105656] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2249), 1, - sym_comment, - ACTIONS(938), 2, - ts_builtin_sym_end, + ACTIONS(901), 1, anon_sym_LF, - ACTIONS(936), 32, + STATE(2450), 1, + sym_comment, + ACTIONS(899), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -218198,16 +232686,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [98260] = 4, + [105701] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2451), 1, + sym_comment, + ACTIONS(1010), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [105746] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2250), 1, + STATE(2452), 1, sym_comment, - ACTIONS(942), 2, + ACTIONS(986), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(940), 32, + ACTIONS(984), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -218240,15 +232768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98305] = 4, + [105791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2453), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(986), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(952), 32, + ACTIONS(984), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -218281,18 +232809,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98350] = 4, - ACTIONS(147), 1, + [105836] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2252), 1, + STATE(2454), 1, sym_comment, - ACTIONS(1018), 5, + ACTIONS(984), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1020), 29, + ACTIONS(986), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [105881] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2455), 1, + sym_comment, + ACTIONS(984), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(986), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -218322,15 +232891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98395] = 4, + [105926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2456), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(990), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(956), 32, + ACTIONS(988), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -218363,36 +232932,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98440] = 7, - ACTIONS(147), 1, + [105971] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2254), 1, + STATE(2457), 1, sym_comment, - STATE(2324), 1, - sym_path, - STATE(2690), 1, - sym_cell_path, - ACTIONS(723), 6, + ACTIONS(105), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(103), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(725), 25, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218407,12 +232973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98491] = 4, - ACTIONS(147), 1, + [106016] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2458), 1, sym_comment, - ACTIONS(972), 11, + ACTIONS(1018), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -218424,7 +232990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(974), 23, + ACTIONS(1020), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -218448,12 +233014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98536] = 4, - ACTIONS(147), 1, + [106061] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2459), 1, sym_comment, - ACTIONS(968), 11, + ACTIONS(922), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -218465,7 +233031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(970), 23, + ACTIONS(924), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -218489,33 +233055,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98581] = 4, - ACTIONS(3), 1, + [106106] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2257), 1, + STATE(2460), 1, sym_comment, - ACTIONS(966), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(964), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(998), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1000), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218526,33 +233093,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [98626] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106151] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2461), 1, sym_comment, - ACTIONS(964), 11, - sym_identifier, + ACTIONS(976), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(966), 23, + ACTIONS(978), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -218568,96 +233134,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98671] = 23, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, anon_sym_and, - ACTIONS(4065), 1, anon_sym_xor, - ACTIONS(4067), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(991), 1, - sym_block, - STATE(2259), 1, + [106196] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2462), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3671), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(972), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(974), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [98754] = 4, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [106241] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2463), 1, sym_comment, - ACTIONS(970), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(968), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(968), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(970), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218671,34 +233219,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [98799] = 4, - ACTIONS(3), 1, + [106286] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2464), 1, sym_comment, - ACTIONS(974), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(972), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(964), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(966), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218712,19 +233260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [98844] = 4, - ACTIONS(147), 1, + [106331] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2465), 1, sym_comment, - ACTIONS(948), 5, + ACTIONS(960), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(950), 29, + ACTIONS(962), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -218754,34 +233301,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98889] = 4, - ACTIONS(3), 1, + [106376] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2263), 1, + STATE(2466), 1, sym_comment, - ACTIONS(844), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(842), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(956), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(958), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218795,29 +233342,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98934] = 4, - ACTIONS(147), 1, + [106421] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2264), 1, + STATE(2467), 1, sym_comment, - ACTIONS(956), 11, - sym_identifier, + ACTIONS(994), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(958), 23, + ACTIONS(996), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -218833,21 +233380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98979] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106466] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2265), 1, + STATE(2468), 1, sym_comment, - ACTIONS(960), 5, + ACTIONS(946), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(962), 29, + ACTIONS(948), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -218877,12 +233424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99024] = 4, - ACTIONS(147), 1, + [106511] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2266), 1, + STATE(2469), 1, sym_comment, - ACTIONS(952), 11, + ACTIONS(938), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -218894,7 +233441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(954), 23, + ACTIONS(940), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -218918,29 +233465,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99069] = 4, - ACTIONS(147), 1, + [106556] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2267), 1, + STATE(2470), 1, sym_comment, - ACTIONS(940), 11, - sym_identifier, + ACTIONS(942), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(944), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - ACTIONS(942), 23, + [106601] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2471), 1, + sym_comment, + ACTIONS(918), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(920), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -218956,36 +233544,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [99114] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106646] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2268), 1, + STATE(2472), 1, sym_comment, - ACTIONS(990), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(988), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -218999,34 +233588,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99159] = 4, - ACTIONS(3), 1, + [106691] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2269), 1, + STATE(2473), 1, sym_comment, - ACTIONS(1016), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1014), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(934), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(936), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -219040,34 +233629,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99204] = 4, - ACTIONS(3), 1, + [106736] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2270), 1, + STATE(2474), 1, sym_comment, - ACTIONS(922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(920), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1014), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1016), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -219081,34 +233670,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99249] = 4, - ACTIONS(3), 1, + [106781] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2271), 1, + STATE(2475), 1, sym_comment, - ACTIONS(1027), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1025), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(980), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(982), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -219122,19 +233711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99294] = 4, - ACTIONS(147), 1, + [106826] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2272), 1, + STATE(2476), 1, sym_comment, - ACTIONS(1029), 5, + ACTIONS(998), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1031), 29, + ACTIONS(1000), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -219164,43 +233752,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99339] = 11, - ACTIONS(147), 1, + [106871] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(2273), 1, + STATE(2477), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(922), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(924), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 18, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [106916] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2478), 1, + sym_comment, + ACTIONS(1018), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1020), 29, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -219212,35 +233834,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99398] = 9, - ACTIONS(147), 1, + [106961] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(2274), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2479), 1, sym_comment, - ACTIONS(928), 2, + STATE(2881), 1, + sym_cell_path, + ACTIONS(764), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(766), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(930), 24, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [107012] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2480), 1, + sym_comment, + ACTIONS(1006), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1008), 29, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -219258,12 +233919,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99453] = 4, - ACTIONS(147), 1, + [107057] = 23, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2275), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_block, + STATE(2481), 1, sym_comment, - ACTIONS(103), 11, + STATE(3310), 1, + sym_long_flag, + STATE(3863), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [107140] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2482), 1, + sym_comment, + ACTIONS(918), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -219275,7 +233996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(105), 23, + ACTIONS(920), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -219299,28 +234020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99498] = 7, - ACTIONS(147), 1, + [107185] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2276), 1, + STATE(2483), 1, sym_comment, - STATE(2324), 1, - sym_path, - STATE(2683), 1, - sym_cell_path, - ACTIONS(729), 6, + ACTIONS(899), 7, + anon_sym_EQ, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(731), 25, + ACTIONS(901), 27, + anon_sym_COLON, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -219343,84 +234061,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [99549] = 12, - ACTIONS(147), 1, + [107230] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(2277), 1, + STATE(2484), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(942), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(944), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 14, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, 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, - [99610] = 6, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107275] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(715), 1, - anon_sym_DOT_DOT, - STATE(2278), 1, + STATE(2485), 1, sym_comment, - ACTIONS(713), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1010), 6, + ACTIONS(946), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1012), 25, - anon_sym_DASH_DASH, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(948), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107320] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1024), 1, + anon_sym_LF, + STATE(2486), 1, + sym_comment, + ACTIONS(1022), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -219434,34 +234184,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99659] = 7, - ACTIONS(147), 1, + [107365] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2279), 1, + STATE(2487), 1, sym_comment, - ACTIONS(4075), 2, + ACTIONS(956), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 3, - anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(930), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(958), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -219476,33 +234222,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107410] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2488), 1, + sym_comment, + ACTIONS(960), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [99710] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2280), 1, - sym_comment, - ACTIONS(4077), 2, + ACTIONS(962), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(928), 5, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107455] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2489), 1, + sym_comment, + ACTIONS(964), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(930), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(966), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_mod, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -219518,84 +234304,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107500] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, anon_sym_and, + ACTIONS(4112), 1, anon_sym_xor, + ACTIONS(4114), 1, anon_sym_or, - [99757] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(2281), 1, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_block, + STATE(2490), 1, sym_comment, - ACTIONS(928), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3903), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(930), 22, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [99814] = 4, - ACTIONS(3), 1, + [107583] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2282), 1, + STATE(2491), 1, sym_comment, - ACTIONS(848), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(846), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(968), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(970), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -219606,32 +234405,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [99859] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107628] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2283), 1, + STATE(2492), 1, sym_comment, - ACTIONS(1010), 5, + ACTIONS(972), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1012), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(974), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -219647,280 +234446,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [99904] = 14, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107673] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_bit_DASHand, - STATE(2284), 1, + STATE(2493), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(976), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(978), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 11, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [99969] = 15, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107718] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_bit_DASHand, - ACTIONS(4093), 1, - anon_sym_bit_DASHxor, - STATE(2285), 1, + STATE(2494), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(926), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(928), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [100036] = 16, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107763] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - STATE(2286), 1, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(966), 1, + sym_block, + STATE(2495), 1, sym_comment, - ACTIONS(4071), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3902), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [100105] = 17, - ACTIONS(147), 1, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [107846] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4110), 1, anon_sym_and, - STATE(2287), 1, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_block, + STATE(2496), 1, sym_comment, - ACTIONS(4071), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3893), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 8, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_xor, - anon_sym_or, - [100176] = 18, - ACTIONS(147), 1, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [107929] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_bit_DASHand, - ACTIONS(4093), 1, - anon_sym_bit_DASHxor, - ACTIONS(4095), 1, - anon_sym_bit_DASHor, - ACTIONS(4097), 1, - anon_sym_and, - ACTIONS(4099), 1, - anon_sym_xor, - STATE(2288), 1, + STATE(2497), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(984), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(986), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_or, - [100249] = 4, - ACTIONS(147), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107974] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2289), 1, + STATE(2498), 1, sym_comment, - ACTIONS(936), 11, + ACTIONS(984), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -219932,7 +234709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 23, + ACTIONS(986), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -219956,79 +234733,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100294] = 19, - ACTIONS(147), 1, + [108019] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4110), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4112), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4114), 1, anon_sym_or, - STATE(2290), 1, + ACTIONS(4116), 1, + sym_short_flag, + STATE(1034), 1, + sym_block, + STATE(2499), 1, sym_comment, - ACTIONS(4071), 2, + STATE(3310), 1, + sym_long_flag, + STATE(3907), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + [108102] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_block, + STATE(2500), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(3890), 1, + sym__flag, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [100369] = 5, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4103), 1, - anon_sym_QMARK2, - STATE(2291), 1, + STATE(2501), 1, sym_comment, - ACTIONS(838), 2, + ACTIONS(1024), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 31, + ACTIONS(1022), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -220054,35 +234893,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100416] = 5, - ACTIONS(3), 1, + sym_short_flag, + [108230] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4103), 1, - anon_sym_QMARK2, - STATE(2292), 1, + STATE(2502), 1, sym_comment, - ACTIONS(838), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(836), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(988), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(990), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220093,212 +234932,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [100463] = 23, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108275] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(941), 1, - sym_block, - STATE(2293), 1, + STATE(2503), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3681), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(103), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(105), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [100546] = 23, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4059), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(996), 1, - sym_block, - STATE(2294), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108320] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2504), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3674), 1, - sym__flag, - ACTIONS(4035), 2, + STATE(2916), 1, + sym_cell_path, + ACTIONS(748), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(750), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [100629] = 23, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [108371] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4110), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4112), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4114), 1, anon_sym_or, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - STATE(939), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(1015), 1, sym_block, - STATE(2295), 1, + STATE(2505), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(3670), 1, + STATE(3873), 1, sym__flag, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [100712] = 4, - ACTIONS(147), 1, + [108454] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2296), 1, + STATE(2506), 1, sym_comment, - ACTIONS(1025), 5, + ACTIONS(952), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1027), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(954), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -220314,18 +235118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [100757] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108499] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2297), 1, + STATE(2507), 1, sym_comment, - ACTIONS(946), 2, + ACTIONS(1039), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(944), 32, + ACTIONS(1037), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -220358,81 +235162,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [100802] = 19, - ACTIONS(3), 1, + [108544] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4107), 1, - anon_sym_LF, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - STATE(1816), 1, - aux_sym_pipe_element_repeat1, - STATE(2298), 1, + STATE(2508), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(930), 7, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(932), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4105), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [100877] = 7, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [108589] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, + ACTIONS(4047), 1, anon_sym_DOT, - STATE(2299), 1, - sym_comment, - STATE(2324), 1, + STATE(2377), 1, sym_path, - STATE(2326), 1, + STATE(2509), 1, + sym_comment, + STATE(2886), 1, sym_cell_path, - ACTIONS(737), 6, + ACTIONS(744), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(739), 25, + ACTIONS(746), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -220458,34 +235247,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [100928] = 4, - ACTIONS(147), 1, + [108640] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2300), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1002), 11, - sym_identifier, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1004), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220496,146 +235284,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [100973] = 13, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [108685] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(2301), 1, + STATE(2511), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(115), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(113), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4077), 2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(930), 12, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [101036] = 22, - ACTIONS(147), 1, + [108730] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4135), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_COMMA, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(3923), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(3925), 1, anon_sym_bit_DASHxor, - ACTIONS(4167), 1, + ACTIONS(3927), 1, anon_sym_bit_DASHor, - ACTIONS(4169), 1, + ACTIONS(3929), 1, anon_sym_and, - ACTIONS(4171), 1, + ACTIONS(3931), 1, anon_sym_xor, - ACTIONS(4173), 1, + ACTIONS(3933), 1, anon_sym_or, - STATE(2302), 1, + STATE(2512), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(3921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(1002), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + ACTIONS(3913), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4145), 4, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4157), 4, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [101117] = 4, - ACTIONS(147), 1, + [108801] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2303), 1, + STATE(2513), 1, sym_comment, - ACTIONS(107), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(109), 29, - anon_sym_COMMA, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220649,34 +235423,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101162] = 4, - ACTIONS(147), 1, + sym_short_flag, + [108846] = 16, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2304), 1, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + ACTIONS(3931), 1, + anon_sym_xor, + STATE(2514), 1, sym_comment, - ACTIONS(984), 5, - anon_sym_GT, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_or, + sym_short_flag, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(986), 29, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108915] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2515), 1, + sym_comment, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220690,22 +235517,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101207] = 4, + sym_short_flag, + [108960] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1031), 1, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + ACTIONS(3929), 1, + anon_sym_and, + STATE(2516), 1, + sym_comment, + ACTIONS(1004), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2305), 1, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [109027] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2517), 1, sym_comment, - ACTIONS(1029), 33, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -220731,34 +235610,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101252] = 4, - ACTIONS(147), 1, + sym_short_flag, + [109072] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2306), 1, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + ACTIONS(3927), 1, + anon_sym_bit_DASHor, + STATE(2518), 1, sym_comment, - ACTIONS(976), 5, - anon_sym_GT, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(978), 29, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [109137] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2519), 1, + sym_comment, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220772,34 +235702,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101297] = 4, - ACTIONS(147), 1, + sym_short_flag, + [109182] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2307), 1, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + ACTIONS(3925), 1, + anon_sym_bit_DASHxor, + STATE(2520), 1, sym_comment, - ACTIONS(932), 11, - sym_identifier, - anon_sym_GT, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(934), 23, - anon_sym_COMMA, + sym_short_flag, + [109245] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2521), 1, + sym_comment, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220810,78 +235790,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101342] = 4, - ACTIONS(147), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [109290] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2308), 1, + ACTIONS(3923), 1, + anon_sym_bit_DASHand, + STATE(2522), 1, sym_comment, - ACTIONS(924), 11, - sym_identifier, - anon_sym_GT, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(926), 23, + sym_short_flag, + [109351] = 22, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4146), 1, anon_sym_COMMA, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(4152), 1, + anon_sym_in, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, + anon_sym_bit_DASHand, + ACTIONS(4174), 1, + anon_sym_bit_DASHxor, + ACTIONS(4176), 1, + anon_sym_bit_DASHor, + ACTIONS(4178), 1, + anon_sym_and, + ACTIONS(4180), 1, + anon_sym_xor, + ACTIONS(4182), 1, + anon_sym_or, + STATE(2523), 1, + sym_comment, + ACTIONS(4148), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(4154), 4, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101387] = 4, - ACTIONS(147), 1, + ACTIONS(4166), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [109432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2309), 1, + STATE(2524), 1, sym_comment, - ACTIONS(976), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(978), 29, - anon_sym_COMMA, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -220895,77 +235942,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101432] = 4, - ACTIONS(147), 1, + sym_short_flag, + [109477] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2310), 1, + STATE(2525), 1, sym_comment, - ACTIONS(924), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(926), 29, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3913), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1002), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [101477] = 4, - ACTIONS(147), 1, + sym_short_flag, + [109536] = 12, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2311), 1, + ACTIONS(4150), 1, + anon_sym_DASH, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, + anon_sym_PLUS, + STATE(2526), 1, sym_comment, - ACTIONS(976), 11, - sym_identifier, + ACTIONS(4148), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(978), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1002), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 13, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -220977,12 +236040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101522] = 4, - ACTIONS(147), 1, + [109597] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2312), 1, + STATE(2527), 1, sym_comment, - ACTIONS(976), 11, + ACTIONS(1010), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -220994,7 +236057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(978), 23, + ACTIONS(1012), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -221018,30 +236081,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101567] = 4, - ACTIONS(147), 1, + [109642] = 9, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2313), 1, + ACTIONS(4150), 1, + anon_sym_DASH, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, + anon_sym_PLUS, + STATE(2528), 1, sym_comment, - ACTIONS(932), 5, - anon_sym_GT, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + ACTIONS(1002), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_LT2, - ACTIONS(934), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 19, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -221056,32 +236124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [101612] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [109697] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2314), 1, + STATE(2529), 1, sym_comment, - ACTIONS(936), 5, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221097,56 +236165,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [101657] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [109742] = 14, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2315), 1, - sym_comment, - ACTIONS(1031), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(4150), 1, anon_sym_DASH, + ACTIONS(4152), 1, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(4160), 1, anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, anon_sym_PLUS, + STATE(2530), 1, + sym_comment, + ACTIONS(4148), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1004), 10, + anon_sym_COMMA, + anon_sym_RBRACE, 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, - sym_short_flag, - [101702] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [109807] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2316), 1, + STATE(2531), 1, sym_comment, - ACTIONS(984), 11, + ACTIONS(1010), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -221158,7 +236236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(986), 23, + ACTIONS(1012), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -221182,30 +236260,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101747] = 4, - ACTIONS(147), 1, + [109852] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2317), 1, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + STATE(2532), 1, sym_comment, - ACTIONS(107), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(1002), 8, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(109), 23, + ACTIONS(1004), 20, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -221223,31 +236304,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101792] = 7, - ACTIONS(147), 1, + [109903] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2318), 1, + STATE(2533), 1, sym_comment, - STATE(2324), 1, - sym_path, - STATE(2686), 1, - sym_cell_path, - ACTIONS(768), 6, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(770), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221263,16 +236342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [101843] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [109948] = 5, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2319), 1, + STATE(2534), 1, sym_comment, - ACTIONS(1029), 11, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -221284,12 +236365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1031), 23, + ACTIONS(1004), 21, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221308,12 +236387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101888] = 4, - ACTIONS(147), 1, + [109995] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2320), 1, + STATE(2535), 1, sym_comment, - ACTIONS(992), 11, + ACTIONS(1010), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -221325,7 +236404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(994), 23, + ACTIONS(1012), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -221349,73 +236428,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101933] = 4, - ACTIONS(3), 1, + [110040] = 10, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2321), 1, - sym_comment, - ACTIONS(962), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(960), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(4160), 1, anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, anon_sym_PLUS, + STATE(2536), 1, + sym_comment, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1002), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [101978] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2322), 1, - sym_comment, - ACTIONS(940), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(942), 29, + ACTIONS(1004), 17, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -221428,32 +236472,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102023] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110097] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2323), 1, + STATE(2537), 1, sym_comment, - ACTIONS(952), 5, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(954), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221469,76 +236513,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102068] = 7, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110142] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(2324), 1, - sym_comment, - STATE(2344), 1, - aux_sym_cell_path_repeat1, - ACTIONS(749), 6, - anon_sym_GT, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4152), 1, + anon_sym_in, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, anon_sym_PLUS, + STATE(2538), 1, + sym_comment, + ACTIONS(4148), 2, + anon_sym_GT, anon_sym_LT2, - ACTIONS(751), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1004), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102119] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110209] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2325), 1, + STATE(2539), 1, sym_comment, - ACTIONS(956), 5, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(958), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221554,117 +236606,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102164] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110254] = 16, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2326), 1, - sym_comment, - ACTIONS(1006), 7, - anon_sym_GT, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4152), 1, + anon_sym_in, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, anon_sym_PLUS, + ACTIONS(4172), 1, + anon_sym_bit_DASHand, + STATE(2540), 1, + sym_comment, + ACTIONS(4148), 2, + anon_sym_GT, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(1008), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1002), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [102209] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2324), 1, - sym_path, - STATE(2327), 1, - sym_comment, - STATE(2684), 1, - sym_cell_path, - ACTIONS(764), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(766), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1004), 7, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102260] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110323] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2328), 1, + STATE(2541), 1, sym_comment, - ACTIONS(1002), 5, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1004), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221680,73 +236700,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102305] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110368] = 17, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2329), 1, + ACTIONS(4150), 1, + anon_sym_DASH, + ACTIONS(4152), 1, + anon_sym_in, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, + anon_sym_bit_DASHand, + ACTIONS(4174), 1, + anon_sym_bit_DASHxor, + STATE(2542), 1, sym_comment, - ACTIONS(964), 5, + ACTIONS(4148), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(966), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1002), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [102350] = 4, - ACTIONS(147), 1, + ACTIONS(4166), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110439] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2330), 1, + STATE(2543), 1, sym_comment, - ACTIONS(968), 5, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(970), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -221762,215 +236795,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102395] = 17, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110484] = 18, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - ACTIONS(3855), 1, - anon_sym_or, - STATE(2331), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(928), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - sym_short_flag, - ACTIONS(3835), 4, + ACTIONS(4152), 1, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(4160), 1, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [102466] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3845), 1, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, anon_sym_bit_DASHand, - ACTIONS(3847), 1, + ACTIONS(4174), 1, anon_sym_bit_DASHxor, - ACTIONS(3849), 1, + ACTIONS(4176), 1, anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - ACTIONS(3853), 1, - anon_sym_xor, - STATE(2332), 1, + STATE(2544), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4148), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3843), 2, + ACTIONS(4170), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3835), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_or, - sym_short_flag, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [102535] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - ACTIONS(3851), 1, - anon_sym_and, - STATE(2333), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, - anon_sym_in, + ACTIONS(4168), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - ACTIONS(3831), 6, - anon_sym_GT, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [102602] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2334), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(974), 29, + ACTIONS(1004), 5, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [102647] = 4, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110557] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2335), 1, + STATE(2545), 1, sym_comment, - ACTIONS(944), 11, + ACTIONS(1010), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -221982,7 +236870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(946), 23, + ACTIONS(1012), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -222006,235 +236894,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102692] = 14, - ACTIONS(3), 1, + [110602] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - ACTIONS(3847), 1, - anon_sym_bit_DASHxor, - ACTIONS(3849), 1, - anon_sym_bit_DASHor, - STATE(2336), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, + ACTIONS(4152), 1, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(4160), 1, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102757] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3845), 1, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, anon_sym_bit_DASHand, - ACTIONS(3847), 1, + ACTIONS(4174), 1, anon_sym_bit_DASHxor, - STATE(2337), 1, + ACTIONS(4176), 1, + anon_sym_bit_DASHor, + ACTIONS(4178), 1, + anon_sym_and, + STATE(2546), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4148), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3843), 2, + ACTIONS(4170), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3835), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + ACTIONS(1002), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102820] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3845), 1, - anon_sym_bit_DASHand, - STATE(2338), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, - anon_sym_in, + ACTIONS(4168), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102881] = 11, - ACTIONS(3), 1, + ACTIONS(1004), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110677] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2339), 1, + STATE(2547), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3843), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3835), 4, + ACTIONS(1010), 11, + sym_identifier, + anon_sym_GT, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3837), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(928), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [102940] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2340), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(1012), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -222245,99 +236988,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [102993] = 7, - ACTIONS(147), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110722] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2324), 1, - sym_path, - STATE(2341), 1, - sym_comment, - STATE(2664), 1, - sym_cell_path, - ACTIONS(753), 6, - anon_sym_GT, + ACTIONS(4150), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(755), 25, - anon_sym_DASH_DASH, + ACTIONS(4152), 1, anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, + ACTIONS(4160), 1, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, anon_sym_bit_DASHand, + ACTIONS(4174), 1, anon_sym_bit_DASHxor, + ACTIONS(4176), 1, anon_sym_bit_DASHor, + ACTIONS(4178), 1, anon_sym_and, + ACTIONS(4180), 1, anon_sym_xor, - anon_sym_or, - sym_short_flag, - [103044] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2342), 1, + STATE(2548), 1, sym_comment, - ACTIONS(980), 5, + ACTIONS(1002), 2, + sym_identifier, + anon_sym_or, + ACTIONS(4148), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(982), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(4158), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4164), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4166), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [103089] = 4, - ACTIONS(147), 1, + ACTIONS(1004), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110799] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2343), 1, + STATE(2549), 1, sym_comment, ACTIONS(1010), 11, sym_identifier, @@ -222353,53 +237067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(1012), 23, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103134] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(2344), 1, - sym_comment, - STATE(2348), 1, - aux_sym_cell_path_repeat1, - ACTIONS(745), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(747), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -222415,16 +237086,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110844] = 21, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1002), 1, + sym_identifier, + ACTIONS(4150), 1, + anon_sym_DASH, + ACTIONS(4152), 1, + anon_sym_in, + ACTIONS(4160), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4162), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, + anon_sym_bit_DASHand, + ACTIONS(4174), 1, + anon_sym_bit_DASHxor, + ACTIONS(4176), 1, + anon_sym_bit_DASHor, + ACTIONS(4178), 1, anon_sym_and, + ACTIONS(4180), 1, anon_sym_xor, + ACTIONS(4182), 1, anon_sym_or, - sym_short_flag, - [103185] = 4, - ACTIONS(147), 1, + STATE(2550), 1, + sym_comment, + ACTIONS(4148), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4158), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4164), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4170), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(4168), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4166), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110923] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2345), 1, + STATE(2551), 1, sym_comment, - ACTIONS(960), 11, + ACTIONS(1010), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -222436,7 +237164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(962), 23, + ACTIONS(1012), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -222460,18 +237188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103230] = 5, + [110968] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2346), 1, + STATE(2552), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 30, + ACTIONS(1010), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -222479,6 +237204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -222502,40 +237229,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103277] = 9, + [111013] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2347), 1, + STATE(2553), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3837), 4, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, + ACTIONS(1002), 22, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -222548,35 +237274,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103332] = 6, - ACTIONS(147), 1, + [111066] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4175), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(2348), 2, + STATE(2554), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(757), 6, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(759), 25, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -222591,36 +237315,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103381] = 7, - ACTIONS(147), 1, + [111111] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOT, - STATE(2324), 1, - sym_path, - STATE(2349), 1, + ACTIONS(909), 1, + anon_sym_LF, + STATE(2555), 1, sym_comment, - STATE(2658), 1, - sym_cell_path, - ACTIONS(733), 6, + ACTIONS(907), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(735), 25, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -222634,26 +237356,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [103432] = 4, + [111156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_LF, - STATE(2350), 1, + STATE(2556), 1, sym_comment, - ACTIONS(901), 33, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -222676,15 +237397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103477] = 4, + sym_short_flag, + [111203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2351), 1, + STATE(2557), 1, sym_comment, - ACTIONS(105), 2, + ACTIONS(786), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(103), 32, + ACTIONS(784), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -222717,94 +237439,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103522] = 23, - ACTIONS(147), 1, + [111248] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(964), 1, - sym_block, - STATE(2352), 1, + STATE(2558), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3647), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [103605] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [111293] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2353), 1, + STATE(2559), 1, sym_comment, - ACTIONS(988), 5, - anon_sym_GT, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3917), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(990), 29, - anon_sym_COMMA, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 26, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -222818,12 +237522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103650] = 4, - ACTIONS(147), 1, + sym_short_flag, + [111342] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2354), 1, + STATE(2560), 1, sym_comment, - ACTIONS(948), 11, + ACTIONS(1037), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -222835,7 +237540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(950), 23, + ACTIONS(1039), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -222859,78 +237564,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103695] = 7, + [111387] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2355), 1, + STATE(2561), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 24, + ACTIONS(1010), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [103746] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2356), 1, - sym_comment, - ACTIONS(944), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(946), 29, - anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -222944,41 +237604,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103791] = 10, + sym_short_flag, + [111432] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2357), 1, + STATE(2562), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3833), 2, + ACTIONS(3911), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3841), 2, + ACTIONS(3919), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 4, + ACTIONS(3913), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3837), 4, + ACTIONS(3915), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3831), 6, + ACTIONS(3909), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 12, + ACTIONS(1002), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, @@ -222991,94 +237652,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103848] = 23, - ACTIONS(147), 1, + [111489] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(885), 1, - sym_block, - STATE(2358), 1, + STATE(2563), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3644), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [103931] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2359), 1, - sym_comment, - ACTIONS(992), 5, - anon_sym_GT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(994), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -223092,21 +237692,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103976] = 4, + sym_short_flag, + [111534] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2360), 1, - sym_comment, - ACTIONS(950), 2, - ts_builtin_sym_end, + ACTIONS(905), 1, anon_sym_LF, - ACTIONS(948), 32, + STATE(2564), 1, + sym_comment, + ACTIONS(903), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -223132,35 +237734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [104021] = 4, - ACTIONS(147), 1, + [111579] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2361), 1, + STATE(2565), 1, sym_comment, - ACTIONS(1014), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1016), 29, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3911), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3915), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1002), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -223174,95 +237777,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [104066] = 23, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(869), 1, - sym_block, - STATE(2362), 1, + [111630] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2566), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3638), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104149] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [111675] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2363), 1, + STATE(2567), 1, sym_comment, ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1002), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3911), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3917), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3919), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3915), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(3909), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1002), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -223275,26 +237865,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104194] = 4, - ACTIONS(147), 1, + [111730] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2364), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2568), 1, sym_comment, - ACTIONS(920), 5, + STATE(2879), 1, + sym_cell_path, + ACTIONS(740), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(922), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(742), 25, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -223316,56 +237908,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [104239] = 4, - ACTIONS(3), 1, + sym_short_flag, + [111781] = 23, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2365), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(942), 1, + sym_block, + STATE(2569), 1, sym_comment, - ACTIONS(1012), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1010), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(3310), 1, + sym_long_flag, + STATE(3874), 1, + sym__flag, + ACTIONS(4082), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [104284] = 4, + [111864] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2366), 1, + STATE(2570), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(954), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1018), 32, + ACTIONS(952), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -223398,33 +238010,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104329] = 4, - ACTIONS(3), 1, + [111909] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2367), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2571), 1, sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(992), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2866), 1, + sym_cell_path, + ACTIONS(736), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(738), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -223439,3331 +238054,3396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104374] = 23, - ACTIONS(147), 1, + [111960] = 23, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4057), 1, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4106), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4108), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4110), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4112), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4114), 1, anon_sym_or, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(868), 1, + STATE(908), 1, sym_block, - STATE(2368), 1, + STATE(2572), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(3642), 1, + STATE(3905), 1, sym__flag, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104457] = 23, - ACTIONS(147), 1, + [112043] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - ACTIONS(4067), 1, - anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym_block, - STATE(2369), 1, + STATE(2573), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3686), 1, - sym__flag, - ACTIONS(4035), 2, + ACTIONS(928), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(926), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104540] = 23, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4059), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, anon_sym_and, - ACTIONS(4065), 1, anon_sym_xor, - ACTIONS(4067), 1, anon_sym_or, - ACTIONS(4069), 1, sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(849), 1, - sym_block, - STATE(2370), 1, + [112088] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3845), 1, + anon_sym_LF, + ACTIONS(3861), 1, + anon_sym_bit_DASHand, + ACTIONS(3863), 1, + anon_sym_bit_DASHxor, + ACTIONS(3865), 1, + anon_sym_bit_DASHor, + ACTIONS(3867), 1, + anon_sym_and, + ACTIONS(3869), 1, + anon_sym_xor, + ACTIONS(3871), 1, + anon_sym_or, + STATE(2574), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3682), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(3849), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(3855), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(3859), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(3843), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3851), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(3853), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3847), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104623] = 23, - ACTIONS(147), 1, + [112158] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(847), 1, - sym_block, - STATE(2371), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2575), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3680), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104706] = 23, - ACTIONS(147), 1, + [112228] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_block, - STATE(2372), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2576), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3663), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104789] = 23, - ACTIONS(147), 1, + [112298] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(832), 1, - sym_block, - STATE(2373), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2577), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3662), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [104872] = 12, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - STATE(2374), 1, - sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4147), 3, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(4157), 4, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 13, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [112368] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104933] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - STATE(2375), 1, - sym_comment, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(928), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(930), 19, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104988] = 14, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2578), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, anon_sym_PLUS, - STATE(2376), 1, - sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4157), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(930), 10, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105053] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - STATE(2377), 1, - sym_comment, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(928), 8, - sym_identifier, - anon_sym_GT, + ACTIONS(4060), 4, anon_sym_in, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 20, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105104] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2378), 1, - sym_comment, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(930), 21, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [112438] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105151] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - STATE(2379), 1, - sym_comment, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(928), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(930), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105208] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2579), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, anon_sym_PLUS, - STATE(2380), 1, - sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4157), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105275] = 16, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, - anon_sym_bit_DASHand, - STATE(2381), 1, - sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4161), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4147), 3, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(4159), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4157), 4, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105344] = 17, - ACTIONS(147), 1, + [112508] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - STATE(2382), 1, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2580), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4157), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105415] = 18, - ACTIONS(147), 1, + [112578] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4167), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - STATE(2383), 1, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2581), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(928), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4157), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105488] = 19, - ACTIONS(147), 1, + [112648] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4167), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4169), 1, + ACTIONS(4076), 1, anon_sym_and, - STATE(2384), 1, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2582), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(928), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4157), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105563] = 20, - ACTIONS(147), 1, + [112718] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4167), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4169), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4171), 1, + ACTIONS(4078), 1, anon_sym_xor, - STATE(2385), 1, - sym_comment, - ACTIONS(928), 2, - sym_identifier, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2583), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4157), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105640] = 21, - ACTIONS(147), 1, + [112788] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(4141), 1, - anon_sym_DASH, - ACTIONS(4143), 1, - anon_sym_in, - ACTIONS(4151), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4153), 1, - anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4165), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4167), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4169), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4171), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4173), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2386), 1, + ACTIONS(4190), 1, + anon_sym_LF, + STATE(2584), 1, sym_comment, - ACTIONS(4139), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4149), 2, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4155), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4161), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(4159), 3, + ACTIONS(4060), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4157), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105719] = 6, + [112858] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2387), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4190), 1, anon_sym_LF, - ACTIONS(3839), 2, + STATE(2585), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3837), 4, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 26, + ACTIONS(4188), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - sym_short_flag, - [105768] = 23, - ACTIONS(147), 1, + [112928] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(948), 1, - sym_block, - STATE(2388), 1, + ACTIONS(4190), 1, + anon_sym_LF, + STATE(2586), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3683), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [105851] = 23, - ACTIONS(147), 1, + [112998] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(949), 1, - sym_block, - STATE(2389), 1, + ACTIONS(4190), 1, + anon_sym_LF, + STATE(2587), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3684), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [105934] = 4, + [113068] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LF, - STATE(2390), 1, - sym_comment, - ACTIONS(908), 33, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1746), 1, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4052), 1, + anon_sym_SEMI, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(1921), 1, + aux_sym_pipe_element_repeat1, + STATE(2588), 1, + sym_comment, + ACTIONS(4054), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [105979] = 23, - ACTIONS(147), 1, + [113142] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4065), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4067), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4069), 1, - sym_short_flag, - STATE(975), 1, - sym_block, - STATE(2391), 1, + ACTIONS(4190), 1, + anon_sym_LF, + STATE(2589), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3678), 1, - sym__flag, - ACTIONS(4035), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106062] = 4, + [113212] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(934), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4190), 1, anon_sym_LF, - STATE(2392), 1, + STATE(2590), 1, sym_comment, - ACTIONS(932), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [106106] = 17, + [113282] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4182), 1, + ACTIONS(4190), 1, anon_sym_LF, - STATE(2393), 1, + STATE(2591), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, + ACTIONS(4188), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106176] = 19, + [113352] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4186), 1, + ACTIONS(4190), 1, anon_sym_LF, - STATE(1778), 1, - aux_sym_pipe_element_repeat1, - STATE(2394), 1, + STATE(2592), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4184), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106250] = 4, + [113422] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1027), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4190), 1, anon_sym_LF, - STATE(2395), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1025), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [113492] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106294] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(922), 1, + ACTIONS(4190), 1, anon_sym_LF, - STATE(2396), 1, + STATE(2594), 1, sym_comment, - ACTIONS(920), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [113562] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106338] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2397), 1, - sym_comment, - ACTIONS(903), 2, - ts_builtin_sym_end, + ACTIONS(4190), 1, anon_sym_LF, - ACTIONS(901), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(2595), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [113632] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(4190), 1, anon_sym_LF, - STATE(2398), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1014), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [106426] = 17, + [113702] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(327), 1, - anon_sym_LF, - ACTIONS(347), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(349), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(351), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(353), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(355), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(357), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2399), 1, + ACTIONS(4190), 1, + anon_sym_LF, + STATE(2597), 1, sym_comment, - ACTIONS(331), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(341), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(343), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(345), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(325), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(333), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(337), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(329), 6, + ACTIONS(4188), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106496] = 19, + [113772] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4105), 1, - anon_sym_SEMI, - ACTIONS(4202), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(1816), 1, - aux_sym_pipe_element_repeat1, - STATE(2400), 1, - sym_comment, - ACTIONS(4107), 2, - ts_builtin_sym_end, + ACTIONS(4220), 1, anon_sym_LF, - ACTIONS(4190), 2, + STATE(2598), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106570] = 4, + [113842] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2401), 1, + STATE(2599), 1, sym_comment, - ACTIONS(992), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [113912] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106614] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(946), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2402), 1, + STATE(2600), 1, sym_comment, - ACTIONS(944), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [113982] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106658] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2403), 1, + STATE(2601), 1, sym_comment, - ACTIONS(988), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114052] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106702] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2404), 1, - sym_comment, - ACTIONS(910), 2, - ts_builtin_sym_end, + ACTIONS(4220), 1, anon_sym_LF, - ACTIONS(908), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(2602), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114122] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(982), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2405), 1, + STATE(2603), 1, sym_comment, - ACTIONS(980), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114192] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106790] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(109), 1, + ACTIONS(4220), 1, anon_sym_LF, - ACTIONS(4214), 1, - anon_sym_COLON, - STATE(2406), 1, + STATE(2604), 1, sym_comment, - ACTIONS(107), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114262] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [106836] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3739), 1, - anon_sym_DOT, - STATE(2081), 1, - sym_path, - STATE(2328), 1, - sym_cell_path, - STATE(2407), 1, + ACTIONS(4220), 1, + anon_sym_LF, + STATE(2605), 1, sym_comment, - ACTIONS(2559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(741), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(743), 23, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [106888] = 17, + [114332] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3935), 1, - anon_sym_LF, - ACTIONS(3951), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(3953), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(3955), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(3957), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(3959), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(3961), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2408), 1, + ACTIONS(4220), 1, + anon_sym_LF, + STATE(2606), 1, sym_comment, - ACTIONS(3939), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3945), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3947), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3949), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3941), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3943), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3937), 6, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [106958] = 4, + [114402] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(974), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4186), 1, anon_sym_LF, - STATE(2409), 1, + STATE(2607), 1, sym_comment, - ACTIONS(972), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114472] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107002] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(970), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2410), 1, + STATE(2608), 1, sym_comment, - ACTIONS(968), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114542] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107046] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(966), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2411), 1, + STATE(2609), 1, sym_comment, - ACTIONS(964), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114612] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107090] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2412), 1, + STATE(2610), 1, sym_comment, - ACTIONS(1002), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114682] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107134] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(4220), 1, anon_sym_LF, - STATE(2413), 1, + STATE(2611), 1, sym_comment, - ACTIONS(956), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4218), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114752] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107178] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(954), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2414), 1, + STATE(2612), 1, sym_comment, - ACTIONS(952), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114822] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107222] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2415), 1, + STATE(2613), 1, sym_comment, - ACTIONS(940), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114892] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2416), 1, + STATE(2614), 1, sym_comment, - ACTIONS(936), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [114962] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107310] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(926), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2417), 1, + STATE(2615), 1, sym_comment, - ACTIONS(924), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [107354] = 17, + [115032] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1067), 1, - anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2418), 1, + ACTIONS(4224), 1, + anon_sym_LF, + STATE(2616), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1065), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107424] = 4, + [115102] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2419), 1, + STATE(2617), 1, sym_comment, - ACTIONS(976), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [115172] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107468] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2420), 1, + STATE(2618), 1, sym_comment, - ACTIONS(976), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [107512] = 17, + [115242] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2421), 1, + STATE(2619), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4222), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107582] = 4, + [115312] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2422), 1, + STATE(2620), 1, sym_comment, - ACTIONS(984), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [115382] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [107626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(109), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2423), 1, + STATE(2621), 1, sym_comment, - ACTIONS(107), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4058), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [115452] = 23, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, anon_sym_bit_DASHand, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, + ACTIONS(4132), 1, anon_sym_bit_DASHor, + ACTIONS(4134), 1, anon_sym_and, + ACTIONS(4136), 1, anon_sym_xor, + ACTIONS(4138), 1, anon_sym_or, - [107670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(962), 1, - anon_sym_LF, - STATE(2424), 1, - sym_comment, - ACTIONS(960), 32, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4226), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(4228), 1, + anon_sym_if, + ACTIONS(4230), 1, + anon_sym_EQ_GT, + STATE(2622), 1, + sym_comment, + STATE(3804), 1, + sym_match_guard, + STATE(3854), 1, + aux_sym__match_or_pattern_repeat1, + ACTIONS(4039), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [107714] = 17, + [115534] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(327), 1, - anon_sym_LF, - ACTIONS(347), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(349), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(351), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(353), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(355), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(357), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2425), 1, + ACTIONS(4224), 1, + anon_sym_LF, + STATE(2623), 1, sym_comment, - ACTIONS(331), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(341), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(343), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(345), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(325), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(333), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(337), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(329), 6, + ACTIONS(4222), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107784] = 17, + [115604] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2426), 1, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2624), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107854] = 16, + [115674] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - STATE(2427), 1, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4224), 1, + anon_sym_LF, + STATE(2625), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 5, + ACTIONS(4222), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_or, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107922] = 15, + [115744] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - STATE(2428), 1, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4186), 1, + anon_sym_LF, + STATE(2626), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 6, + ACTIONS(4184), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107988] = 14, + [115814] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4234), 1, anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4252), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4254), 1, anon_sym_bit_DASHor, - STATE(2429), 1, + ACTIONS(4256), 1, + anon_sym_and, + ACTIONS(4258), 1, + anon_sym_xor, + ACTIONS(4260), 1, + anon_sym_or, + STATE(2627), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4238), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4244), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4246), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4248), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4232), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4240), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4242), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4236), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [108052] = 13, + [115884] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_LF, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - STATE(2430), 1, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4264), 1, + anon_sym_LF, + STATE(2628), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + [115954] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [108114] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4264), 1, anon_sym_LF, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - STATE(2431), 1, + STATE(2629), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 9, + [116024] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(928), 1, + anon_sym_LF, + STATE(2630), 1, + sym_comment, + ACTIONS(926), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, - [108174] = 17, + [116068] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2432), 1, + STATE(2631), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108244] = 17, + [116138] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2433), 1, + STATE(2632), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108314] = 11, + [116208] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2434), 1, + STATE(2633), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + [116278] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [108372] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2435), 1, + STATE(2634), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4115), 4, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 22, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, anon_sym_RBRACE, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [108424] = 17, + [116348] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_LF, - ACTIONS(3913), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(3915), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(3917), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(3919), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(3921), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(3923), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2436), 1, + ACTIONS(4264), 1, + anon_sym_LF, + STATE(2635), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3907), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3909), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3911), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3895), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3903), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3905), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3899), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108494] = 5, + [116418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(954), 1, anon_sym_LF, - STATE(2437), 1, + STATE(2636), 1, sym_comment, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 30, + ACTIONS(952), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -226772,6 +241452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -226794,667 +241476,933 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108540] = 17, + [116462] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2438), 1, + STATE(2637), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108610] = 17, + [116532] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_LF, - ACTIONS(4238), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4240), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4242), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4244), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4246), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4248), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2439), 1, + ACTIONS(4264), 1, + anon_sym_LF, + STATE(2638), 1, sym_comment, - ACTIONS(4226), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4232), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4234), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4236), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4220), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4228), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4230), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4224), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108680] = 17, + [116602] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2440), 1, + STATE(2639), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108750] = 6, + [116672] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2441), 1, + STATE(2640), 1, sym_comment, - ACTIONS(4117), 2, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4115), 4, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 26, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [116742] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [108798] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2442), 1, + STATE(2641), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4113), 4, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [116812] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [108854] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4264), 1, anon_sym_LF, - STATE(2443), 1, + STATE(2642), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4115), 4, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 24, + ACTIONS(4262), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4056), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [116882] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, anon_sym_bit_DASHand, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, + ACTIONS(4074), 1, anon_sym_bit_DASHor, + ACTIONS(4076), 1, anon_sym_and, + ACTIONS(4078), 1, anon_sym_xor, + ACTIONS(4080), 1, anon_sym_or, - [108904] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2444), 1, + STATE(2643), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4115), 4, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4266), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [108958] = 17, + [116952] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4224), 1, anon_sym_LF, - STATE(2445), 1, + STATE(2644), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4222), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109028] = 17, + [117022] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2446), 1, + STATE(2645), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109098] = 17, + [117092] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2447), 1, + STATE(2646), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109168] = 17, + [117162] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1004), 1, + anon_sym_LF, + STATE(2647), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4056), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4218), 1, + [117216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2448), 1, + STATE(2648), 1, + sym_comment, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [117260] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4268), 1, + anon_sym_LF, + STATE(2649), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109238] = 17, + [117330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2650), 1, + sym_comment, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4218), 1, + [117374] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2449), 1, + STATE(2651), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109308] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1002), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4218), 1, + [117430] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2450), 1, + STATE(2652), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [117474] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_LF, + STATE(2653), 1, + sym_comment, + ACTIONS(4064), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + 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, + [117522] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1008), 1, + anon_sym_LF, + STATE(2654), 1, + sym_comment, + ACTIONS(1006), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [117566] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2655), 1, + sym_comment, + ACTIONS(1010), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109378] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [117610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2451), 1, + STATE(2656), 1, sym_comment, - ACTIONS(948), 32, + ACTIONS(4064), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1002), 30, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -227463,8 +242411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -227487,32 +242433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109422] = 4, - ACTIONS(147), 1, + [117656] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2452), 1, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2657), 1, sym_comment, - ACTIONS(846), 6, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(848), 27, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -227526,139 +242473,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [109466] = 17, + [117700] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4218), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2453), 1, + STATE(2658), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(1002), 22, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109536] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4218), 1, + [117752] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2454), 1, + STATE(2659), 1, sym_comment, - ACTIONS(4111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4216), 4, + ACTIONS(1010), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [109606] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2455), 1, - sym_comment, - ACTIONS(842), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(844), 27, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -227672,119 +242557,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [109650] = 17, + [117796] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2456), 1, + STATE(2660), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, + ACTIONS(4056), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1002), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [117854] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2661), 1, + sym_comment, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109720] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4252), 1, + [117898] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2457), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + STATE(2662), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109790] = 4, + ACTIONS(1002), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [117958] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_LF, - STATE(2458), 1, + STATE(2663), 1, sym_comment, ACTIONS(1010), 32, anon_sym_SEMI, @@ -227819,763 +242732,728 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109834] = 17, + [118002] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4252), 1, - anon_sym_LF, - STATE(2459), 1, + STATE(2664), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109904] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(1002), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4256), 1, + [118064] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2460), 1, + STATE(2665), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109974] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4252), 1, + [118108] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2461), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + STATE(2666), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110044] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(1002), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4256), 1, + [118172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2462), 1, + STATE(2667), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110114] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4256), 1, + [118216] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2463), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + STATE(2668), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(1002), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + anon_sym_xor, + anon_sym_or, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110184] = 17, + [118282] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2464), 1, + STATE(2669), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110254] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4252), 1, + [118326] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_LF, - STATE(2465), 1, + STATE(2670), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1029), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110324] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4256), 1, + [118370] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2466), 1, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + STATE(2671), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(1002), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + anon_sym_or, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110394] = 17, + [118438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(1012), 1, anon_sym_LF, - STATE(2467), 1, + STATE(2672), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1010), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110464] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [118482] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, - anon_sym_LF, - STATE(2468), 1, + STATE(2673), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(1002), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4056), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118552] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_LF, + STATE(2674), 1, + sym_comment, + ACTIONS(1010), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110534] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [118596] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(319), 1, + anon_sym_LF, + ACTIONS(339), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(341), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(343), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(345), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(347), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(349), 1, anon_sym_or, - ACTIONS(4256), 1, - anon_sym_LF, - STATE(2469), 1, + STATE(2675), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(333), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(335), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(337), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(317), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(325), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(321), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110604] = 17, + [118666] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2470), 1, + STATE(2676), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110674] = 17, + [118736] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2471), 1, + STATE(2677), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110744] = 17, + [118806] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2472), 1, + STATE(2678), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110814] = 4, + [118876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, - sym_comment, - ACTIONS(916), 2, - ts_builtin_sym_end, + ACTIONS(1039), 1, anon_sym_LF, - ACTIONS(914), 31, + STATE(2679), 1, + sym_comment, + ACTIONS(1037), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -228601,868 +243479,694 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110858] = 17, + [118920] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2474), 1, + STATE(2680), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110928] = 17, + [118990] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2475), 1, + STATE(2681), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110998] = 17, + [119060] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4272), 1, + anon_sym_LF, + ACTIONS(4288), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4290), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4292), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4294), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4296), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4298), 1, anon_sym_or, - ACTIONS(4252), 1, - anon_sym_LF, - STATE(2476), 1, + STATE(2682), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4276), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4282), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4284), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4286), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4270), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(4278), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4280), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4274), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111068] = 17, + [119130] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2477), 1, + STATE(2683), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111138] = 17, + [119200] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2478), 1, + STATE(2684), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111208] = 17, + [119270] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2479), 1, + STATE(2685), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111278] = 17, + [119340] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(319), 1, + anon_sym_LF, + ACTIONS(339), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(341), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(343), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(345), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(347), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(349), 1, anon_sym_or, - ACTIONS(4252), 1, - anon_sym_LF, - STATE(2480), 1, + STATE(2686), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(323), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(333), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(335), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(337), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(317), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(325), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(321), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111348] = 17, + [119410] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4256), 1, + ACTIONS(4268), 1, anon_sym_LF, - STATE(2481), 1, + STATE(2687), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4254), 4, + ACTIONS(4266), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111418] = 17, + [119480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4252), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(2482), 1, + STATE(2688), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(103), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111488] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119524] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(990), 1, anon_sym_LF, - STATE(2483), 1, + STATE(2689), 1, sym_comment, - ACTIONS(4111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, + ACTIONS(988), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [111558] = 23, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4073), 1, anon_sym_DASH, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_bit_DASHand, - ACTIONS(4093), 1, - anon_sym_bit_DASHxor, - ACTIONS(4095), 1, - anon_sym_bit_DASHor, - ACTIONS(4097), 1, - anon_sym_and, - ACTIONS(4099), 1, - anon_sym_xor, - ACTIONS(4101), 1, - anon_sym_or, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4264), 1, - anon_sym_if, - ACTIONS(4266), 1, - anon_sym_EQ_GT, - STATE(2484), 1, - sym_comment, - STATE(3578), 1, - aux_sym__match_or_pattern_repeat1, - STATE(3583), 1, - sym_match_guard, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4077), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [111640] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119568] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(986), 1, anon_sym_LF, - STATE(2485), 1, + STATE(2690), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(984), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111710] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119612] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(986), 1, anon_sym_LF, - STATE(2486), 1, + STATE(2691), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(984), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111780] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, - anon_sym_LF, - STATE(2487), 1, - sym_comment, - ACTIONS(4111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [111850] = 17, + [119656] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4270), 1, + ACTIONS(1075), 1, anon_sym_LF, - ACTIONS(4286), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4288), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4290), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4292), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4294), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4296), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2488), 1, + STATE(2692), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4280), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4282), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4284), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4268), 4, + ACTIONS(1073), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4276), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4278), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4272), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111920] = 17, + [119726] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4260), 1, + ACTIONS(1004), 1, anon_sym_LF, - STATE(2489), 1, + STATE(2693), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, + ACTIONS(1002), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111990] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [119776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1020), 1, + ACTIONS(974), 1, anon_sym_LF, - STATE(2490), 1, + STATE(2694), 1, sym_comment, - ACTIONS(1018), 32, + ACTIONS(972), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -229495,2181 +244199,1934 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [112034] = 17, + [119820] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4260), 1, + ACTIONS(970), 1, anon_sym_LF, - STATE(2491), 1, + STATE(2695), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(968), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112104] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119864] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(966), 1, anon_sym_LF, - STATE(2492), 1, + STATE(2696), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(964), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112174] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119908] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(962), 1, anon_sym_LF, - STATE(2493), 1, + STATE(2697), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(960), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112244] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [119952] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(958), 1, anon_sym_LF, - STATE(2494), 1, + STATE(2698), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(956), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112314] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4252), 1, + [119996] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(996), 1, anon_sym_LF, - STATE(2495), 1, + STATE(2699), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(994), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4250), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112384] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [120040] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(948), 1, anon_sym_LF, - STATE(2496), 1, + STATE(2700), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(946), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112454] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [120084] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(944), 1, anon_sym_LF, - STATE(2497), 1, + STATE(2701), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(942), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112524] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4260), 1, + [120128] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(920), 1, anon_sym_LF, - STATE(2498), 1, + STATE(2702), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(918), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112594] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [120172] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4260), 1, + ACTIONS(4186), 1, anon_sym_LF, - STATE(2499), 1, + STATE(2703), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4258), 4, + ACTIONS(4184), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112664] = 17, + [120242] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4300), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(2500), 1, + ACTIONS(4300), 1, + anon_sym_COLON, + STATE(2704), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(103), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112734] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, - anon_sym_LF, - STATE(2501), 1, + [120288] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3717), 1, + anon_sym_DOT, + STATE(2194), 1, + sym_path, + STATE(2467), 1, + sym_cell_path, + STATE(2705), 1, sym_comment, - ACTIONS(4111), 2, - anon_sym_DASH, + ACTIONS(2563), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(760), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_LT2, + ACTIONS(762), 23, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112804] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, - anon_sym_LF, - STATE(2502), 1, + [120340] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2706), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(901), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(899), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112874] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, + [120384] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(978), 1, anon_sym_LF, - STATE(2503), 1, + STATE(2707), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(976), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112944] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, + [120428] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1020), 1, anon_sym_LF, - STATE(2504), 1, + STATE(2708), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1018), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113014] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [120472] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4300), 1, + ACTIONS(4304), 1, anon_sym_LF, - STATE(2505), 1, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(2709), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4302), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113084] = 17, + [120546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4300), 1, + ACTIONS(924), 1, anon_sym_LF, - STATE(2506), 1, + STATE(2710), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(922), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113154] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, - anon_sym_LF, - STATE(2507), 1, + [120590] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2711), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113224] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, + [120634] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1000), 1, anon_sym_LF, - STATE(2508), 1, + STATE(2712), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(998), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113294] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, + [120678] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(982), 1, anon_sym_LF, - STATE(2509), 1, + STATE(2713), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(980), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113364] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4300), 1, + [120722] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1016), 1, anon_sym_LF, - STATE(2510), 1, + STATE(2714), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1014), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113434] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [120766] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(3877), 1, + anon_sym_LF, + ACTIONS(3893), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(3899), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(3901), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(3903), 1, anon_sym_or, - ACTIONS(4300), 1, - anon_sym_LF, - STATE(2511), 1, + STATE(2715), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(3881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(3887), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(3889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(3891), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(3875), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3883), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(3885), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(3879), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113504] = 17, + [120836] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4300), 1, + ACTIONS(940), 1, anon_sym_LF, - STATE(2512), 1, + STATE(2716), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(938), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4298), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113574] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4182), 1, + [120880] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(936), 1, anon_sym_LF, - STATE(2513), 1, + STATE(2717), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(934), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113644] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2514), 1, + [120924] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2718), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(909), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(907), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113714] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2515), 1, + [120968] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2719), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(780), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_LT2, + ACTIONS(782), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113784] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2516), 1, + sym_short_flag, + [121012] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2720), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(784), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_LT2, + ACTIONS(786), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + 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, + sym_short_flag, + [121056] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2721), 1, + sym_comment, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(942), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113854] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [121099] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4216), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2517), 1, + STATE(2722), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113924] = 17, + [121168] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2723), 1, + sym_comment, + ACTIONS(4306), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4308), 16, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [121213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2518), 1, + STATE(2724), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(998), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113994] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [121256] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4216), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2519), 1, + STATE(2725), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4218), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114064] = 17, + [121325] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4326), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4328), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4330), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4332), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4334), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4336), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2520), 1, + STATE(2726), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4232), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4234), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4314), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4320), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4322), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4324), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4316), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4318), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4312), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114134] = 17, + [121394] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4216), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2521), 1, + STATE(2727), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4222), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4224), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114204] = 17, + [121463] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4216), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2522), 1, + STATE(2728), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114274] = 17, + [121532] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4216), 1, anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2523), 1, + STATE(2729), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114344] = 17, + [121601] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4182), 1, - anon_sym_LF, - STATE(2524), 1, + STATE(2730), 1, sym_comment, - ACTIONS(4111), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4117), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(996), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(994), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4115), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114414] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [121644] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2525), 1, + STATE(2731), 1, sym_comment, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114483] = 17, + [121713] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2526), 1, + STATE(2732), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114552] = 17, + [121782] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2527), 1, + STATE(2733), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114621] = 17, + [121851] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2528), 1, + STATE(2734), 1, sym_comment, - ACTIONS(4180), 2, + ACTIONS(4188), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114690] = 17, + [121920] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2529), 1, + STATE(2735), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4222), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4224), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114759] = 17, + [121989] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2530), 1, + STATE(2736), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114828] = 17, + [122058] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2531), 1, + STATE(2737), 1, sym_comment, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114897] = 4, + [122127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2532), 1, + STATE(2738), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(1008), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(980), 30, + ACTIONS(1006), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -231700,1068 +246157,1079 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [114940] = 17, + [122170] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2533), 1, + STATE(2739), 1, sym_comment, - ACTIONS(4180), 2, + ACTIONS(4184), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115009] = 17, + [122239] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2534), 1, + STATE(2740), 1, sym_comment, - ACTIONS(4180), 2, + ACTIONS(4188), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115078] = 17, + [122308] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2535), 1, + STATE(2741), 1, sym_comment, - ACTIONS(4180), 2, + ACTIONS(1073), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(1075), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115147] = 17, + [122377] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2536), 1, + STATE(2742), 1, sym_comment, - ACTIONS(928), 2, + ACTIONS(4188), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(930), 2, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115216] = 16, + [122446] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - STATE(2537), 1, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2743), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(928), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_or, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115283] = 15, + [122515] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - STATE(2538), 1, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2744), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(928), 4, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_xor, - anon_sym_or, - ACTIONS(4192), 4, + ACTIONS(4264), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115348] = 14, + [122584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - STATE(2539), 1, + STATE(2745), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(982), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(980), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4192), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115411] = 13, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [122627] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - STATE(2540), 1, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2746), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4218), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115472] = 17, + [122696] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2541), 1, + STATE(2747), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4266), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115541] = 12, + [122765] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - STATE(2542), 1, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2748), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 7, - anon_sym_SEMI, - anon_sym_PIPE, + [122834] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115600] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2543), 1, + STATE(2749), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4262), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4264), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 8, - anon_sym_SEMI, - anon_sym_PIPE, + [122903] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115657] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2544), 1, + STATE(2750), 1, sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4194), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 20, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [115708] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2545), 1, - sym_comment, - ACTIONS(930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 28, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [122972] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115753] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2546), 1, + STATE(2751), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4196), 2, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4194), 4, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 24, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(4192), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [123041] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115800] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2547), 1, + STATE(2752), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4192), 4, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [123110] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115855] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2548), 1, + STATE(2753), 1, sym_comment, - ACTIONS(990), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(988), 30, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(4224), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [123179] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115898] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2549), 1, + STATE(2754), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4194), 4, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(928), 22, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(4192), 6, anon_sym_GT, - anon_sym_in, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [123248] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [115947] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2550), 1, + STATE(2755), 1, sym_comment, - ACTIONS(930), 2, + ACTIONS(4188), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4190), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4194), 4, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(928), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [116000] = 17, + [123317] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2551), 1, + STATE(2756), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116069] = 17, + [123386] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2552), 1, + STATE(2757), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116138] = 17, + [123455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2553), 1, + STATE(2758), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4192), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116207] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2554), 1, + [123498] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + STATE(2759), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(1002), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_xor, + anon_sym_or, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116276] = 4, + [123563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2555), 1, + STATE(2760), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(970), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(972), 30, + ACTIONS(968), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -232792,327 +247260,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116319] = 17, + [123606] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2556), 1, + STATE(2761), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116388] = 17, + [123675] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2557), 1, + STATE(2762), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4218), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116457] = 17, + [123744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2558), 1, + STATE(2763), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(966), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(964), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [123787] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2764), 1, + sym_comment, + ACTIONS(962), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(960), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116526] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [123830] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2559), 1, + STATE(2765), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116595] = 17, + [123899] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2560), 1, + STATE(2766), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116664] = 17, + [123968] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2561), 1, + STATE(2767), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4222), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4224), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116733] = 4, + [124037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2562), 1, + STATE(2768), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(974), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(968), 30, + ACTIONS(972), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -233143,223 +247637,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116776] = 17, + [124080] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4352), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4354), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4356), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4358), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4360), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4362), 1, anon_sym_or, - STATE(2563), 1, + STATE(2769), 1, sym_comment, - ACTIONS(4180), 2, + ACTIONS(4270), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(4272), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4340), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4348), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4350), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4342), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4338), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116845] = 17, + [124149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2564), 1, + STATE(2770), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116914] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2565), 1, + [124192] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + STATE(2771), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4260), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(1002), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116983] = 17, + [124255] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2566), 1, + STATE(2772), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117052] = 4, + [124324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2567), 1, + STATE(2773), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(960), 30, + ACTIONS(1010), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -233390,67 +247868,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117095] = 17, + [124367] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + STATE(2774), 1, + sym_comment, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 6, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, + anon_sym_or, + ACTIONS(4192), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [124428] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - STATE(2568), 1, + STATE(2775), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117164] = 4, + [124497] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2569), 1, + STATE(2776), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(1039), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(964), 30, + ACTIONS(1037), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -233481,262 +248007,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117207] = 17, + [124540] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3988), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(3990), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(3992), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(3994), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(3996), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(3998), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2570), 1, + STATE(2777), 1, sym_comment, - ACTIONS(3895), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3897), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3976), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3982), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3984), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3986), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3978), 4, + ACTIONS(4218), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3980), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3974), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117276] = 17, + [124609] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2571), 1, + STATE(2778), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4266), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117345] = 4, + [124678] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2572), 1, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2779), 1, sym_comment, - ACTIONS(1020), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1018), 30, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [117388] = 17, + [124747] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2573), 1, + STATE(2780), 1, sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4266), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117457] = 17, + [124816] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4014), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4016), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4018), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4020), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4022), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4024), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2574), 1, + STATE(2781), 1, sym_comment, - ACTIONS(3933), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3935), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4002), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4008), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4010), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4012), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4004), 4, + ACTIONS(4222), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4224), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4006), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4000), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117526] = 4, + [124885] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2575), 1, + STATE(2782), 1, sym_comment, - ACTIONS(109), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(107), 30, + ACTIONS(1010), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -233767,127 +248306,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117569] = 4, + [124928] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2576), 1, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + STATE(2783), 1, sym_comment, - ACTIONS(942), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(940), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4194), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(4204), 2, 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, - [117612] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2577), 1, - sym_comment, - ACTIONS(986), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(984), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(4196), 4, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - 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, - [117655] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2578), 1, - sym_comment, - ACTIONS(1031), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(4198), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1002), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [117698] = 4, + [124987] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2579), 1, + STATE(2784), 1, sym_comment, ACTIONS(1012), 2, ts_builtin_sym_end, @@ -233923,108 +248392,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117741] = 19, + [125030] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4123), 1, - anon_sym_bit_DASHand, - ACTIONS(4125), 1, - anon_sym_bit_DASHxor, - ACTIONS(4127), 1, - anon_sym_bit_DASHor, - ACTIONS(4129), 1, - anon_sym_and, - ACTIONS(4131), 1, - anon_sym_xor, - ACTIONS(4133), 1, - anon_sym_or, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1778), 1, - aux_sym_pipe_element_repeat1, - STATE(2580), 1, + STATE(2785), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2581), 1, - sym_comment, - ACTIONS(978), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(976), 30, + ACTIONS(1002), 8, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [117857] = 4, + [125087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2786), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(978), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(952), 30, + ACTIONS(976), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -234055,15 +248477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117900] = 4, + [125130] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2583), 1, + STATE(2787), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(954), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 30, + ACTIONS(952), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -234094,67 +248516,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117943] = 17, + [125173] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2584), 1, + STATE(2788), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118012] = 4, + [125242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2585), 1, + STATE(2789), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(936), 30, + ACTIONS(1010), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -234185,483 +248607,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118055] = 17, + [125285] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(383), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(385), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(387), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(389), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(391), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(393), 1, anon_sym_or, - STATE(2586), 1, + STATE(2790), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(377), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(379), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(381), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(369), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(373), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(365), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118124] = 17, + [125354] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2587), 1, + STATE(2791), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(1002), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118193] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [125405] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2588), 1, + STATE(2792), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118262] = 17, + [125474] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2589), 1, + STATE(2793), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118331] = 17, + [125543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_bit_DASHand, - ACTIONS(385), 1, - anon_sym_bit_DASHxor, - ACTIONS(387), 1, - anon_sym_bit_DASHor, - ACTIONS(389), 1, - anon_sym_and, - ACTIONS(391), 1, - anon_sym_xor, - ACTIONS(393), 1, - anon_sym_or, - STATE(2590), 1, + STATE(2794), 1, sym_comment, - ACTIONS(325), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(327), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(367), 2, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(377), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(379), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(381), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(369), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(373), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(365), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118400] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2591), 1, + [125586] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2795), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(1002), 28, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118469] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2592), 1, + [125631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2796), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118538] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2593), 1, + [125674] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2797), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(1002), 24, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118607] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2594), 1, - sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4254), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4256), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118676] = 4, + [125721] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2595), 1, + STATE(2798), 1, sym_comment, - ACTIONS(934), 2, + ACTIONS(1031), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(932), 30, + ACTIONS(1029), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -234692,329 +249004,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118719] = 17, + [125764] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2596), 1, + STATE(2799), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4218), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4220), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118788] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2597), 1, - sym_comment, - ACTIONS(950), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(948), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(4192), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [118831] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4308), 1, - anon_sym_COMMA, - STATE(2598), 1, - sym_comment, - ACTIONS(4304), 15, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4306), 16, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [118876] = 17, + [125833] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2599), 1, + STATE(2800), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4254), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118945] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4312), 1, - anon_sym_COMMA, - STATE(2600), 1, - sym_comment, - ACTIONS(4314), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4310), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [118990] = 4, + [125902] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2601), 1, + STATE(2801), 1, sym_comment, - ACTIONS(926), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(924), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [119033] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2602), 1, - sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119102] = 4, + ACTIONS(1002), 10, + anon_sym_SEMI, + anon_sym_PIPE, + 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, + [125957] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2603), 1, + STATE(2802), 1, sym_comment, - ACTIONS(946), 2, + ACTIONS(936), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(944), 30, + ACTIONS(934), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -235045,15 +249192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119145] = 4, + [126000] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2604), 1, + STATE(2803), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(992), 30, + ACTIONS(1010), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -235084,105 +249231,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119188] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2605), 1, - sym_comment, - ACTIONS(4318), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4316), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [119231] = 4, + [126043] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2606), 1, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2804), 1, sym_comment, - ACTIONS(958), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(956), 30, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(4264), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(4192), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [126112] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, anon_sym_bit_DASHand, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, + ACTIONS(4210), 1, anon_sym_bit_DASHor, + ACTIONS(4212), 1, anon_sym_and, + ACTIONS(4214), 1, anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - [119274] = 4, + STATE(2805), 1, + sym_comment, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4266), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4192), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126181] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2806), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1014), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(4194), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4198), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(1002), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -235201,15 +249377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119317] = 4, + [126230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1027), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1025), 30, + ACTIONS(1010), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -235240,935 +249416,1046 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119360] = 17, + [126273] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2609), 1, + STATE(2808), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119429] = 17, + [126342] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2610), 1, + STATE(2809), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119498] = 17, + ACTIONS(1002), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [126395] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2611), 1, + STATE(2810), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119567] = 17, + [126464] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(385), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(387), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(389), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(391), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(393), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2612), 1, + STATE(2811), 1, sym_comment, - ACTIONS(325), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(327), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(367), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(377), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(379), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(381), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(369), 4, + ACTIONS(4218), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4220), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(373), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(365), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119636] = 17, + [126533] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4334), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4336), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4338), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4340), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4342), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4344), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2613), 1, + STATE(2812), 1, sym_comment, - ACTIONS(4268), 2, + ACTIONS(4184), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4270), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4322), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4328), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4330), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4332), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4324), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4326), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4320), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119705] = 17, + [126602] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2614), 1, + STATE(2813), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119774] = 17, + [126671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2814), 1, + sym_comment, + ACTIONS(920), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(918), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2615), 1, + [126714] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2815), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1016), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1014), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [126757] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2816), 1, + sym_comment, + ACTIONS(948), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(946), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119843] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [126800] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2616), 1, + STATE(2817), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119912] = 17, + [126869] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2617), 1, + STATE(2818), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119981] = 17, + [126938] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2618), 1, + STATE(2819), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120050] = 4, + [127007] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2619), 1, + ACTIONS(3992), 1, + anon_sym_bit_DASHand, + ACTIONS(3994), 1, + anon_sym_bit_DASHxor, + ACTIONS(3996), 1, + anon_sym_bit_DASHor, + ACTIONS(3998), 1, + anon_sym_and, + ACTIONS(4000), 1, + anon_sym_xor, + ACTIONS(4002), 1, + anon_sym_or, + STATE(2820), 1, sym_comment, - ACTIONS(922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(920), 30, + ACTIONS(3843), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3845), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3980), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3986), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3988), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3990), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3982), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3984), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(3978), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - 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, - [120093] = 17, + [127076] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4360), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4362), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4364), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4366), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4368), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4370), 1, + ACTIONS(4080), 1, anon_sym_or, - STATE(2620), 1, - sym_comment, - ACTIONS(4220), 2, + ACTIONS(4302), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4222), 2, - ts_builtin_sym_end, + ACTIONS(4364), 1, anon_sym_LF, - ACTIONS(4348), 2, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(2821), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4354), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4356), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4358), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4350), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4352), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4346), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120162] = 17, + [127149] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2621), 1, + STATE(2822), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120231] = 17, + [127218] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2622), 1, + STATE(2823), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120300] = 17, + [127287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2824), 1, + sym_comment, + ACTIONS(986), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(984), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, + anon_sym_or, + [127330] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - STATE(2623), 1, + STATE(2825), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120369] = 17, + [127399] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2624), 1, + STATE(2826), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4258), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4260), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120438] = 17, + [127468] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2625), 1, + STATE(2827), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120507] = 17, + [127537] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2626), 1, + STATE(2828), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120576] = 4, - ACTIONS(147), 1, + [127606] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2627), 1, + STATE(2829), 1, sym_comment, - ACTIONS(1715), 9, + ACTIONS(1720), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym__, @@ -236178,7 +250465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1717), 23, + ACTIONS(1722), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -236202,1055 +250489,1367 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120619] = 17, + [127649] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2628), 1, + STATE(2830), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120688] = 17, + [127718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2831), 1, + sym_comment, + ACTIONS(928), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(926), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [127761] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2832), 1, + sym_comment, + ACTIONS(924), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(922), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, + anon_sym_or, + [127804] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - STATE(2629), 1, + STATE(2833), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120757] = 17, + [127873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2834), 1, + sym_comment, + ACTIONS(958), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(956), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, + anon_sym_or, + [127916] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - STATE(2630), 1, + STATE(2835), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4262), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4264), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120826] = 17, + [127985] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2631), 1, + STATE(2836), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120895] = 17, + [128054] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2632), 1, + STATE(2837), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120964] = 17, + [128123] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(383), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(385), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(387), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(389), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(391), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(393), 1, anon_sym_or, - STATE(2633), 1, + STATE(2838), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(377), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(379), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(381), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4218), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(369), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(373), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(365), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121033] = 17, + [128192] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2634), 1, + STATE(2839), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, + ACTIONS(1002), 3, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4252), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + anon_sym_or, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121102] = 17, + [128259] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4368), 1, + anon_sym_COMMA, + STATE(2840), 1, + sym_comment, + ACTIONS(4370), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4366), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2841), 1, + sym_comment, + ACTIONS(986), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(984), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, + anon_sym_or, + [128347] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2842), 1, + sym_comment, + ACTIONS(4374), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4372), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128390] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, anon_sym_or, - STATE(2635), 1, + STATE(2843), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121171] = 17, + [128459] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2636), 1, + STATE(2844), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121240] = 17, + [128528] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2637), 1, + STATE(2845), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4216), 2, + ACTIONS(4196), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4198), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4192), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128597] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4206), 1, + anon_sym_bit_DASHand, + ACTIONS(4208), 1, + anon_sym_bit_DASHxor, + ACTIONS(4210), 1, + anon_sym_bit_DASHor, + ACTIONS(4212), 1, + anon_sym_and, + ACTIONS(4214), 1, + anon_sym_xor, + ACTIONS(4216), 1, + anon_sym_or, + STATE(2846), 1, + sym_comment, + ACTIONS(4184), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4218), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4200), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4202), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4204), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121309] = 17, + [128666] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2847), 1, + sym_comment, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(938), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [128709] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4020), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4022), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4024), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4026), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4028), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4030), 1, anon_sym_or, - STATE(2638), 1, + STATE(2848), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4008), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4014), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4016), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4018), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(4010), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4012), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4006), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128778] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2849), 1, + sym_comment, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121378] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2639), 1, + [128821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2850), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121447] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [128864] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2640), 1, + STATE(2851), 1, sym_comment, - ACTIONS(1065), 2, + ACTIONS(4184), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1067), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121516] = 17, + [128933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2641), 1, + STATE(2852), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(1020), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1018), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121585] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4202), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2642), 1, + [128976] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2853), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(1012), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121654] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [129019] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2643), 1, + STATE(2854), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(1002), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121723] = 17, + [129088] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2644), 1, + STATE(2855), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121792] = 17, + [129157] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2645), 1, + STATE(2856), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121861] = 17, + [129226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2646), 1, + STATE(2857), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4298), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4300), 2, + ACTIONS(1024), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(1022), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121930] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [129269] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2647), 1, + STATE(2858), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, + ACTIONS(4266), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(4268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121999] = 4, + [129338] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2648), 1, + STATE(2859), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(990), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1002), 30, + ACTIONS(988), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -237281,329 +251880,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122042] = 17, + [129381] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2649), 1, + STATE(2860), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122111] = 17, + [129450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, - anon_sym_bit_DASHand, - ACTIONS(4204), 1, - anon_sym_bit_DASHxor, - ACTIONS(4206), 1, - anon_sym_bit_DASHor, - ACTIONS(4208), 1, - anon_sym_and, - ACTIONS(4210), 1, - anon_sym_xor, - ACTIONS(4212), 1, - anon_sym_or, - STATE(2650), 1, + STATE(2861), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(105), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(103), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4194), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122180] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + [129493] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2651), 1, + STATE(2862), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, + ACTIONS(4222), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4252), 2, + ACTIONS(4224), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122249] = 17, + [129562] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_bit_DASHand, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, + ACTIONS(4210), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, + ACTIONS(4212), 1, anon_sym_and, - ACTIONS(4210), 1, + ACTIONS(4214), 1, anon_sym_xor, - ACTIONS(4212), 1, + ACTIONS(4216), 1, anon_sym_or, - STATE(2652), 1, + STATE(2863), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4184), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4200), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(4202), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, + ACTIONS(4204), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, + ACTIONS(4196), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + ACTIONS(4198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, + ACTIONS(4192), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122318] = 17, - ACTIONS(3), 1, + [129631] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4202), 1, + STATE(2864), 1, + sym_comment, + ACTIONS(980), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(982), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4204), 1, anon_sym_bit_DASHxor, - ACTIONS(4206), 1, anon_sym_bit_DASHor, - ACTIONS(4208), 1, anon_sym_and, - ACTIONS(4210), 1, anon_sym_xor, - ACTIONS(4212), 1, anon_sym_or, - STATE(2653), 1, + sym_short_flag, + [129673] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2865), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4196), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4198), 2, + ACTIONS(1002), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1004), 23, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4200), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4250), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4252), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4192), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4194), 4, + 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, + sym_short_flag, + [129717] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2866), 1, + sym_comment, + ACTIONS(956), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(958), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4188), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122387] = 16, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4057), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4059), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, anon_sym_and, - STATE(2654), 1, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [129759] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2867), 1, + sym_comment, + ACTIONS(4378), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4376), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129801] = 12, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2868), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 5, + ACTIONS(1004), 9, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [122453] = 4, - ACTIONS(147), 1, + [129859] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2655), 1, + STATE(2869), 1, sym_comment, - ACTIONS(107), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(109), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237629,19 +252312,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122495] = 4, - ACTIONS(147), 1, + [129901] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2656), 1, + STATE(2870), 1, sym_comment, - ACTIONS(964), 6, + ACTIONS(4382), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4380), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129943] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2871), 1, + sym_comment, + ACTIONS(960), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(966), 25, + ACTIONS(962), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237667,42 +252388,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122537] = 11, - ACTIONS(147), 1, + [129985] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2872), 1, + sym_comment, + ACTIONS(4384), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4386), 16, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130027] = 17, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + STATE(2873), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4041), 4, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1004), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or, + sym_short_flag, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 11, + [130095] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2874), 1, + sym_comment, + ACTIONS(1010), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 25, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -237712,19 +252515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122593] = 4, - ACTIONS(147), 1, + [130137] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2658), 1, + STATE(2875), 1, sym_comment, - ACTIONS(956), 6, + ACTIONS(946), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(958), 25, + ACTIONS(948), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237750,19 +252553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122635] = 4, - ACTIONS(147), 1, + [130179] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2659), 1, + STATE(2876), 1, sym_comment, - ACTIONS(980), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(982), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237788,28 +252591,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122677] = 4, - ACTIONS(147), 1, + [130221] = 9, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2660), 1, + STATE(2877), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(1002), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(954), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(1004), 19, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -237826,19 +252634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122719] = 4, - ACTIONS(147), 1, + [130273] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2661), 1, + STATE(2878), 1, sym_comment, - ACTIONS(960), 6, + ACTIONS(964), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(962), 25, + ACTIONS(966), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237864,19 +252672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122761] = 4, - ACTIONS(147), 1, + [130315] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2662), 1, + STATE(2879), 1, sym_comment, - ACTIONS(940), 6, + ACTIONS(934), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(942), 25, + ACTIONS(936), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237902,57 +252710,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122803] = 4, - ACTIONS(147), 1, + [130357] = 14, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2663), 1, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + STATE(2880), 1, sym_comment, - ACTIONS(4374), 9, - anon_sym_DOLLAR, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4372), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 7, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [122845] = 4, - ACTIONS(147), 1, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [130419] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2664), 1, + STATE(2881), 1, sym_comment, - ACTIONS(988), 6, + ACTIONS(1029), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(990), 25, + ACTIONS(1031), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -237978,19 +252796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122887] = 4, - ACTIONS(147), 1, + [130461] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2665), 1, + STATE(2882), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(918), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 25, + ACTIONS(920), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238016,71 +252834,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [122929] = 18, + [130503] = 16, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + STATE(2883), 1, + sym_comment, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [130569] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1746), 1, anon_sym_PIPE, - ACTIONS(4123), 1, + ACTIONS(4070), 1, anon_sym_bit_DASHand, - ACTIONS(4125), 1, + ACTIONS(4072), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, + ACTIONS(4074), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, + ACTIONS(4076), 1, anon_sym_and, - ACTIONS(4131), 1, + ACTIONS(4078), 1, anon_sym_xor, - ACTIONS(4133), 1, + ACTIONS(4080), 1, anon_sym_or, - ACTIONS(4302), 1, + ACTIONS(4364), 1, anon_sym_LF, - STATE(1778), 1, + STATE(1921), 1, aux_sym_pipe_element_repeat1, - STATE(2666), 1, + STATE(2884), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4058), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4117), 2, + ACTIONS(4064), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + ACTIONS(4066), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, + ACTIONS(4068), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4113), 4, + ACTIONS(4060), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + ACTIONS(4062), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, + ACTIONS(4056), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122999] = 4, - ACTIONS(147), 1, + [130639] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2667), 1, + STATE(2885), 1, sym_comment, - ACTIONS(932), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(934), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238106,19 +252974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123041] = 4, - ACTIONS(147), 1, + [130681] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2668), 1, + STATE(2886), 1, sym_comment, - ACTIONS(1029), 6, + ACTIONS(922), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1031), 25, + ACTIONS(924), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238144,71 +253012,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123083] = 18, - ACTIONS(147), 1, + [130723] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4057), 1, + STATE(2887), 1, + sym_comment, + ACTIONS(1037), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1039), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4059), 1, anon_sym_bit_DASHxor, - ACTIONS(4061), 1, anon_sym_bit_DASHor, - ACTIONS(4063), 1, anon_sym_and, - ACTIONS(4065), 1, anon_sym_xor, - ACTIONS(4067), 1, anon_sym_or, - STATE(2669), 1, + sym_short_flag, + [130765] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2888), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(1010), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(930), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123153] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [130807] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2889), 1, sym_comment, - ACTIONS(924), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(926), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238234,12 +253126,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123195] = 4, - ACTIONS(147), 1, + [130849] = 15, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(4104), 1, + anon_sym_bit_DASHand, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + STATE(2890), 1, + sym_comment, + ACTIONS(4082), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4102), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1004), 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [130913] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2891), 1, sym_comment, - ACTIONS(4376), 15, + ACTIONS(4388), 15, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, @@ -238255,7 +253196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4378), 16, + ACTIONS(4390), 16, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -238272,19 +253213,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123237] = 4, - ACTIONS(147), 1, + [130955] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2672), 1, + STATE(2892), 1, sym_comment, - ACTIONS(968), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(970), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238310,71 +253251,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123279] = 18, - ACTIONS(3), 1, + [130997] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4123), 1, + STATE(2893), 1, + sym_comment, + ACTIONS(1010), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4125), 1, anon_sym_bit_DASHxor, - ACTIONS(4127), 1, anon_sym_bit_DASHor, - ACTIONS(4129), 1, anon_sym_and, - ACTIONS(4131), 1, anon_sym_xor, - ACTIONS(4133), 1, anon_sym_or, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1816), 1, - aux_sym_pipe_element_repeat1, - STATE(2673), 1, + sym_short_flag, + [131039] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2894), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(968), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4117), 2, + anon_sym_LT2, + ACTIONS(970), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4119), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4121), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4113), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4115), 4, + 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, + sym_short_flag, + [131081] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2895), 1, + sym_comment, + ACTIONS(1010), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4109), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123349] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [131123] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2674), 1, + STATE(2896), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(938), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1004), 25, + ACTIONS(940), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238400,26 +253403,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123391] = 4, - ACTIONS(147), 1, + [131165] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2675), 1, + STATE(2897), 1, sym_comment, - ACTIONS(1010), 6, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1002), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1012), 25, + ACTIONS(1004), 21, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -238438,19 +253444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123433] = 4, - ACTIONS(147), 1, + [131213] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2676), 1, + STATE(2898), 1, sym_comment, - ACTIONS(948), 6, + ACTIONS(972), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(950), 25, + ACTIONS(974), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238476,38 +253482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123475] = 10, - ACTIONS(147), 1, + [131255] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2677), 1, + STATE(2899), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(926), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(928), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 15, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -238520,19 +253520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123529] = 4, - ACTIONS(147), 1, + [131297] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2678), 1, + STATE(2900), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(978), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238558,19 +253558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123571] = 4, - ACTIONS(147), 1, + [131339] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2679), 1, + STATE(2901), 1, sym_comment, - ACTIONS(1014), 6, + ACTIONS(1006), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1016), 25, + ACTIONS(1008), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238596,19 +253596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123613] = 4, - ACTIONS(147), 1, + [131381] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2680), 1, + STATE(2902), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(942), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(978), 25, + ACTIONS(944), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238634,57 +253634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123655] = 4, - ACTIONS(147), 1, + [131423] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2681), 1, - sym_comment, - ACTIONS(4380), 15, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4382), 16, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [123697] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2682), 1, + STATE(2903), 1, sym_comment, - ACTIONS(984), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(986), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238710,35 +253672,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123739] = 4, - ACTIONS(147), 1, + [131465] = 11, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2683), 1, + STATE(2904), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(4082), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(4086), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1020), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4088), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1004), 11, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -238748,19 +253717,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123781] = 4, - ACTIONS(147), 1, + [131521] = 18, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2684), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4070), 1, + anon_sym_bit_DASHand, + ACTIONS(4072), 1, + anon_sym_bit_DASHxor, + ACTIONS(4074), 1, + anon_sym_bit_DASHor, + ACTIONS(4076), 1, + anon_sym_and, + ACTIONS(4078), 1, + anon_sym_xor, + ACTIONS(4080), 1, + anon_sym_or, + ACTIONS(4364), 1, + anon_sym_LF, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(2905), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4064), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4066), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4068), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4060), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(4062), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4056), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131591] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2906), 1, sym_comment, - ACTIONS(920), 6, + ACTIONS(952), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(922), 25, + ACTIONS(954), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238786,70 +253807,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123823] = 17, - ACTIONS(147), 1, + [131633] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - ACTIONS(4063), 1, - anon_sym_and, - ACTIONS(4065), 1, - anon_sym_xor, - STATE(2685), 1, + STATE(2907), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(103), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(105), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(930), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or, - sym_short_flag, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123891] = 4, - ACTIONS(147), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [131675] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2686), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1025), 6, + ACTIONS(976), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1027), 25, + ACTIONS(978), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238875,67 +253883,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [123933] = 14, - ACTIONS(147), 1, + [131717] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4057), 1, - anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - STATE(2687), 1, + STATE(2909), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(988), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(990), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 7, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, sym_short_flag, - [123995] = 4, - ACTIONS(147), 1, + [131759] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2688), 1, + STATE(2910), 1, sym_comment, - ACTIONS(972), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(974), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -238961,68 +253959,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124037] = 15, - ACTIONS(147), 1, + [131801] = 13, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4057), 1, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - ACTIONS(4059), 1, - anon_sym_bit_DASHxor, - ACTIONS(4061), 1, - anon_sym_bit_DASHor, - STATE(2689), 1, + STATE(2911), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 6, + ACTIONS(1004), 8, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [124101] = 4, - ACTIONS(147), 1, + [131861] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2690), 1, + STATE(2912), 1, + sym_comment, + ACTIONS(1014), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1016), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + 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, + sym_short_flag, + [131903] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2913), 1, sym_comment, - ACTIONS(992), 6, + ACTIONS(994), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(994), 25, + ACTIONS(996), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -239048,92 +254082,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124143] = 13, - ACTIONS(147), 1, + [131945] = 18, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4057), 1, + ACTIONS(4104), 1, anon_sym_bit_DASHand, - STATE(2691), 1, + ACTIONS(4106), 1, + anon_sym_bit_DASHxor, + ACTIONS(4108), 1, + anon_sym_bit_DASHor, + ACTIONS(4110), 1, + anon_sym_and, + ACTIONS(4112), 1, + anon_sym_xor, + ACTIONS(4114), 1, + anon_sym_or, + STATE(2914), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, + ACTIONS(4102), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4041), 4, + ACTIONS(1004), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + ACTIONS(4088), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(4053), 4, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 8, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [124203] = 12, - ACTIONS(147), 1, + [132015] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2692), 1, + STATE(2915), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(984), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(986), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4055), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4041), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(4053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(930), 9, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -239141,33 +254172,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124261] = 9, - ACTIONS(147), 1, + [132057] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2693), 1, + STATE(2916), 1, sym_comment, - ACTIONS(928), 2, + ACTIONS(1018), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(4039), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4045), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1020), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4051), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(930), 19, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -239184,25 +254210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124313] = 5, - ACTIONS(147), 1, + [132099] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2694), 1, + STATE(2917), 1, sym_comment, - ACTIONS(4047), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(928), 6, + ACTIONS(984), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(930), 23, + ACTIONS(986), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -239223,74 +254248,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124357] = 4, - ACTIONS(147), 1, + [132141] = 10, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2695), 1, - sym_comment, - ACTIONS(4386), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4384), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [124399] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(2696), 1, + STATE(2918), 1, sym_comment, - ACTIONS(928), 2, + ACTIONS(4082), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4039), 2, + ACTIONS(4086), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4045), 2, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4047), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(930), 21, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4098), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(4100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1004), 15, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -239303,29 +254292,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124449] = 7, - ACTIONS(147), 1, + [132195] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2919), 1, sym_comment, - ACTIONS(4045), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4047), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(4049), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(928), 4, + ACTIONS(1022), 6, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(930), 21, + ACTIONS(1024), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -239344,19 +254330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124497] = 4, - ACTIONS(147), 1, + [132237] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2698), 1, + STATE(2920), 1, sym_comment, - ACTIONS(944), 6, + ACTIONS(1010), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(946), 25, + ACTIONS(1012), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -239382,626 +254368,655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [124539] = 20, - ACTIONS(147), 1, + [132279] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + STATE(2921), 1, + sym_comment, + ACTIONS(998), 6, + anon_sym_GT, anon_sym_DASH, - ACTIONS(4081), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(4091), 1, + anon_sym_LT2, + ACTIONS(1000), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(4093), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, anon_sym_and, - ACTIONS(4099), 1, anon_sym_xor, - ACTIONS(4101), 1, anon_sym_or, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_block, - STATE(2699), 1, + sym_short_flag, + [132321] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(2922), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(1002), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4086), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4092), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4094), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4096), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(1004), 21, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124612] = 20, - ACTIONS(147), 1, + 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, + sym_short_flag, + [132371] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4392), 1, + aux_sym_long_flag_token1, + STATE(2923), 1, + sym_comment, + ACTIONS(1555), 12, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1553), 17, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(4081), 1, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [132414] = 20, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4388), 1, + ACTIONS(4394), 1, anon_sym_LBRACE, - STATE(749), 1, - sym_block, - STATE(2700), 1, + STATE(2924), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + STATE(3444), 1, + sym_block, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124685] = 19, - ACTIONS(147), 1, + [132487] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - STATE(2701), 1, + ACTIONS(4396), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_block, + STATE(2925), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4390), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124756] = 19, - ACTIONS(147), 1, + [132560] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - STATE(2702), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(903), 1, + sym_block, + STATE(2926), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4392), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124827] = 19, - ACTIONS(147), 1, + [132633] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - STATE(2703), 1, + STATE(2927), 1, sym_comment, - ACTIONS(2711), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4398), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124898] = 20, - ACTIONS(147), 1, + [132704] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4394), 1, - anon_sym_LBRACE, - STATE(770), 1, + STATE(1040), 1, sym_block, - STATE(2704), 1, + STATE(2928), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [124971] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4396), 1, - aux_sym_long_flag_token1, - STATE(2705), 1, - sym_comment, - ACTIONS(1547), 12, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1545), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [125014] = 20, - ACTIONS(147), 1, + [132777] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4398), 1, - anon_sym_LBRACE, - STATE(2706), 1, + STATE(2929), 1, sym_comment, - STATE(3185), 1, - sym_block, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4400), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [125087] = 20, - ACTIONS(147), 1, + [132848] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - STATE(967), 1, + ACTIONS(4402), 1, + anon_sym_LBRACE, + STATE(834), 1, sym_block, - STATE(2707), 1, + STATE(2930), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [125160] = 20, - ACTIONS(147), 1, + [132921] = 20, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4400), 1, + ACTIONS(4404), 1, anon_sym_LBRACE, - STATE(2708), 1, + STATE(2931), 1, sym_comment, - STATE(3071), 1, + STATE(3241), 1, sym_block, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [125233] = 19, - ACTIONS(147), 1, + [132994] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4402), 1, - anon_sym_LBRACE, - STATE(2709), 1, + STATE(2932), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(2793), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [125303] = 19, - ACTIONS(147), 1, + [133065] = 19, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_DASH, - ACTIONS(4081), 1, + ACTIONS(4045), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4128), 1, anon_sym_bit_DASHand, - ACTIONS(4093), 1, + ACTIONS(4130), 1, anon_sym_bit_DASHxor, - ACTIONS(4095), 1, + ACTIONS(4132), 1, anon_sym_bit_DASHor, - ACTIONS(4097), 1, + ACTIONS(4134), 1, anon_sym_and, - ACTIONS(4099), 1, + ACTIONS(4136), 1, anon_sym_xor, - ACTIONS(4101), 1, + ACTIONS(4138), 1, anon_sym_or, - ACTIONS(4404), 1, + ACTIONS(4406), 1, anon_sym_LBRACE, - STATE(2710), 1, + STATE(2933), 1, sym_comment, - ACTIONS(4071), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(4075), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4077), 2, + ACTIONS(4041), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(4079), 2, + ACTIONS(4043), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(4083), 2, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(4089), 2, + ACTIONS(4126), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4085), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4087), 4, + ACTIONS(4124), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [125373] = 4, - ACTIONS(147), 1, + [133135] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2711), 1, + STATE(2934), 1, sym_comment, - ACTIONS(1559), 8, + ACTIONS(1716), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240010,7 +255025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1561), 21, + ACTIONS(1718), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -240032,12 +255047,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125413] = 4, - ACTIONS(147), 1, + [133175] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2712), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1571), 8, + ACTIONS(1708), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240046,7 +255061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1573), 21, + ACTIONS(1710), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -240068,60 +255083,119 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125453] = 4, - ACTIONS(147), 1, + [133215] = 19, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4037), 1, + anon_sym_DASH, + ACTIONS(4045), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, + anon_sym_bit_DASHand, + ACTIONS(4130), 1, + anon_sym_bit_DASHxor, + ACTIONS(4132), 1, + anon_sym_bit_DASHor, + ACTIONS(4134), 1, + anon_sym_and, + ACTIONS(4136), 1, + anon_sym_xor, + ACTIONS(4138), 1, + anon_sym_or, + ACTIONS(4408), 1, + anon_sym_LBRACE, + STATE(2936), 1, + sym_comment, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4041), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(4043), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(4120), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(4126), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4124), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [133285] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4406), 1, + ACTIONS(784), 1, anon_sym_DASH, - STATE(2713), 1, + STATE(2937), 1, sym_comment, - ACTIONS(3751), 16, + ACTIONS(786), 14, anon_sym_EQ, sym_identifier, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [125481] = 4, - ACTIONS(147), 1, + [133311] = 14, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(846), 1, + ACTIONS(4410), 1, + sym_identifier, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(4418), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4421), 1, + anon_sym_DASH_DASH, + ACTIONS(4424), 1, anon_sym_DASH, - STATE(2714), 1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, + sym_param_short_flag, + STATE(3022), 1, + sym_param_opt, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, + sym_parameter, + STATE(2938), 2, sym_comment, - ACTIONS(848), 14, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + aux_sym_parameter_parens_repeat1, + ACTIONS(4413), 3, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [125507] = 4, - ACTIONS(147), 1, + [133357] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1029), 1, + ACTIONS(780), 1, anon_sym_DASH, - STATE(2715), 1, + STATE(2939), 1, sym_comment, - ACTIONS(1031), 14, + ACTIONS(782), 14, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -240136,28 +255210,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [125533] = 11, - ACTIONS(147), 1, + [133383] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4412), 1, + ACTIONS(4431), 1, anon_sym_COLON, - ACTIONS(4414), 1, + ACTIONS(4433), 1, anon_sym_COMMA, - ACTIONS(4416), 1, + ACTIONS(4435), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, + ACTIONS(4437), 1, anon_sym_DASH, - STATE(2716), 1, + STATE(2940), 1, sym_comment, - STATE(2736), 1, + STATE(2948), 1, sym_flag_capsule, - STATE(2793), 1, + STATE(3013), 1, sym_param_type, - STATE(2794), 1, + STATE(3029), 1, sym_param_value, - ACTIONS(4408), 7, + ACTIONS(4427), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -240165,46 +255239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [125573] = 14, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4420), 1, - sym_identifier, - ACTIONS(4425), 1, - anon_sym_DOLLAR, - ACTIONS(4428), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4431), 1, - anon_sym_DASH_DASH, - ACTIONS(4434), 1, - anon_sym_DASH, - STATE(2716), 1, - sym_param_long_flag, - STATE(2727), 1, - sym__param_name, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, - sym_param_short_flag, - STATE(2807), 1, - sym_param_opt, - STATE(2938), 1, - sym_parameter, - STATE(2717), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(4423), 3, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - [125619] = 4, - ACTIONS(147), 1, + [133423] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(842), 1, + ACTIONS(1022), 1, anon_sym_DASH, - STATE(2718), 1, + STATE(2941), 1, sym_comment, - ACTIONS(844), 14, + ACTIONS(1024), 14, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -240219,722 +255261,577 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [125645] = 10, - ACTIONS(147), 1, + [133449] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3087), 1, + ACTIONS(3173), 1, sym_identifier, - ACTIONS(4437), 1, + ACTIONS(4439), 1, anon_sym_DOLLAR, - STATE(2086), 1, + STATE(2144), 1, sym_val_number, - STATE(2115), 1, + STATE(2259), 1, sym__var, - STATE(2399), 1, + STATE(2675), 1, sym_val_variable, - STATE(2719), 1, + STATE(2942), 1, sym_comment, - STATE(3108), 1, + STATE(3312), 1, sym__where_predicate, - ACTIONS(4439), 4, + ACTIONS(4441), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(4441), 4, + ACTIONS(4443), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - [125682] = 10, - ACTIONS(147), 1, + [133486] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3085), 1, + ACTIONS(3143), 1, sym_identifier, - ACTIONS(4443), 1, + ACTIONS(4445), 1, anon_sym_DOLLAR, - STATE(2128), 1, + STATE(2239), 1, sym_val_number, - STATE(2175), 1, + STATE(2344), 1, sym__var, - STATE(2590), 1, + STATE(2790), 1, sym_val_variable, - STATE(2720), 1, + STATE(2943), 1, sym_comment, - STATE(3381), 1, + STATE(3555), 1, sym__where_predicate, - ACTIONS(4445), 4, + ACTIONS(4447), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(4447), 4, + ACTIONS(4449), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - [125719] = 5, - ACTIONS(147), 1, + [133523] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4406), 1, - anon_sym_DASH, - ACTIONS(4449), 1, - anon_sym_LT, - STATE(2721), 1, - sym_comment, - ACTIONS(3751), 12, - anon_sym_EQ, + ACTIONS(4451), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(4453), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4455), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125746] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4406), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4451), 1, - anon_sym_LT, - STATE(2722), 1, + STATE(2938), 1, + aux_sym_parameter_parens_repeat1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2944), 1, sym_comment, - ACTIONS(3751), 12, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125773] = 15, - ACTIONS(147), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, + sym_param_short_flag, + STATE(3022), 1, + sym_param_opt, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, + sym_parameter, + [133569] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, ACTIONS(4455), 1, - anon_sym_RPAREN, - ACTIONS(4457), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - STATE(2716), 1, - sym_param_long_flag, - STATE(2717), 1, + ACTIONS(4463), 1, + anon_sym_RPAREN, + STATE(2938), 1, aux_sym_parameter_parens_repeat1, - STATE(2723), 1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2945), 1, sym_comment, - STATE(2727), 1, + STATE(2958), 1, sym__param_name, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [125819] = 15, - ACTIONS(147), 1, + [133615] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, ACTIONS(4465), 1, anon_sym_RPAREN, - STATE(2716), 1, + STATE(2940), 1, sym_param_long_flag, - STATE(2717), 1, - aux_sym_parameter_parens_repeat1, - STATE(2724), 1, + STATE(2946), 1, sym_comment, - STATE(2727), 1, + STATE(2952), 1, + aux_sym_parameter_parens_repeat1, + STATE(2958), 1, sym__param_name, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [125865] = 4, - ACTIONS(147), 1, + [133661] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4467), 1, - anon_sym_DASH, - STATE(2725), 1, - sym_comment, - ACTIONS(3931), 12, - anon_sym_EQ, + ACTIONS(4451), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4455), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125889] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4469), 1, + ACTIONS(4461), 1, anon_sym_DASH, - STATE(2726), 1, - sym_comment, - ACTIONS(3966), 12, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(4467), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125913] = 9, - ACTIONS(147), 1, + STATE(2938), 1, + aux_sym_parameter_parens_repeat1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2947), 1, + sym_comment, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, + sym_param_short_flag, + STATE(3022), 1, + sym_param_opt, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, + sym_parameter, + [133707] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4412), 1, + ACTIONS(4431), 1, anon_sym_COLON, - ACTIONS(4473), 1, + ACTIONS(4471), 1, anon_sym_COMMA, - ACTIONS(4475), 1, + ACTIONS(4473), 1, anon_sym_DASH, - STATE(2727), 1, + STATE(2948), 1, sym_comment, - STATE(2747), 1, - sym_param_value, - STATE(2784), 1, + STATE(3045), 1, sym_param_type, - ACTIONS(4471), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [125947] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4477), 1, - anon_sym_DASH, - STATE(2728), 1, - sym_comment, - ACTIONS(3893), 12, - anon_sym_EQ, + STATE(3046), 1, + sym_param_value, + ACTIONS(4469), 7, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125971] = 4, - ACTIONS(147), 1, + [133741] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4479), 1, - anon_sym_DASH, - STATE(2729), 1, - sym_comment, - ACTIONS(3891), 12, - anon_sym_EQ, + ACTIONS(4451), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4455), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [125995] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4453), 1, - sym_identifier, ACTIONS(4457), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4481), 1, - anon_sym_PIPE, - STATE(2716), 1, + ACTIONS(4475), 1, + anon_sym_RBRACK, + STATE(2940), 1, sym_param_long_flag, - STATE(2727), 1, - sym__param_name, - STATE(2730), 1, - sym_comment, - STATE(2731), 1, + STATE(2947), 1, aux_sym_parameter_parens_repeat1, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2949), 1, + sym_comment, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126041] = 15, - ACTIONS(147), 1, + [133787] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4483), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - STATE(2716), 1, + STATE(2940), 1, sym_param_long_flag, - STATE(2717), 1, + STATE(2950), 1, + sym_comment, + STATE(2951), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, + STATE(2958), 1, sym__param_name, - STATE(2731), 1, - sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126087] = 15, - ACTIONS(147), 1, + [133833] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4485), 1, - anon_sym_RBRACK, - STATE(2716), 1, + ACTIONS(4479), 1, + anon_sym_PIPE, + STATE(2938), 1, + aux_sym_parameter_parens_repeat1, + STATE(2940), 1, sym_param_long_flag, - STATE(2727), 1, - sym__param_name, - STATE(2732), 1, + STATE(2951), 1, sym_comment, - STATE(2735), 1, - aux_sym_parameter_parens_repeat1, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126133] = 15, - ACTIONS(147), 1, + [133879] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4487), 1, + ACTIONS(4481), 1, anon_sym_RPAREN, - STATE(2716), 1, - sym_param_long_flag, - STATE(2723), 1, + STATE(2938), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, - sym__param_name, - STATE(2733), 1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2952), 1, sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126179] = 15, - ACTIONS(147), 1, + [133925] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4489), 1, - anon_sym_RPAREN, - STATE(2716), 1, + ACTIONS(4483), 1, + anon_sym_RBRACK, + STATE(2940), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2953), 1, + sym_comment, + STATE(2955), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, + STATE(2958), 1, sym__param_name, - STATE(2734), 1, - sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126225] = 15, - ACTIONS(147), 1, + [133971] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4491), 1, - anon_sym_RBRACK, - STATE(2716), 1, - sym_param_long_flag, - STATE(2717), 1, + ACTIONS(4485), 1, + anon_sym_RPAREN, + STATE(2938), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, - sym__param_name, - STATE(2735), 1, + STATE(2940), 1, + sym_param_long_flag, + STATE(2954), 1, sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126271] = 9, - ACTIONS(147), 1, + [134017] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, - anon_sym_EQ, - ACTIONS(4412), 1, - anon_sym_COLON, - ACTIONS(4495), 1, - anon_sym_COMMA, - ACTIONS(4497), 1, - anon_sym_DASH, - STATE(2736), 1, - sym_comment, - STATE(2752), 1, - sym_param_type, - STATE(2776), 1, - sym_param_value, - ACTIONS(4493), 7, + ACTIONS(4451), 1, sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4455), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [126305] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4453), 1, - sym_identifier, ACTIONS(4457), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4499), 1, + ACTIONS(4487), 1, anon_sym_RBRACK, - STATE(2716), 1, + STATE(2938), 1, + aux_sym_parameter_parens_repeat1, + STATE(2940), 1, sym_param_long_flag, - STATE(2727), 1, - sym__param_name, - STATE(2737), 1, + STATE(2955), 1, sym_comment, - STATE(2741), 1, - aux_sym_parameter_parens_repeat1, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126351] = 15, - ACTIONS(147), 1, + [134063] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4501), 1, + ACTIONS(4489), 1, anon_sym_RPAREN, - STATE(2716), 1, + STATE(2940), 1, sym_param_long_flag, - STATE(2717), 1, + STATE(2954), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, - sym__param_name, - STATE(2738), 1, + STATE(2956), 1, sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126397] = 15, - ACTIONS(147), 1, + [134109] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4503), 1, - anon_sym_RBRACK, - STATE(2716), 1, + ACTIONS(4491), 1, + anon_sym_RPAREN, + STATE(2940), 1, sym_param_long_flag, - STATE(2717), 1, + STATE(2945), 1, aux_sym_parameter_parens_repeat1, - STATE(2727), 1, - sym__param_name, - STATE(2739), 1, + STATE(2957), 1, sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(2958), 1, + sym__param_name, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126443] = 4, - ACTIONS(147), 1, + [134155] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4505), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_COLON, + ACTIONS(4495), 1, + anon_sym_COMMA, + ACTIONS(4497), 1, anon_sym_DASH, - STATE(2740), 1, + STATE(2958), 1, sym_comment, - ACTIONS(3970), 12, - anon_sym_EQ, + STATE(2999), 1, + sym_param_type, + STATE(3003), 1, + sym_param_value, + ACTIONS(4493), 7, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [126467] = 15, - ACTIONS(147), 1, + [134189] = 15, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4453), 1, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4457), 1, + ACTIONS(4455), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_DASH_DASH, - ACTIONS(4463), 1, - anon_sym_DASH, - ACTIONS(4507), 1, - anon_sym_RBRACK, - STATE(2716), 1, - sym_param_long_flag, - STATE(2717), 1, - aux_sym_parameter_parens_repeat1, - STATE(2727), 1, - sym__param_name, - STATE(2741), 1, - sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, - sym_param_short_flag, - STATE(2807), 1, - sym_param_opt, - STATE(2938), 1, - sym_parameter, - [126513] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4453), 1, - sym_identifier, ACTIONS(4457), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, + ACTIONS(4459), 1, anon_sym_DASH_DASH, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DASH, - ACTIONS(4509), 1, + ACTIONS(4499), 1, anon_sym_RBRACK, - STATE(2716), 1, + STATE(2940), 1, sym_param_long_flag, - STATE(2727), 1, - sym__param_name, - STATE(2739), 1, + STATE(2944), 1, aux_sym_parameter_parens_repeat1, - STATE(2742), 1, - sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, - sym_param_short_flag, - STATE(2807), 1, - sym_param_opt, - STATE(2938), 1, - sym_parameter, - [126559] = 15, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4453), 1, - sym_identifier, - ACTIONS(4457), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_DASH_DASH, - ACTIONS(4463), 1, - anon_sym_DASH, - ACTIONS(4511), 1, - anon_sym_RPAREN, - STATE(2716), 1, - sym_param_long_flag, - STATE(2727), 1, + STATE(2958), 1, sym__param_name, - STATE(2738), 1, - aux_sym_parameter_parens_repeat1, - STATE(2743), 1, + STATE(2959), 1, sym_comment, - STATE(2748), 1, - sym_param_rest, - STATE(2805), 1, + STATE(3001), 1, sym_param_short_flag, - STATE(2807), 1, + STATE(3022), 1, sym_param_opt, - STATE(2938), 1, + STATE(3037), 1, + sym_param_rest, + STATE(3159), 1, sym_parameter, - [126605] = 6, - ACTIONS(147), 1, + [134235] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, + ACTIONS(4503), 1, anon_sym_DASH, - STATE(2744), 1, + STATE(2960), 1, sym_comment, - STATE(2832), 1, - sym_param_cmd, - ACTIONS(4513), 9, + ACTIONS(4501), 11, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [126632] = 5, - ACTIONS(147), 1, + [134258] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4521), 1, - anon_sym_QMARK, - ACTIONS(4523), 1, + ACTIONS(4507), 1, + anon_sym_AT, + ACTIONS(4509), 1, anon_sym_DASH, - STATE(2745), 1, + STATE(2961), 1, sym_comment, - ACTIONS(4519), 10, + STATE(3059), 1, + sym_param_cmd, + ACTIONS(4505), 9, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -240942,696 +255839,836 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [126657] = 4, - ACTIONS(147), 1, + [134285] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4513), 1, + anon_sym_QMARK, + ACTIONS(4515), 1, anon_sym_DASH, - STATE(2746), 1, + STATE(2962), 1, sym_comment, - ACTIONS(4525), 11, + ACTIONS(4511), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [126680] = 7, - ACTIONS(147), 1, + [134310] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_COLON, - ACTIONS(4531), 1, - anon_sym_COMMA, - ACTIONS(4533), 1, + ACTIONS(4517), 1, + anon_sym_LT, + ACTIONS(4519), 1, anon_sym_DASH, - STATE(2747), 1, + STATE(2963), 1, sym_comment, - STATE(2845), 1, - sym_param_type, - ACTIONS(4529), 7, + ACTIONS(3591), 10, + anon_sym_EQ, sym_identifier, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [126708] = 4, - ACTIONS(147), 1, + [134335] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4519), 1, anon_sym_DASH, - STATE(2748), 1, + ACTIONS(4521), 1, + anon_sym_LT, + STATE(2964), 1, sym_comment, - ACTIONS(4535), 10, + ACTIONS(3591), 10, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [126730] = 11, - ACTIONS(147), 1, + [134360] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4539), 1, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3415), 1, + anon_sym_not, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(573), 1, + ACTIONS(4525), 1, + anon_sym_DASH, + STATE(224), 1, sym__var, - STATE(2749), 1, + STATE(2965), 1, sym_comment, - STATE(2786), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(391), 2, - sym__blosure, + ACTIONS(3421), 2, + anon_sym_true, + anon_sym_false, + STATE(450), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - STATE(702), 2, - sym_block, - sym_val_closure, - [126766] = 11, - ACTIONS(147), 1, + [134392] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4543), 1, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3423), 1, + anon_sym_not, + ACTIONS(4527), 1, anon_sym_DOLLAR, - ACTIONS(4545), 1, - anon_sym_LBRACE, - STATE(1900), 1, + ACTIONS(4529), 1, + anon_sym_DASH, + STATE(183), 1, sym__var, - STATE(2750), 1, + STATE(2966), 1, sym_comment, - STATE(2751), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(1103), 2, - sym__blosure, + ACTIONS(3429), 2, + anon_sym_true, + anon_sym_false, + STATE(390), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - STATE(2144), 2, - sym_block, - sym_val_closure, - [126802] = 11, - ACTIONS(147), 1, + [134424] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + STATE(2967), 1, + sym_comment, + ACTIONS(832), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(213), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(4531), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [134450] = 12, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4535), 1, + anon_sym_RBRACE, + STATE(92), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(2968), 1, + sym_comment, + STATE(3075), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134488] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4537), 1, + anon_sym_LPAREN, + STATE(2969), 1, + sym_comment, + ACTIONS(2613), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2292), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3097), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [134514] = 12, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4539), 1, + anon_sym_RBRACE, + STATE(102), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(2970), 1, + sym_comment, + STATE(3097), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134552] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4543), 1, + ACTIONS(4541), 1, anon_sym_DOLLAR, - ACTIONS(4545), 1, + ACTIONS(4543), 1, anon_sym_LBRACE, - STATE(1900), 1, + STATE(735), 1, sym__var, - STATE(2751), 1, + STATE(2971), 1, sym_comment, - STATE(3007), 1, + STATE(3008), 1, sym__flag, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(1098), 2, + STATE(492), 2, sym__blosure, sym_val_variable, - STATE(2144), 2, + STATE(839), 2, sym_block, sym_val_closure, - [126838] = 7, - ACTIONS(147), 1, + [134588] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, - anon_sym_EQ, + ACTIONS(4545), 1, + anon_sym_LPAREN, + ACTIONS(4547), 1, + anon_sym_DOLLAR, ACTIONS(4549), 1, - anon_sym_COMMA, - ACTIONS(4551), 1, anon_sym_DASH, - STATE(2752), 1, + ACTIONS(4551), 1, + anon_sym_not, + STATE(2136), 1, + sym__var, + STATE(2972), 1, sym_comment, - STATE(2841), 1, - sym_param_value, - ACTIONS(4547), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [126866] = 12, - ACTIONS(147), 1, + ACTIONS(4553), 2, + anon_sym_true, + anon_sym_false, + STATE(2570), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [134620] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, ACTIONS(4555), 1, anon_sym_RBRACE, - STATE(75), 1, + STATE(85), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2753), 1, + STATE(2973), 1, sym_comment, - STATE(2852), 1, + STATE(3080), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [126904] = 9, - ACTIONS(147), 1, + [134658] = 12, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2685), 1, - anon_sym_not, - ACTIONS(3464), 1, - anon_sym_LPAREN, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, ACTIONS(4557), 1, - anon_sym_DOLLAR, - ACTIONS(4559), 1, - anon_sym_DASH, - STATE(1991), 1, - sym__var, - STATE(2754), 1, - sym_comment, - ACTIONS(2693), 2, - anon_sym_true, - anon_sym_false, - STATE(2262), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [126936] = 12, - ACTIONS(147), 1, + anon_sym_RBRACE, + STATE(64), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(2974), 1, + sym_comment, + STATE(3091), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134696] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4561), 1, + ACTIONS(4559), 1, anon_sym_RBRACE, - STATE(79), 1, + STATE(52), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2755), 1, + STATE(2975), 1, sym_comment, - STATE(2847), 1, + STATE(3064), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [126974] = 9, - ACTIONS(147), 1, + [134734] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3183), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, - ACTIONS(3187), 1, - anon_sym_not, - ACTIONS(4563), 1, + ACTIONS(4561), 1, anon_sym_DOLLAR, - ACTIONS(4565), 1, + ACTIONS(4563), 1, anon_sym_DASH, - STATE(238), 1, + ACTIONS(4565), 1, + anon_sym_not, + STATE(535), 1, sym__var, - STATE(2756), 1, + STATE(2976), 1, sym_comment, - ACTIONS(3193), 2, + ACTIONS(4567), 2, anon_sym_true, anon_sym_false, - STATE(399), 4, + STATE(742), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [127006] = 6, - ACTIONS(147), 1, + [134766] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(3458), 1, anon_sym_LPAREN, - STATE(2757), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2695), 2, + ACTIONS(3460), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2310), 2, + STATE(2493), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2697), 6, + ACTIONS(3462), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127032] = 11, - ACTIONS(147), 1, + [134792] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4567), 1, - anon_sym_DOLLAR, - ACTIONS(4569), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym__var, - STATE(2758), 1, + ACTIONS(3301), 1, + anon_sym_LPAREN, + STATE(2978), 1, sym_comment, - STATE(2765), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(449), 2, - sym__blosure, - sym_val_variable, - STATE(733), 2, - sym_block, - sym_val_closure, - [127068] = 11, - ACTIONS(147), 1, + ACTIONS(1035), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(369), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(4569), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [134818] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4543), 1, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(4571), 1, anon_sym_DOLLAR, - ACTIONS(4545), 1, - anon_sym_LBRACE, - STATE(1900), 1, + ACTIONS(4573), 1, + anon_sym_DASH, + ACTIONS(4575), 1, + anon_sym_not, + STATE(525), 1, sym__var, - STATE(2759), 1, + STATE(2979), 1, sym_comment, - STATE(2790), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(1109), 2, - sym__blosure, + ACTIONS(4577), 2, + anon_sym_true, + anon_sym_false, + STATE(583), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - STATE(2144), 2, - sym_block, - sym_val_closure, - [127104] = 12, - ACTIONS(147), 1, + [134850] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4571), 1, - anon_sym_RBRACE, - STATE(64), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2760), 1, + ACTIONS(3257), 1, + anon_sym_LPAREN, + STATE(2980), 1, sym_comment, - STATE(2888), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [127142] = 4, - ACTIONS(147), 1, + ACTIONS(913), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(322), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(4579), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [134876] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4575), 1, + ACTIONS(4581), 1, anon_sym_DASH, - STATE(2761), 1, + STATE(2981), 1, sym_comment, - ACTIONS(4573), 10, + ACTIONS(3625), 10, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [127164] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3177), 1, - anon_sym_not, - ACTIONS(4443), 1, - anon_sym_DOLLAR, - ACTIONS(4577), 1, - anon_sym_LPAREN, - ACTIONS(4579), 1, - anon_sym_DASH, - STATE(2175), 1, - sym__var, - STATE(2762), 1, - sym_comment, - ACTIONS(3179), 2, - anon_sym_true, - anon_sym_false, - STATE(2597), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [127196] = 6, - ACTIONS(147), 1, + [134898] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4577), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - STATE(2763), 1, + STATE(2982), 1, sym_comment, - ACTIONS(85), 2, + ACTIONS(2577), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2601), 2, + STATE(1257), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(87), 6, + ACTIONS(2579), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127222] = 11, - ACTIONS(147), 1, + [134924] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4539), 1, - anon_sym_DOLLAR, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym__var, - STATE(2749), 1, - sym__flag, - STATE(2764), 1, + ACTIONS(4583), 1, + anon_sym_DASH, + STATE(2983), 1, sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(402), 2, - sym__blosure, - sym_val_variable, - STATE(702), 2, - sym_block, - sym_val_closure, - [127258] = 11, - ACTIONS(147), 1, + ACTIONS(3649), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [134946] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4567), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4569), 1, + ACTIONS(4587), 1, anon_sym_LBRACE, - STATE(638), 1, + STATE(595), 1, sym__var, - STATE(2765), 1, + STATE(2984), 1, sym_comment, - STATE(2789), 1, + STATE(2991), 1, sym__flag, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(448), 2, + STATE(459), 2, sym__blosure, sym_val_variable, - STATE(733), 2, + STATE(781), 2, sym_block, sym_val_closure, - [127294] = 12, - ACTIONS(147), 1, + [134982] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3321), 1, + anon_sym_LPAREN, + STATE(2985), 1, + sym_comment, + ACTIONS(1045), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(428), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(4589), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [135008] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4581), 1, + ACTIONS(4591), 1, anon_sym_RBRACE, - STATE(63), 1, + STATE(73), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2766), 1, + STATE(2986), 1, sym_comment, - STATE(2854), 1, + STATE(3090), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [127332] = 4, - ACTIONS(147), 1, + [135046] = 12, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4585), 1, - anon_sym_DASH, - STATE(2767), 1, - sym_comment, - ACTIONS(4583), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(195), 1, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [127354] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3319), 1, - anon_sym_LPAREN, - ACTIONS(3323), 1, - anon_sym_not, - ACTIONS(4587), 1, - anon_sym_DOLLAR, - ACTIONS(4589), 1, - anon_sym_DASH, - STATE(484), 1, - sym__var, - STATE(2768), 1, - sym_comment, - ACTIONS(3329), 2, - anon_sym_true, - anon_sym_false, - STATE(641), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [127386] = 4, - ACTIONS(147), 1, - anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, ACTIONS(4593), 1, - anon_sym_DASH, - STATE(2769), 1, + anon_sym_RBRACE, + STATE(39), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(2987), 1, sym_comment, - ACTIONS(4591), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [127408] = 6, - ACTIONS(147), 1, + STATE(3067), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [135084] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3183), 1, + ACTIONS(4595), 1, anon_sym_LPAREN, - STATE(2770), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1037), 2, + ACTIONS(249), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(410), 2, + STATE(2707), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4595), 6, + ACTIONS(251), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127434] = 9, - ACTIONS(147), 1, + [135110] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3381), 1, + ACTIONS(2575), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3393), 1, anon_sym_not, ACTIONS(4597), 1, anon_sym_DOLLAR, ACTIONS(4599), 1, anon_sym_DASH, - STATE(451), 1, + STATE(1141), 1, sym__var, - STATE(2771), 1, + STATE(2989), 1, sym_comment, - ACTIONS(3391), 2, + ACTIONS(3399), 2, anon_sym_true, anon_sym_false, - STATE(517), 4, + STATE(1320), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [127466] = 12, - ACTIONS(147), 1, + [135142] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, + ACTIONS(4439), 1, + anon_sym_DOLLAR, + ACTIONS(4595), 1, + anon_sym_LPAREN, ACTIONS(4601), 1, - anon_sym_RBRACE, - STATE(60), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2772), 1, + anon_sym_DASH, + ACTIONS(4603), 1, + anon_sym_not, + STATE(2259), 1, + sym__var, + STATE(2990), 1, sym_comment, - STATE(2859), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [127504] = 9, - ACTIONS(147), 1, + ACTIONS(4605), 2, + anon_sym_true, + anon_sym_false, + STATE(2636), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [135174] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym__var, + STATE(2991), 1, + sym_comment, + STATE(3044), 1, + sym__flag, + STATE(3310), 1, + sym_long_flag, + STATE(470), 2, + sym__blosure, + sym_val_variable, + STATE(781), 2, + sym_block, + sym_val_closure, + [135210] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3458), 1, anon_sym_LPAREN, - ACTIONS(3215), 1, - anon_sym_not, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_DOLLAR, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_DASH, - STATE(172), 1, + ACTIONS(4611), 1, + anon_sym_not, + STATE(2140), 1, sym__var, - STATE(2773), 1, + STATE(2992), 1, sym_comment, - ACTIONS(3221), 2, + ACTIONS(4613), 2, anon_sym_true, anon_sym_false, - STATE(326), 4, + STATE(2506), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [127536] = 6, - ACTIONS(147), 1, + [135242] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3319), 1, + ACTIONS(4617), 1, + anon_sym_DASH, + STATE(2993), 1, + sym_comment, + ACTIONS(4615), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135264] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4621), 1, + anon_sym_DASH, + STATE(2994), 1, + sym_comment, + ACTIONS(4619), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135286] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4541), 1, + anon_sym_DOLLAR, + ACTIONS(4543), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym__var, + STATE(2995), 1, + sym_comment, + STATE(3169), 1, + sym__flag, + STATE(3310), 1, + sym_long_flag, + STATE(487), 2, + sym__blosure, + sym_val_variable, + STATE(839), 2, + sym_block, + sym_val_closure, + [135322] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3542), 1, anon_sym_LPAREN, - STATE(2774), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(2900), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(612), 2, + STATE(2908), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4607), 6, + ACTIONS(2902), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127562] = 6, - ACTIONS(147), 1, + [135348] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4623), 1, anon_sym_LPAREN, - STATE(2775), 1, + STATE(2997), 1, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3477), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(1814), 2, + STATE(1933), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4611), 6, + ACTIONS(4625), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127588] = 7, - ACTIONS(147), 1, + [135374] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4629), 1, + anon_sym_DASH, + STATE(2998), 1, + sym_comment, + ACTIONS(4627), 10, + anon_sym_EQ, + sym_identifier, anon_sym_COLON, - ACTIONS(4549), 1, anon_sym_COMMA, - ACTIONS(4551), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135396] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_COMMA, + ACTIONS(4635), 1, anon_sym_DASH, - STATE(2776), 1, + STATE(2999), 1, sym_comment, - STATE(2841), 1, - sym_param_type, - ACTIONS(4547), 7, + STATE(3082), 1, + sym_param_value, + ACTIONS(4631), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -241639,181 +256676,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [127616] = 9, - ACTIONS(147), 1, + [135424] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_not, - ACTIONS(4613), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR, - ACTIONS(4615), 1, + ACTIONS(4639), 1, anon_sym_DASH, - STATE(1057), 1, + ACTIONS(4641), 1, + anon_sym_not, + STATE(1142), 1, sym__var, - STATE(2777), 1, + STATE(3000), 1, sym_comment, - ACTIONS(3377), 2, + ACTIONS(4643), 2, anon_sym_true, anon_sym_false, - STATE(1191), 4, + STATE(1338), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [127648] = 12, - ACTIONS(147), 1, + [135456] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH, + STATE(3001), 1, + sym_comment, + ACTIONS(4645), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135478] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4617), 1, + ACTIONS(4649), 1, anon_sym_RBRACE, - STATE(89), 1, + STATE(97), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2778), 1, + STATE(3002), 1, sym_comment, - STATE(2853), 1, + STATE(3073), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [127686] = 11, - ACTIONS(147), 1, + [135516] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4431), 1, + anon_sym_COLON, + ACTIONS(4635), 1, + anon_sym_DASH, + ACTIONS(4651), 1, + anon_sym_COMMA, + STATE(3003), 1, + sym_comment, + STATE(3079), 1, + sym_param_type, + ACTIONS(4631), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135544] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4539), 1, - anon_sym_DOLLAR, ACTIONS(4541), 1, + anon_sym_DOLLAR, + ACTIONS(4543), 1, anon_sym_LBRACE, - STATE(573), 1, + STATE(735), 1, sym__var, - STATE(2764), 1, + STATE(2995), 1, sym__flag, - STATE(2779), 1, + STATE(3004), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(401), 2, + STATE(499), 2, sym__blosure, sym_val_variable, - STATE(702), 2, + STATE(839), 2, sym_block, sym_val_closure, - [127722] = 12, - ACTIONS(147), 1, + [135580] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4619), 1, + ACTIONS(4653), 1, anon_sym_RBRACE, - STATE(52), 1, + STATE(69), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2780), 1, + STATE(3005), 1, sym_comment, - STATE(2867), 1, + STATE(3074), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [127760] = 9, - ACTIONS(147), 1, + [135618] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(4537), 1, anon_sym_LPAREN, - ACTIONS(3413), 1, - anon_sym_not, - ACTIONS(4621), 1, + ACTIONS(4655), 1, anon_sym_DOLLAR, - ACTIONS(4623), 1, + ACTIONS(4657), 1, anon_sym_DASH, - STATE(145), 1, + ACTIONS(4659), 1, + anon_sym_not, + STATE(2077), 1, sym__var, - STATE(2781), 1, + STATE(3006), 1, sym_comment, - ACTIONS(3421), 2, + ACTIONS(4661), 2, anon_sym_true, anon_sym_false, - STATE(303), 4, + STATE(2337), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [127792] = 6, - ACTIONS(147), 1, + [135650] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2543), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym__var, + STATE(2984), 1, + sym__flag, + STATE(3007), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(433), 2, + sym__blosure, + sym_val_variable, + STATE(781), 2, + sym_block, + sym_val_closure, + [135686] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4541), 1, + anon_sym_DOLLAR, + ACTIONS(4543), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym__var, + STATE(3004), 1, + sym__flag, + STATE(3008), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(481), 2, + sym__blosure, + sym_val_variable, + STATE(839), 2, + sym_block, + sym_val_closure, + [135722] = 12, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4663), 1, + anon_sym_RBRACE, + STATE(90), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3009), 1, + sym_comment, + STATE(3070), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [135760] = 12, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4665), 1, + anon_sym_RBRACE, + STATE(49), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3010), 1, + sym_comment, + STATE(3063), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [135798] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3469), 1, anon_sym_LPAREN, - STATE(2782), 1, + STATE(3011), 1, sym_comment, - ACTIONS(3458), 2, + ACTIONS(2779), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(1734), 2, + STATE(2461), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4625), 6, + ACTIONS(2781), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [127818] = 4, - ACTIONS(147), 1, + [135824] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4629), 1, + ACTIONS(3111), 1, + anon_sym_LPAREN, + ACTIONS(4667), 1, + anon_sym_DOLLAR, + ACTIONS(4669), 1, anon_sym_DASH, - STATE(2783), 1, + ACTIONS(4671), 1, + anon_sym_not, + STATE(141), 1, + sym__var, + STATE(3012), 1, sym_comment, - ACTIONS(4627), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [127840] = 7, - ACTIONS(147), 1, + ACTIONS(4673), 2, + anon_sym_true, + anon_sym_false, + STATE(206), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [135856] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4533), 1, - anon_sym_DASH, - ACTIONS(4631), 1, + ACTIONS(4677), 1, anon_sym_COMMA, - STATE(2784), 1, + ACTIONS(4679), 1, + anon_sym_DASH, + STATE(3013), 1, sym_comment, - STATE(2844), 1, + STATE(3077), 1, sym_param_value, - ACTIONS(4529), 7, + ACTIONS(4675), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -241821,522 +257004,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [127868] = 12, - ACTIONS(147), 1, + [135884] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4633), 1, + ACTIONS(4681), 1, anon_sym_RBRACE, - STATE(54), 1, + STATE(58), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2785), 1, + STATE(3014), 1, sym_comment, - STATE(2866), 1, + STATE(3068), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [127906] = 11, - ACTIONS(147), 1, + [135922] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4539), 1, - anon_sym_DOLLAR, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym__var, - STATE(2786), 1, + ACTIONS(3373), 1, + anon_sym_LPAREN, + STATE(3015), 1, sym_comment, - STATE(2953), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(384), 2, - sym__blosure, - sym_val_variable, - STATE(702), 2, - sym_block, - sym_val_closure, - [127942] = 12, - ACTIONS(147), 1, + ACTIONS(1225), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(672), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(4683), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [135948] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4687), 1, + anon_sym_DASH, + STATE(3016), 1, + sym_comment, + ACTIONS(4685), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135970] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4635), 1, + ACTIONS(4689), 1, anon_sym_RBRACE, - STATE(46), 1, + STATE(81), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2787), 1, + STATE(3017), 1, sym_comment, - STATE(2874), 1, + STATE(3085), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [127980] = 6, - ACTIONS(147), 1, + [136008] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4637), 1, + ACTIONS(2890), 1, + anon_sym_not, + ACTIONS(3542), 1, anon_sym_LPAREN, - STATE(2788), 1, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4693), 1, + anon_sym_DASH, + STATE(2479), 1, + sym__var, + STATE(3018), 1, sym_comment, - ACTIONS(249), 2, + ACTIONS(2898), 2, + anon_sym_true, + anon_sym_false, + STATE(2906), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [136040] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_comment, + ACTIONS(1202), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2417), 2, + STATE(628), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(251), 6, + ACTIONS(4695), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [128006] = 11, - ACTIONS(147), 1, + [136066] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4567), 1, + ACTIONS(4697), 1, anon_sym_DOLLAR, - ACTIONS(4569), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(638), 1, + STATE(2038), 1, sym__var, - STATE(2789), 1, + STATE(3020), 1, sym_comment, - STATE(2803), 1, + STATE(3223), 1, sym__flag, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(439), 2, + STATE(1203), 2, sym__blosure, sym_val_variable, - STATE(733), 2, + STATE(2251), 2, sym_block, sym_val_closure, - [128042] = 11, - ACTIONS(147), 1, + [136102] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4543), 1, + ACTIONS(4697), 1, anon_sym_DOLLAR, - ACTIONS(4545), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(1900), 1, + STATE(2038), 1, sym__var, - STATE(2750), 1, + STATE(3020), 1, sym__flag, - STATE(2790), 1, + STATE(3021), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(1107), 2, + STATE(1217), 2, sym__blosure, sym_val_variable, - STATE(2144), 2, + STATE(2251), 2, sym_block, sym_val_closure, - [128078] = 9, - ACTIONS(147), 1, + [136138] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_LPAREN, - ACTIONS(3101), 1, - anon_sym_not, - ACTIONS(4639), 1, - anon_sym_DOLLAR, - ACTIONS(4641), 1, + ACTIONS(4703), 1, anon_sym_DASH, - STATE(1058), 1, - sym__var, - STATE(2791), 1, + STATE(3022), 1, sym_comment, - ACTIONS(3109), 2, - anon_sym_true, - anon_sym_false, - STATE(1231), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [128110] = 9, - ACTIONS(147), 1, + ACTIONS(4701), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [136160] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3351), 1, - anon_sym_not, - ACTIONS(4643), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4697), 1, anon_sym_DOLLAR, - ACTIONS(4645), 1, - anon_sym_DASH, - STATE(133), 1, + ACTIONS(4699), 1, + anon_sym_LBRACE, + STATE(2038), 1, sym__var, - STATE(2792), 1, + STATE(3021), 1, + sym__flag, + STATE(3023), 1, sym_comment, - ACTIONS(3359), 2, - anon_sym_true, - anon_sym_false, - STATE(210), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(3310), 1, + sym_long_flag, + STATE(1207), 2, + sym__blosure, sym_val_variable, - [128142] = 7, - ACTIONS(147), 1, + STATE(2251), 2, + sym_block, + sym_val_closure, + [136196] = 12, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4410), 1, - anon_sym_EQ, - ACTIONS(4649), 1, - anon_sym_COMMA, - ACTIONS(4651), 1, + ACTIONS(195), 1, + anon_sym_PIPE, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4705), 1, + anon_sym_RBRACE, + STATE(65), 1, + sym_parameter_pipes, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3024), 1, + sym_comment, + STATE(3065), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [136234] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4707), 1, anon_sym_DASH, - STATE(2793), 1, + STATE(3025), 1, sym_comment, - STATE(2846), 1, - sym_param_value, - ACTIONS(4647), 7, + ACTIONS(3633), 10, + anon_sym_EQ, sym_identifier, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [128170] = 7, - ACTIONS(147), 1, + [136256] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_COLON, - ACTIONS(4649), 1, - anon_sym_COMMA, - ACTIONS(4651), 1, + ACTIONS(4709), 1, anon_sym_DASH, - STATE(2794), 1, + STATE(3026), 1, sym_comment, - STATE(2846), 1, - sym_param_type, - ACTIONS(4647), 7, + ACTIONS(3640), 10, + anon_sym_EQ, sym_identifier, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [128198] = 11, - ACTIONS(147), 1, + [136278] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4653), 1, + ACTIONS(4711), 1, anon_sym_DOLLAR, - ACTIONS(4655), 1, + ACTIONS(4713), 1, anon_sym_LBRACE, - STATE(1928), 1, + STATE(2053), 1, sym__var, - STATE(2795), 1, + STATE(3027), 1, sym_comment, - STATE(2951), 1, + STATE(3030), 1, sym__flag, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(1173), 2, + STATE(1333), 2, sym__blosure, sym_val_variable, - STATE(2199), 2, + STATE(2303), 2, sym_block, sym_val_closure, - [128234] = 6, - ACTIONS(147), 1, + [136314] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(2581), 1, anon_sym_LPAREN, - STATE(2796), 1, + STATE(3028), 1, sym_comment, - ACTIONS(899), 2, + ACTIONS(2583), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(288), 2, + STATE(1331), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4657), 6, + ACTIONS(2585), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [128260] = 11, - ACTIONS(147), 1, + [136340] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4431), 1, + anon_sym_COLON, + ACTIONS(4677), 1, + anon_sym_COMMA, + ACTIONS(4679), 1, + anon_sym_DASH, + STATE(3029), 1, + sym_comment, + STATE(3077), 1, + sym_param_type, + ACTIONS(4675), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + [136368] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4653), 1, + ACTIONS(4711), 1, anon_sym_DOLLAR, - ACTIONS(4655), 1, + ACTIONS(4713), 1, anon_sym_LBRACE, - STATE(1928), 1, + STATE(2053), 1, sym__var, - STATE(2795), 1, - sym__flag, - STATE(2797), 1, + STATE(3030), 1, sym_comment, - STATE(3130), 1, + STATE(3035), 1, + sym__flag, + STATE(3310), 1, sym_long_flag, - STATE(1166), 2, + STATE(1318), 2, sym__blosure, sym_val_variable, - STATE(2199), 2, + STATE(2303), 2, sym_block, sym_val_closure, - [128296] = 12, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4659), 1, - anon_sym_RBRACE, - STATE(96), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2798), 1, - sym_comment, - STATE(2889), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [128334] = 9, - ACTIONS(147), 1, + [136404] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2886), 1, + ACTIONS(2769), 1, anon_sym_not, - ACTIONS(3524), 1, + ACTIONS(3469), 1, anon_sym_LPAREN, - ACTIONS(4661), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR, - ACTIONS(4663), 1, + ACTIONS(4717), 1, anon_sym_DASH, - STATE(2276), 1, + STATE(2177), 1, sym__var, - STATE(2799), 1, + STATE(3031), 1, sym_comment, - ACTIONS(2894), 2, + ACTIONS(2777), 2, anon_sym_true, anon_sym_false, - STATE(2676), 4, + STATE(2395), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [128366] = 6, - ACTIONS(147), 1, + [136436] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3381), 1, + ACTIONS(4445), 1, + anon_sym_DOLLAR, + ACTIONS(4719), 1, anon_sym_LPAREN, - STATE(2800), 1, + ACTIONS(4721), 1, + anon_sym_DASH, + ACTIONS(4723), 1, + anon_sym_not, + STATE(2344), 1, + sym__var, + STATE(3032), 1, sym_comment, - ACTIONS(1192), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(546), 2, + ACTIONS(4725), 2, + anon_sym_true, + anon_sym_false, + STATE(2787), 4, + sym_expr_unary, sym_expr_parenthesized, - sym_val_number, - ACTIONS(4665), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [128392] = 6, - ACTIONS(147), 1, + sym_val_bool, + sym_val_variable, + [136468] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - STATE(2801), 1, + STATE(3033), 1, sym_comment, - ACTIONS(2575), 2, + ACTIONS(85), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(1226), 2, + STATE(2786), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2577), 6, + ACTIONS(87), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [128418] = 11, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4653), 1, - anon_sym_DOLLAR, - ACTIONS(4655), 1, - anon_sym_LBRACE, - STATE(1928), 1, - sym__var, - STATE(2797), 1, - sym__flag, - STATE(2802), 1, - sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(1156), 2, - sym__blosure, - sym_val_variable, - STATE(2199), 2, - sym_block, - sym_val_closure, - [128454] = 11, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4567), 1, - anon_sym_DOLLAR, - ACTIONS(4569), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym__var, - STATE(2803), 1, - sym_comment, - STATE(2944), 1, - sym__flag, - STATE(3130), 1, - sym_long_flag, - STATE(428), 2, - sym__blosure, - sym_val_variable, - STATE(733), 2, - sym_block, - sym_val_closure, - [128490] = 12, - ACTIONS(147), 1, + [136494] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4667), 1, + ACTIONS(4727), 1, anon_sym_RBRACE, - STATE(57), 1, + STATE(61), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2804), 1, + STATE(3034), 1, sym_comment, - STATE(2838), 1, + STATE(3092), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [128528] = 4, - ACTIONS(147), 1, + [136532] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4711), 1, + anon_sym_DOLLAR, + ACTIONS(4713), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym__var, + STATE(3035), 1, + sym_comment, + STATE(3052), 1, + sym__flag, + STATE(3310), 1, + sym_long_flag, + STATE(1302), 2, + sym__blosure, + sym_val_variable, + STATE(2303), 2, + sym_block, + sym_val_closure, + [136568] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4671), 1, + ACTIONS(4729), 1, anon_sym_DASH, - STATE(2805), 1, + STATE(3036), 1, sym_comment, - ACTIONS(4669), 10, + ACTIONS(3607), 10, anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [128550] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3437), 1, - anon_sym_LPAREN, - STATE(2806), 1, - sym_comment, - ACTIONS(3439), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(2005), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3441), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [128576] = 4, - ACTIONS(147), 1, + [136590] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4675), 1, + ACTIONS(4733), 1, anon_sym_DASH, - STATE(2807), 1, + STATE(3037), 1, sym_comment, - ACTIONS(4673), 10, + ACTIONS(4731), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -242347,309 +257536,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [128598] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - anon_sym_LPAREN, - STATE(2808), 1, - sym_comment, - ACTIONS(998), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(307), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(4677), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [128624] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3173), 1, - anon_sym_not, - ACTIONS(4437), 1, - anon_sym_DOLLAR, - ACTIONS(4637), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_DASH, - STATE(2115), 1, - sym__var, - STATE(2809), 1, - sym_comment, - ACTIONS(3175), 2, - anon_sym_true, - anon_sym_false, - STATE(2451), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [128656] = 12, - ACTIONS(147), 1, + [136612] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4681), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - STATE(85), 1, + STATE(46), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2810), 1, + STATE(3038), 1, sym_comment, - STATE(2895), 1, + STATE(3062), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [128694] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3205), 1, - anon_sym_not, - ACTIONS(3450), 1, - anon_sym_LPAREN, - ACTIONS(4683), 1, - anon_sym_DOLLAR, - ACTIONS(4685), 1, - anon_sym_DASH, - STATE(1977), 1, - sym__var, - STATE(2811), 1, - sym_comment, - ACTIONS(3207), 2, - anon_sym_true, - anon_sym_false, - STATE(2354), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [128726] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(2812), 1, - sym_comment, - ACTIONS(812), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(198), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(4687), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [128752] = 11, - ACTIONS(147), 1, + [136650] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4653), 1, + ACTIONS(4697), 1, anon_sym_DOLLAR, - ACTIONS(4655), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(1928), 1, + STATE(2038), 1, sym__var, - STATE(2802), 1, + STATE(3023), 1, sym__flag, - STATE(2813), 1, + STATE(3039), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(1148), 2, + STATE(1215), 2, sym__blosure, sym_val_variable, - STATE(2199), 2, + STATE(2251), 2, sym_block, sym_val_closure, - [128788] = 12, - ACTIONS(147), 1, + [136686] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4689), 1, - anon_sym_RBRACE, - STATE(87), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2814), 1, + ACTIONS(4519), 1, + anon_sym_DASH, + STATE(3040), 1, sym_comment, - STATE(2883), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [128826] = 9, - ACTIONS(147), 1, + ACTIONS(3591), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [136708] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3239), 1, - anon_sym_not, - ACTIONS(4691), 1, + ACTIONS(3257), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, + ACTIONS(4737), 1, anon_sym_DOLLAR, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_DASH, - STATE(1969), 1, + ACTIONS(4741), 1, + anon_sym_not, + STATE(153), 1, sym__var, - STATE(2815), 1, + STATE(3041), 1, sym_comment, - ACTIONS(3245), 2, + ACTIONS(4743), 2, anon_sym_true, anon_sym_false, - STATE(2360), 4, + STATE(314), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [128858] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3524), 1, - anon_sym_LPAREN, - STATE(2816), 1, - sym_comment, - ACTIONS(2896), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(2670), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2898), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [128884] = 12, - ACTIONS(147), 1, + [136740] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4697), 1, + ACTIONS(4745), 1, anon_sym_RBRACE, - STATE(97), 1, + STATE(82), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2817), 1, + STATE(3042), 1, sym_comment, - STATE(2875), 1, + STATE(3087), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [128922] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3299), 1, - anon_sym_not, - ACTIONS(4699), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_DOLLAR, - ACTIONS(4703), 1, - anon_sym_DASH, - STATE(1935), 1, - sym__var, - STATE(2818), 1, - sym_comment, - ACTIONS(3305), 2, - anon_sym_true, - anon_sym_false, - STATE(2177), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [128954] = 6, - ACTIONS(147), 1, + [136778] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3450), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - STATE(2819), 1, + STATE(3043), 1, sym_comment, - ACTIONS(3452), 2, + ACTIONS(3456), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2308), 2, + STATE(1874), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3454), 6, + ACTIONS(4747), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [128980] = 6, - ACTIONS(147), 1, + [136804] = 11, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN, - STATE(2820), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym__var, + STATE(3044), 1, sym_comment, - ACTIONS(2569), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1150), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2571), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [129006] = 4, - ACTIONS(147), 1, + STATE(3182), 1, + sym__flag, + STATE(3310), 1, + sym_long_flag, + STATE(476), 2, + sym__blosure, + sym_val_variable, + STATE(781), 2, + sym_block, + sym_val_closure, + [136840] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4753), 1, anon_sym_DASH, - STATE(2821), 1, + STATE(3045), 1, + sym_comment, + STATE(3089), 1, + sym_param_value, + ACTIONS(4749), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [136868] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4431), 1, + anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4753), 1, + anon_sym_DASH, + STATE(3046), 1, + sym_comment, + STATE(3089), 1, + sym_param_type, + ACTIONS(4749), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [136896] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4757), 1, + anon_sym_DASH, + STATE(3047), 1, sym_comment, - ACTIONS(4705), 10, + ACTIONS(4755), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -242660,179 +257759,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129028] = 12, - ACTIONS(147), 1, + [136918] = 12, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(195), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4709), 1, + ACTIONS(4759), 1, anon_sym_RBRACE, - STATE(98), 1, + STATE(100), 1, sym_parameter_pipes, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2822), 1, + STATE(3048), 1, sym_comment, - STATE(2843), 1, + STATE(3071), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129066] = 9, - ACTIONS(147), 1, + [136956] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3269), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3437), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(4711), 1, + ACTIONS(4761), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(4763), 1, anon_sym_DASH, - STATE(1882), 1, + STATE(2004), 1, sym__var, - STATE(2823), 1, + STATE(3049), 1, sym_comment, - ACTIONS(3277), 2, + ACTIONS(3437), 2, anon_sym_true, anon_sym_false, - STATE(1995), 4, + STATE(2106), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [129098] = 12, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4715), 1, - anon_sym_RBRACE, - STATE(56), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2824), 1, - sym_comment, - STATE(2851), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [129136] = 6, - ACTIONS(147), 1, + [136988] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4691), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - STATE(2825), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2761), 2, + ACTIONS(3441), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2246), 2, + STATE(2201), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3247), 6, + ACTIONS(3443), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [129162] = 12, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4717), 1, - anon_sym_RBRACE, - STATE(69), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2826), 1, - sym_comment, - STATE(2839), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [129200] = 12, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(195), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4719), 1, - anon_sym_RBRACE, - STATE(42), 1, - sym_parameter_pipes, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2827), 1, - sym_comment, - STATE(2884), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [129238] = 6, - ACTIONS(147), 1, + [137014] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4699), 1, + ACTIONS(4545), 1, anon_sym_LPAREN, - STATE(2828), 1, + STATE(3051), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(2689), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2208), 2, + STATE(2447), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3307), 6, + ACTIONS(3181), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [129264] = 3, - ACTIONS(147), 1, + [137040] = 11, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2829), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4711), 1, + anon_sym_DOLLAR, + ACTIONS(4713), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym__var, + STATE(3052), 1, + sym_comment, + STATE(3219), 1, + sym__flag, + STATE(3310), 1, + sym_long_flag, + STATE(1290), 2, + sym__blosure, + sym_val_variable, + STATE(2303), 2, + sym_block, + sym_val_closure, + [137076] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3053), 1, sym_comment, - ACTIONS(1957), 10, + ACTIONS(1991), 10, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -242843,14 +257889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [129283] = 4, - ACTIONS(147), 1, + [137095] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(4767), 1, anon_sym_DASH, - STATE(2830), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1957), 9, + ACTIONS(4765), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -242860,14 +257906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129304] = 4, - ACTIONS(147), 1, + [137116] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4723), 1, + ACTIONS(1989), 1, anon_sym_DASH, - STATE(2831), 1, + STATE(3055), 1, sym_comment, - ACTIONS(4721), 9, + ACTIONS(1991), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -242877,14 +257923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129325] = 4, - ACTIONS(147), 1, + [137137] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4727), 1, + ACTIONS(1993), 1, anon_sym_DASH, - STATE(2832), 1, + STATE(3056), 1, sym_comment, - ACTIONS(4725), 9, + ACTIONS(1995), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -242894,12 +257940,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129346] = 3, - ACTIONS(147), 1, + [137158] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(2833), 1, + STATE(3057), 1, + sym_comment, + ACTIONS(3591), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [137177] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3058), 1, sym_comment, - ACTIONS(1953), 10, + ACTIONS(1995), 10, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -242910,14 +257972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [129365] = 4, - ACTIONS(147), 1, + [137196] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(4771), 1, anon_sym_DASH, - STATE(2834), 1, + STATE(3059), 1, sym_comment, - ACTIONS(1953), 9, + ACTIONS(4769), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -242927,206 +257989,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129386] = 8, - ACTIONS(3), 1, + [137217] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(856), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(2835), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4773), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3060), 1, sym_comment, - STATE(2886), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(854), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3083), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137249] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4775), 1, anon_sym_RBRACE, - [129414] = 10, - ACTIONS(147), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3061), 1, + sym_comment, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137281] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4729), 1, - sym_cmd_identifier, - ACTIONS(4731), 1, - anon_sym_RBRACK, - ACTIONS(4733), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - STATE(2833), 1, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4777), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3062), 1, + sym_comment, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, sym_val_string, - STATE(2836), 1, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137313] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4779), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3063), 1, sym_comment, - STATE(2892), 1, - aux_sym_command_list_repeat1, - STATE(3066), 1, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137345] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4781), 1, + anon_sym_RBRACE, + STATE(1167), 1, sym__str_double_quotes, - STATE(3082), 1, - sym__command_name, - ACTIONS(4735), 2, + STATE(3064), 1, + sym_comment, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129446] = 11, - ACTIONS(147), 1, + [137377] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4783), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3065), 1, + sym_comment, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137409] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(2276), 1, + STATE(2479), 1, sym__var, - STATE(2837), 1, + STATE(3066), 1, sym_comment, - STATE(3085), 1, - sym__flag, - STATE(3091), 1, - sym__variable_name, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(3205), 1, + STATE(3452), 1, + sym__variable_name, + STATE(3489), 1, + sym__flag, + STATE(3511), 1, sym_val_variable, - [129480] = 10, - ACTIONS(147), 1, + [137443] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4739), 1, + ACTIONS(4787), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2838), 1, + STATE(3067), 1, sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129512] = 10, - ACTIONS(147), 1, + [137475] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4741), 1, + ACTIONS(4789), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2839), 1, + STATE(3068), 1, sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129544] = 8, - ACTIONS(3), 1, + [137507] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(860), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(2840), 1, + ACTIONS(4791), 1, + sym_cmd_identifier, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(4795), 1, + anon_sym_DQUOTE, + STATE(3053), 1, + sym_val_string, + STATE(3069), 1, sym_comment, - STATE(2882), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [129572] = 5, - ACTIONS(147), 1, + STATE(3084), 1, + aux_sym_command_list_repeat1, + STATE(3269), 1, + sym__str_double_quotes, + STATE(3279), 1, + sym__command_name, + ACTIONS(4797), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137539] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4745), 1, - anon_sym_COMMA, - ACTIONS(4747), 1, - anon_sym_DASH, - STATE(2841), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4799), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3070), 1, sym_comment, - ACTIONS(4743), 7, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137571] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [129594] = 10, - ACTIONS(147), 1, + ACTIONS(4801), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3071), 1, + sym_comment, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137603] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4729), 1, - sym_cmd_identifier, - ACTIONS(4733), 1, + ACTIONS(4803), 1, + sym_identifier, + ACTIONS(4806), 1, + anon_sym_RBRACE, + ACTIONS(4808), 1, anon_sym_DQUOTE, - ACTIONS(4749), 1, - anon_sym_RBRACK, - STATE(2833), 1, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, sym_val_string, - STATE(2842), 1, + ACTIONS(4811), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3072), 2, sym_comment, - STATE(2892), 1, - aux_sym_command_list_repeat1, - STATE(3066), 1, + aux_sym_val_record_repeat1, + [137633] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_RBRACE, + STATE(1167), 1, sym__str_double_quotes, - STATE(3082), 1, - sym__command_name, - ACTIONS(4735), 2, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3073), 1, + sym_comment, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129626] = 10, - ACTIONS(147), 1, + [137665] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4751), 1, + ACTIONS(4816), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2843), 1, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3074), 1, sym_comment, - STATE(2881), 1, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137697] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4818), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3075), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137729] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4791), 1, + sym_cmd_identifier, + ACTIONS(4795), 1, + anon_sym_DQUOTE, + ACTIONS(4820), 1, + anon_sym_RBRACK, + STATE(3053), 1, sym_val_string, - ACTIONS(2944), 2, + STATE(3076), 1, + sym_comment, + STATE(3081), 1, + aux_sym_command_list_repeat1, + STATE(3269), 1, + sym__str_double_quotes, + STATE(3279), 1, + sym__command_name, + ACTIONS(4797), 2, sym__str_single_quotes, sym__str_back_ticks, - [129658] = 5, - ACTIONS(147), 1, + [137761] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4755), 1, + ACTIONS(4824), 1, anon_sym_COMMA, - ACTIONS(4757), 1, + ACTIONS(4826), 1, anon_sym_DASH, - STATE(2844), 1, + STATE(3077), 1, sym_comment, - ACTIONS(4753), 7, + ACTIONS(4822), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -243134,16 +258380,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129680] = 5, - ACTIONS(147), 1, + [137783] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4757), 1, - anon_sym_DASH, - ACTIONS(4759), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4828), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3061), 1, + aux_sym_val_record_repeat1, + STATE(3078), 1, + sym_comment, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137815] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4832), 1, anon_sym_COMMA, - STATE(2845), 1, + ACTIONS(4834), 1, + anon_sym_DASH, + STATE(3079), 1, sym_comment, - ACTIONS(4753), 7, + ACTIONS(4830), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -243151,16 +258419,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129702] = 5, - ACTIONS(147), 1, + [137837] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4763), 1, - anon_sym_COMMA, - ACTIONS(4765), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4836), 1, + anon_sym_RBRACE, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3072), 1, + aux_sym_val_record_repeat1, + STATE(3080), 1, + sym_comment, + STATE(3388), 1, + sym_record_entry, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137869] = 10, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4791), 1, + sym_cmd_identifier, + ACTIONS(4795), 1, + anon_sym_DQUOTE, + ACTIONS(4838), 1, + anon_sym_RBRACK, + STATE(3053), 1, + sym_val_string, + STATE(3081), 1, + sym_comment, + STATE(3084), 1, + aux_sym_command_list_repeat1, + STATE(3269), 1, + sym__str_double_quotes, + STATE(3279), 1, + sym__command_name, + ACTIONS(4797), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137901] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4834), 1, anon_sym_DASH, - STATE(2846), 1, + ACTIONS(4840), 1, + anon_sym_COMMA, + STATE(3082), 1, sym_comment, - ACTIONS(4761), 7, + ACTIONS(4830), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -243168,1041 +258480,869 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129724] = 10, - ACTIONS(147), 1, + [137923] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4767), 1, + ACTIONS(4842), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2847), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3083), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, + sym_val_string, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137955] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4844), 1, + sym_cmd_identifier, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(4849), 1, + anon_sym_DQUOTE, + STATE(3053), 1, sym_val_string, - ACTIONS(2944), 2, + STATE(3269), 1, + sym__str_double_quotes, + STATE(3279), 1, + sym__command_name, + ACTIONS(4852), 2, sym__str_single_quotes, sym__str_back_ticks, - [129756] = 10, - ACTIONS(147), 1, + STATE(3084), 2, + sym_comment, + aux_sym_command_list_repeat1, + [137985] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4769), 1, + ACTIONS(4855), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2848), 1, - sym_comment, - STATE(2891), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3085), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129788] = 10, - ACTIONS(147), 1, + [138017] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - ACTIONS(4733), 1, + ACTIONS(4795), 1, anon_sym_DQUOTE, - ACTIONS(4771), 1, + ACTIONS(4857), 1, anon_sym_RBRACK, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2842), 1, + STATE(3069), 1, aux_sym_command_list_repeat1, - STATE(2849), 1, + STATE(3086), 1, sym_comment, - STATE(3066), 1, + STATE(3269), 1, sym__str_double_quotes, - STATE(3082), 1, + STATE(3279), 1, sym__command_name, - ACTIONS(4735), 2, + ACTIONS(4797), 2, sym__str_single_quotes, sym__str_back_ticks, - [129820] = 11, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(2276), 1, - sym__var, - STATE(2850), 1, - sym_comment, - STATE(3111), 1, - sym__flag, - STATE(3113), 1, - sym__variable_name, - STATE(3130), 1, - sym_long_flag, - STATE(3205), 1, - sym_val_variable, - [129854] = 10, - ACTIONS(147), 1, + [138049] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4773), 1, + ACTIONS(4859), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2851), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3087), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129886] = 10, - ACTIONS(147), 1, + [138081] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(820), 1, + sym_short_flag, + ACTIONS(863), 1, + anon_sym_LF, + ACTIONS(4861), 1, + anon_sym_DASH_DASH, + STATE(798), 1, + sym_long_flag, + STATE(872), 1, + sym__flag, + STATE(3088), 1, + sym_comment, + ACTIONS(861), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [138109] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(4867), 1, + anon_sym_DASH, + STATE(3089), 1, + sym_comment, + ACTIONS(4863), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [138131] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4775), 1, + ACTIONS(4869), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2852), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3090), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129918] = 10, - ACTIONS(147), 1, + [138163] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4777), 1, + ACTIONS(4871), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2853), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3091), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129950] = 10, - ACTIONS(147), 1, + [138195] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4779), 1, + ACTIONS(4873), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2854), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3092), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [129982] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(2621), 1, - anon_sym_DASH_DASH, - ACTIONS(2623), 1, - sym_short_flag, - STATE(2855), 1, - sym_comment, - STATE(2872), 1, - sym__flag, - STATE(2993), 1, - sym_long_flag, - ACTIONS(850), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [130010] = 8, + [138227] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(1507), 1, + ACTIONS(1534), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(771), 1, + STATE(863), 1, sym__flag, - STATE(2856), 1, + STATE(3093), 1, sym_comment, - ACTIONS(1505), 4, + ACTIONS(1532), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130038] = 8, + [138255] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1499), 1, + ACTIONS(1530), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2856), 1, + STATE(3093), 1, sym__flag, - STATE(2857), 1, + STATE(3094), 1, sym_comment, - STATE(2993), 1, + STATE(3218), 1, sym_long_flag, - ACTIONS(1497), 4, + ACTIONS(1528), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130066] = 8, + [138283] = 11, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(2479), 1, + sym__var, + STATE(3095), 1, + sym_comment, + STATE(3310), 1, + sym_long_flag, + STATE(3400), 1, + sym__flag, + STATE(3405), 1, + sym__variable_name, + STATE(3511), 1, + sym_val_variable, + [138317] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(1499), 1, + ACTIONS(1530), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(773), 1, + STATE(864), 1, sym__flag, - STATE(2858), 1, + STATE(3096), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(1528), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130094] = 10, - ACTIONS(147), 1, + [138345] = 10, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4875), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2859), 1, - sym_comment, - STATE(2881), 1, + STATE(3072), 1, aux_sym_val_record_repeat1, - STATE(3086), 1, + STATE(3097), 1, + sym_comment, + STATE(3388), 1, sym_record_entry, - STATE(3838), 1, + STATE(4052), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [130126] = 8, + [138377] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1518), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2857), 1, + STATE(3094), 1, sym__flag, - STATE(2860), 1, + STATE(3098), 1, sym_comment, - STATE(2993), 1, + STATE(3218), 1, sym_long_flag, - ACTIONS(1493), 4, + ACTIONS(1516), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130154] = 8, + [138405] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(856), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2858), 1, - sym__flag, - STATE(2861), 1, + STATE(3099), 1, sym_comment, - STATE(2993), 1, + STATE(3101), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(1493), 4, + ACTIONS(854), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130182] = 8, + [138433] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, - sym_short_flag, - ACTIONS(1495), 1, + ACTIONS(1518), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - STATE(707), 1, - sym_long_flag, - STATE(776), 1, + ACTIONS(2645), 1, + sym_short_flag, + STATE(3096), 1, sym__flag, - STATE(2862), 1, + STATE(3100), 1, sym_comment, - ACTIONS(1493), 4, + STATE(3218), 1, + sym_long_flag, + ACTIONS(1516), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130210] = 8, + [138461] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(822), 1, + ACTIONS(836), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2861), 1, - sym__flag, - STATE(2863), 1, + STATE(3101), 1, sym_comment, - STATE(2993), 1, + STATE(3103), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(820), 4, + ACTIONS(834), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130238] = 8, + [138489] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(822), 1, + ACTIONS(836), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2862), 1, - sym__flag, - STATE(2864), 1, + STATE(3102), 1, sym_comment, - STATE(2993), 1, + STATE(3104), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(820), 4, + ACTIONS(834), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130266] = 8, + [138517] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(822), 1, + ACTIONS(844), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(780), 1, + STATE(898), 1, sym__flag, - STATE(2865), 1, + STATE(3103), 1, sym_comment, - ACTIONS(820), 4, + ACTIONS(842), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130294] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4785), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2866), 1, - sym_comment, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130326] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4787), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2867), 1, - sym_comment, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130358] = 8, + [138545] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(826), 1, + ACTIONS(844), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2864), 1, - sym__flag, - STATE(2868), 1, + STATE(3104), 1, sym_comment, - STATE(2993), 1, + STATE(3106), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(824), 4, + ACTIONS(842), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130386] = 8, + [138573] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(826), 1, + ACTIONS(844), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2865), 1, - sym__flag, - STATE(2869), 1, + STATE(3105), 1, sym_comment, - STATE(2993), 1, + STATE(3107), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(824), 4, + ACTIONS(842), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130414] = 8, + [138601] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(826), 1, + ACTIONS(852), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(785), 1, + STATE(893), 1, sym__flag, - STATE(2870), 1, + STATE(3106), 1, sym_comment, - ACTIONS(824), 4, + ACTIONS(850), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130442] = 8, + [138629] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(834), 1, + ACTIONS(852), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2869), 1, - sym__flag, - STATE(2871), 1, + STATE(3107), 1, sym_comment, - STATE(2993), 1, + STATE(3109), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(832), 4, + ACTIONS(850), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130470] = 8, + [138657] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(834), 1, + ACTIONS(852), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2870), 1, - sym__flag, - STATE(2872), 1, + STATE(3108), 1, sym_comment, - STATE(2993), 1, + STATE(3110), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(832), 4, + ACTIONS(850), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130498] = 8, + [138685] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(834), 1, + ACTIONS(824), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(791), 1, + STATE(882), 1, sym__flag, - STATE(2873), 1, + STATE(3109), 1, sym_comment, - ACTIONS(832), 4, + ACTIONS(822), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130526] = 10, - ACTIONS(147), 1, + [138713] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4789), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2874), 1, + ACTIONS(824), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(3088), 1, + sym__flag, + STATE(3110), 1, sym_comment, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130558] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4791), 1, + STATE(3218), 1, + sym_long_flag, + ACTIONS(822), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2875), 1, - sym_comment, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130590] = 8, + [138741] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(852), 1, + ACTIONS(824), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2873), 1, - sym__flag, - STATE(2876), 1, + STATE(3111), 1, sym_comment, - STATE(2993), 1, + STATE(3114), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(850), 4, + ACTIONS(822), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130618] = 8, + [138769] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(852), 1, + ACTIONS(1518), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(800), 1, + STATE(865), 1, sym__flag, - STATE(2877), 1, + STATE(3112), 1, sym_comment, - ACTIONS(850), 4, + ACTIONS(1516), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130646] = 8, + [138797] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(840), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2876), 1, + STATE(3100), 1, sym__flag, - STATE(2878), 1, + STATE(3113), 1, sym_comment, - STATE(2993), 1, + STATE(3218), 1, sym_long_flag, - ACTIONS(828), 4, + ACTIONS(838), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130674] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4793), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2879), 1, - sym_comment, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130706] = 8, + [138825] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(863), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2877), 1, - sym__flag, - STATE(2880), 1, + STATE(3114), 1, sym_comment, - STATE(2993), 1, + STATE(3116), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(828), 4, + ACTIONS(861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130734] = 9, - ACTIONS(147), 1, + [138853] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4795), 1, - sym_identifier, - ACTIONS(4798), 1, - anon_sym_RBRACE, - ACTIONS(4800), 1, - anon_sym_DQUOTE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(4803), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2881), 2, + ACTIONS(863), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(3115), 1, sym_comment, - aux_sym_val_record_repeat1, - [130764] = 8, + STATE(3117), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(861), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [138881] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, - sym_short_flag, - ACTIONS(830), 1, + ACTIONS(790), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(820), 1, + sym_short_flag, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(807), 1, + STATE(870), 1, sym__flag, - STATE(2882), 1, + STATE(3116), 1, sym_comment, - ACTIONS(828), 4, + ACTIONS(788), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130792] = 10, - ACTIONS(147), 1, + [138909] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4806), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2883), 1, + ACTIONS(790), 1, + anon_sym_LF, + ACTIONS(2643), 1, + anon_sym_DASH_DASH, + ACTIONS(2645), 1, + sym_short_flag, + STATE(3117), 1, sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130824] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4808), 1, + STATE(3119), 1, + sym__flag, + STATE(3218), 1, + sym_long_flag, + ACTIONS(788), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2884), 1, - sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130856] = 8, + [138937] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(790), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2880), 1, - sym__flag, - STATE(2885), 1, + STATE(3118), 1, sym_comment, - STATE(2993), 1, + STATE(3120), 1, + sym__flag, + STATE(3218), 1, sym_long_flag, - ACTIONS(858), 4, + ACTIONS(788), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130884] = 8, + [138965] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(804), 1, + ACTIONS(820), 1, sym_short_flag, - ACTIONS(860), 1, + ACTIONS(840), 1, anon_sym_LF, - ACTIONS(4781), 1, + ACTIONS(4861), 1, anon_sym_DASH_DASH, - STATE(707), 1, + STATE(798), 1, sym_long_flag, - STATE(816), 1, + STATE(866), 1, sym__flag, - STATE(2886), 1, + STATE(3119), 1, sym_comment, - ACTIONS(858), 4, + ACTIONS(838), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130912] = 8, + [138993] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(856), 1, + ACTIONS(840), 1, anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2643), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2645), 1, sym_short_flag, - STATE(2840), 1, + STATE(3112), 1, sym__flag, - STATE(2887), 1, + STATE(3120), 1, sym_comment, - STATE(2993), 1, + STATE(3218), 1, sym_long_flag, - ACTIONS(854), 4, + ACTIONS(838), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [130940] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4810), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2888), 1, - sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130972] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4812), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2889), 1, - sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [131004] = 10, - ACTIONS(147), 1, + [139021] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4729), 1, - sym_cmd_identifier, - ACTIONS(4733), 1, - anon_sym_DQUOTE, - ACTIONS(4814), 1, - anon_sym_RBRACK, - STATE(2833), 1, - sym_val_string, - STATE(2836), 1, - aux_sym_command_list_repeat1, - STATE(2890), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + STATE(3121), 1, sym_comment, - STATE(3066), 1, - sym__str_double_quotes, - STATE(3082), 1, - sym__command_name, - ACTIONS(4735), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [131036] = 10, - ACTIONS(147), 1, + STATE(3135), 1, + sym__flag, + STATE(3260), 1, + sym_long_flag, + ACTIONS(838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(840), 2, + ts_builtin_sym_end, + anon_sym_LF, + [139048] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4877), 1, sym_identifier, - ACTIONS(4816), 1, - anon_sym_RBRACE, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2891), 1, - sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, - sym_val_string, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [131068] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4818), 1, - sym_cmd_identifier, - ACTIONS(4821), 1, - anon_sym_RBRACK, - ACTIONS(4823), 1, - anon_sym_DQUOTE, - STATE(2833), 1, - sym_val_string, - STATE(3066), 1, - sym__str_double_quotes, - STATE(3082), 1, - sym__command_name, - ACTIONS(4826), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2892), 2, - sym_comment, - aux_sym_command_list_repeat1, - [131098] = 10, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(4879), 1, + anon_sym_GT, + ACTIONS(4881), 1, anon_sym_DQUOTE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4829), 1, - anon_sym_RBRACE, - STATE(1080), 1, + STATE(2941), 1, sym__str_double_quotes, - STATE(2879), 1, - aux_sym_val_record_repeat1, - STATE(2893), 1, + STATE(3122), 1, sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, + STATE(3124), 1, + aux_sym_collection_type_repeat1, + STATE(3225), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(4883), 2, sym__str_single_quotes, sym__str_back_ticks, - [131130] = 8, + [139077] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(774), 1, - anon_sym_LF, - ACTIONS(2621), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2623), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2835), 1, - sym__flag, - STATE(2894), 1, + STATE(3123), 1, sym_comment, - STATE(2993), 1, + STATE(3131), 1, + sym__flag, + STATE(3260), 1, sym_long_flag, - ACTIONS(772), 4, + ACTIONS(1516), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [131158] = 10, - ACTIONS(147), 1, + ACTIONS(1518), 2, + ts_builtin_sym_end, + anon_sym_LF, + [139104] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4553), 1, + ACTIONS(4877), 1, sym_identifier, - ACTIONS(4831), 1, - anon_sym_RBRACE, - STATE(1080), 1, + ACTIONS(4881), 1, + anon_sym_DQUOTE, + ACTIONS(4885), 1, + anon_sym_GT, + STATE(2941), 1, sym__str_double_quotes, - STATE(2881), 1, - aux_sym_val_record_repeat1, - STATE(2895), 1, + STATE(3124), 1, sym_comment, - STATE(3086), 1, - sym_record_entry, - STATE(3838), 1, + STATE(3157), 1, + aux_sym_collection_type_repeat1, + STATE(3225), 1, sym_val_string, - ACTIONS(2944), 2, + ACTIONS(4883), 2, sym__str_single_quotes, sym__str_back_ticks, - [131190] = 4, - ACTIONS(147), 1, + [139133] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4765), 1, + ACTIONS(4889), 1, anon_sym_DASH, - STATE(2896), 1, + STATE(3125), 1, sym_comment, - ACTIONS(4761), 7, + ACTIONS(4887), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244210,33 +259350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131209] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(893), 1, - sym_short_flag, - ACTIONS(4833), 1, - anon_sym_DASH_DASH, - STATE(731), 1, - sym_long_flag, - STATE(896), 1, - sym__flag, - STATE(2897), 1, - sym_comment, - ACTIONS(832), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(834), 2, - ts_builtin_sym_end, - anon_sym_LF, - [131236] = 4, - ACTIONS(147), 1, + [139152] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4837), 1, + ACTIONS(4889), 1, anon_sym_DASH, - STATE(2898), 1, + STATE(3126), 1, sym_comment, - ACTIONS(4835), 7, + ACTIONS(4887), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244244,33 +259365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131255] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(2899), 1, - sym_comment, - STATE(2912), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1495), 2, - ts_builtin_sym_end, - anon_sym_LF, - [131282] = 4, - ACTIONS(147), 1, + [139171] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4841), 1, + ACTIONS(4893), 1, anon_sym_DASH, - STATE(2900), 1, + STATE(3127), 1, sym_comment, - ACTIONS(4839), 7, + ACTIONS(4891), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244278,29 +259380,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131301] = 4, - ACTIONS(147), 1, + [139190] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4837), 1, - anon_sym_DASH, - STATE(2901), 1, + ACTIONS(1555), 1, + anon_sym_LF, + ACTIONS(4895), 1, + aux_sym_long_flag_token1, + STATE(3128), 1, sym_comment, - ACTIONS(4835), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(1553), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131320] = 4, - ACTIONS(147), 1, + anon_sym_RBRACE, + sym_short_flag, + [139211] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(4867), 1, anon_sym_DASH, - STATE(2902), 1, + STATE(3129), 1, sym_comment, - ACTIONS(4547), 7, + ACTIONS(4863), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244308,220 +259411,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131339] = 8, + [139230] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(895), 1, sym_short_flag, - STATE(2903), 1, + ACTIONS(4897), 1, + anon_sym_DASH_DASH, + STATE(844), 1, + sym_long_flag, + STATE(1007), 1, + sym__flag, + STATE(3130), 1, sym_comment, - STATE(2916), 1, + ACTIONS(1532), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1534), 2, + ts_builtin_sym_end, + anon_sym_LF, + [139257] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + STATE(3130), 1, sym__flag, - STATE(3028), 1, + STATE(3131), 1, + sym_comment, + STATE(3260), 1, sym_long_flag, - ACTIONS(1493), 2, + ACTIONS(1528), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1495), 2, + ACTIONS(1530), 2, ts_builtin_sym_end, anon_sym_LF, - [131366] = 8, + [139284] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(895), 1, sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - STATE(731), 1, + STATE(844), 1, sym_long_flag, - STATE(882), 1, + STATE(934), 1, sym__flag, - STATE(2904), 1, + STATE(3132), 1, sym_comment, - ACTIONS(1493), 2, + ACTIONS(1528), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1495), 2, + ACTIONS(1530), 2, ts_builtin_sym_end, anon_sym_LF, - [131393] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4843), 1, - sym_identifier, - ACTIONS(4846), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - sym__str_double_quotes, - STATE(2964), 1, - sym_val_string, - ACTIONS(4851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2905), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [131420] = 8, + [139311] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2903), 1, - sym__flag, - STATE(2906), 1, + STATE(3133), 1, sym_comment, - STATE(3028), 1, + STATE(3165), 1, + sym__flag, + STATE(3260), 1, sym_long_flag, - ACTIONS(820), 2, + ACTIONS(854), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(822), 2, + ACTIONS(856), 2, ts_builtin_sym_end, anon_sym_LF, - [131447] = 8, + [139338] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2904), 1, + STATE(3132), 1, sym__flag, - STATE(2907), 1, + STATE(3134), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(820), 2, + ACTIONS(1516), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(822), 2, + ACTIONS(1518), 2, ts_builtin_sym_end, anon_sym_LF, - [131474] = 8, + [139365] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(895), 1, sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - STATE(731), 1, + STATE(844), 1, sym_long_flag, - STATE(884), 1, + STATE(1019), 1, sym__flag, - STATE(2908), 1, + STATE(3135), 1, sym_comment, - ACTIONS(820), 2, + ACTIONS(1516), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(822), 2, + ACTIONS(1518), 2, ts_builtin_sym_end, anon_sym_LF, - [131501] = 8, + [139392] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2907), 1, + STATE(3134), 1, sym__flag, - STATE(2909), 1, + STATE(3136), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(824), 2, + ACTIONS(838), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(826), 2, + ACTIONS(840), 2, ts_builtin_sym_end, anon_sym_LF, - [131528] = 5, + [139419] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1547), 1, - anon_sym_LF, - ACTIONS(4854), 1, - aux_sym_long_flag_token1, - STATE(2910), 1, - sym_comment, - ACTIONS(1545), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + ACTIONS(895), 1, sym_short_flag, - [131549] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(2908), 1, + STATE(844), 1, + sym_long_flag, + STATE(1016), 1, sym__flag, - STATE(2911), 1, + STATE(3137), 1, sym_comment, - STATE(3028), 1, - sym_long_flag, - ACTIONS(824), 2, + ACTIONS(838), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(826), 2, + ACTIONS(840), 2, ts_builtin_sym_end, anon_sym_LF, - [131576] = 8, + [139446] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4877), 1, + sym_identifier, + ACTIONS(4881), 1, + anon_sym_DQUOTE, + ACTIONS(4899), 1, + anon_sym_GT, + STATE(2941), 1, + sym__str_double_quotes, + STATE(3138), 1, + sym_comment, + STATE(3157), 1, + aux_sym_collection_type_repeat1, + STATE(3225), 1, + sym_val_string, + ACTIONS(4883), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [139475] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2912), 1, - sym_comment, - STATE(2915), 1, + STATE(3121), 1, sym__flag, - STATE(3028), 1, + STATE(3139), 1, + sym_comment, + STATE(3260), 1, sym_long_flag, - ACTIONS(1497), 2, + ACTIONS(788), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1499), 2, + ACTIONS(790), 2, ts_builtin_sym_end, anon_sym_LF, - [131603] = 8, + [139502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2913), 1, - sym_comment, - STATE(2936), 1, + STATE(3137), 1, sym__flag, - STATE(3028), 1, + STATE(3140), 1, + sym_comment, + STATE(3260), 1, sym_long_flag, - ACTIONS(832), 2, + ACTIONS(788), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(834), 2, + ACTIONS(790), 2, ts_builtin_sym_end, anon_sym_LF, - [131630] = 4, - ACTIONS(147), 1, + [139529] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4757), 1, + ACTIONS(4877), 1, + sym_identifier, + ACTIONS(4881), 1, + anon_sym_DQUOTE, + ACTIONS(4901), 1, + anon_sym_GT, + STATE(2941), 1, + sym__str_double_quotes, + STATE(3138), 1, + aux_sym_collection_type_repeat1, + STATE(3141), 1, + sym_comment, + STATE(3225), 1, + sym_val_string, + ACTIONS(4883), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [139558] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4834), 1, anon_sym_DASH, - STATE(2914), 1, + STATE(3142), 1, sym_comment, - ACTIONS(4753), 7, + ACTIONS(4830), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244529,143 +259656,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131649] = 8, + [139577] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(895), 1, sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - STATE(731), 1, + STATE(844), 1, sym_long_flag, - STATE(878), 1, + STATE(1009), 1, sym__flag, - STATE(2915), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1505), 2, + ACTIONS(788), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1507), 2, + ACTIONS(790), 2, ts_builtin_sym_end, anon_sym_LF, - [131676] = 8, - ACTIONS(3), 1, + [139604] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(893), 1, - sym_short_flag, - ACTIONS(4833), 1, - anon_sym_DASH_DASH, - STATE(731), 1, - sym_long_flag, - STATE(881), 1, - sym__flag, - STATE(2916), 1, + ACTIONS(4834), 1, + anon_sym_DASH, + STATE(3144), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_SEMI, + ACTIONS(4830), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1499), 2, - ts_builtin_sym_end, - anon_sym_LF, - [131703] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [139623] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2913), 1, + STATE(3140), 1, sym__flag, - STATE(2917), 1, + STATE(3145), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(850), 2, + ACTIONS(861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(852), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - [131730] = 8, + [139650] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4679), 1, + anon_sym_DASH, + STATE(3146), 1, + sym_comment, + ACTIONS(4675), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [139669] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4635), 1, + anon_sym_DASH, + STATE(3147), 1, + sym_comment, + ACTIONS(4631), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [139688] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2897), 1, + STATE(3143), 1, sym__flag, - STATE(2918), 1, + STATE(3148), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(850), 2, + ACTIONS(861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(852), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - [131757] = 8, + [139715] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(895), 1, sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - STATE(731), 1, + STATE(844), 1, sym_long_flag, - STATE(901), 1, + STATE(1001), 1, sym__flag, - STATE(2919), 1, + STATE(3149), 1, sym_comment, - ACTIONS(850), 2, + ACTIONS(861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(852), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - [131784] = 8, + [139742] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2918), 1, + STATE(3148), 1, sym__flag, - STATE(2920), 1, + STATE(3150), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(828), 2, + ACTIONS(822), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(830), 2, + ACTIONS(824), 2, ts_builtin_sym_end, anon_sym_LF, - [131811] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4858), 1, - anon_sym_DASH, - STATE(2921), 1, - sym_comment, - ACTIONS(4856), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [131830] = 4, - ACTIONS(147), 1, + [139769] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4757), 1, + ACTIONS(4826), 1, anon_sym_DASH, - STATE(2922), 1, + STATE(3151), 1, sym_comment, - ACTIONS(4753), 7, + ACTIONS(4822), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244673,71 +259811,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131849] = 8, + [139788] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2919), 1, + STATE(3149), 1, sym__flag, - STATE(2923), 1, + STATE(3152), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(828), 2, + ACTIONS(822), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(830), 2, + ACTIONS(824), 2, ts_builtin_sym_end, anon_sym_LF, - [131876] = 8, + [139815] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(895), 1, sym_short_flag, - STATE(2923), 1, + ACTIONS(4897), 1, + anon_sym_DASH_DASH, + STATE(844), 1, + sym_long_flag, + STATE(992), 1, sym__flag, - STATE(2924), 1, + STATE(3153), 1, sym_comment, - STATE(3028), 1, - sym_long_flag, - ACTIONS(858), 2, + ACTIONS(822), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(860), 2, + ACTIONS(824), 2, ts_builtin_sym_end, anon_sym_LF, - [131903] = 8, - ACTIONS(3), 1, + [139842] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2777), 1, - anon_sym_DASH_DASH, - ACTIONS(2779), 1, - sym_short_flag, - STATE(2925), 1, + ACTIONS(4905), 1, + anon_sym_DASH, + STATE(3154), 1, sym_comment, - STATE(2939), 1, - sym__flag, - STATE(3028), 1, - sym_long_flag, - ACTIONS(858), 2, - anon_sym_SEMI, + ACTIONS(4903), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(860), 2, - ts_builtin_sym_end, - anon_sym_LF, - [131930] = 4, - ACTIONS(147), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [139861] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4533), 1, + ACTIONS(4753), 1, anon_sym_DASH, - STATE(2926), 1, + STATE(3155), 1, sym_comment, - ACTIONS(4529), 7, + ACTIONS(4749), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -244745,16939 +259879,17030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131949] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4860), 1, - sym_identifier, - ACTIONS(4862), 1, - anon_sym_GT, - ACTIONS(4864), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - sym__str_double_quotes, - STATE(2905), 1, - aux_sym_collection_type_repeat1, - STATE(2927), 1, - sym_comment, - STATE(2964), 1, - sym_val_string, - ACTIONS(4866), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [131978] = 8, + [139880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, - sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - STATE(731), 1, - sym_long_flag, - STATE(932), 1, + ACTIONS(2741), 1, + sym_short_flag, + STATE(3152), 1, sym__flag, - STATE(2928), 1, + STATE(3156), 1, sym_comment, - ACTIONS(858), 2, + STATE(3260), 1, + sym_long_flag, + ACTIONS(850), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(860), 2, + ACTIONS(852), 2, ts_builtin_sym_end, anon_sym_LF, - [132005] = 9, - ACTIONS(147), 1, + [139907] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4860), 1, + ACTIONS(4907), 1, sym_identifier, - ACTIONS(4864), 1, - anon_sym_DQUOTE, - ACTIONS(4868), 1, + ACTIONS(4910), 1, anon_sym_GT, - STATE(2715), 1, + ACTIONS(4912), 1, + anon_sym_DQUOTE, + STATE(2941), 1, sym__str_double_quotes, - STATE(2905), 1, - aux_sym_collection_type_repeat1, - STATE(2929), 1, - sym_comment, - STATE(2964), 1, + STATE(3225), 1, sym_val_string, - ACTIONS(4866), 2, + ACTIONS(4915), 2, sym__str_single_quotes, sym__str_back_ticks, - [132034] = 8, + STATE(3157), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [139934] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2925), 1, + STATE(3153), 1, sym__flag, - STATE(2930), 1, + STATE(3158), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(854), 2, + ACTIONS(850), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(856), 2, + ACTIONS(852), 2, ts_builtin_sym_end, anon_sym_LF, - [132061] = 8, - ACTIONS(3), 1, + [139961] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(4920), 1, + anon_sym_DASH, + STATE(3159), 1, + sym_comment, + ACTIONS(4918), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + [139980] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(895), 1, sym_short_flag, - STATE(2928), 1, + ACTIONS(4897), 1, + anon_sym_DASH_DASH, + STATE(844), 1, + sym_long_flag, + STATE(979), 1, sym__flag, - STATE(2931), 1, + STATE(3160), 1, sym_comment, - STATE(3028), 1, - sym_long_flag, - ACTIONS(854), 2, + ACTIONS(850), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(856), 2, + ACTIONS(852), 2, ts_builtin_sym_end, anon_sym_LF, - [132088] = 8, + [140007] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2931), 1, + STATE(3158), 1, sym__flag, - STATE(2932), 1, + STATE(3161), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(772), 2, + ACTIONS(842), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(774), 2, + ACTIONS(844), 2, ts_builtin_sym_end, anon_sym_LF, - [132115] = 8, + [140034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2777), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - ACTIONS(2779), 1, + ACTIONS(2741), 1, sym_short_flag, - STATE(2911), 1, + STATE(3160), 1, sym__flag, - STATE(2933), 1, + STATE(3162), 1, sym_comment, - STATE(3028), 1, + STATE(3260), 1, sym_long_flag, - ACTIONS(832), 2, + ACTIONS(842), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(834), 2, + ACTIONS(844), 2, ts_builtin_sym_end, anon_sym_LF, - [132142] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - anon_sym_DASH, - STATE(2934), 1, - sym_comment, - ACTIONS(4743), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [132161] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4651), 1, - anon_sym_DASH, - STATE(2935), 1, - sym_comment, - ACTIONS(4647), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [132180] = 8, + [140061] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(895), 1, sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(4897), 1, anon_sym_DASH_DASH, - STATE(731), 1, + STATE(844), 1, sym_long_flag, - STATE(890), 1, + STATE(955), 1, sym__flag, - STATE(2936), 1, + STATE(3163), 1, sym_comment, - ACTIONS(824), 2, + ACTIONS(842), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(826), 2, + ACTIONS(844), 2, ts_builtin_sym_end, anon_sym_LF, - [132207] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4860), 1, - sym_identifier, - ACTIONS(4864), 1, - anon_sym_DQUOTE, - ACTIONS(4870), 1, - anon_sym_GT, - STATE(2715), 1, - sym__str_double_quotes, - STATE(2927), 1, - aux_sym_collection_type_repeat1, - STATE(2937), 1, - sym_comment, - STATE(2964), 1, - sym_val_string, - ACTIONS(4866), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [132236] = 4, - ACTIONS(147), 1, + [140088] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4874), 1, - anon_sym_DASH, - STATE(2938), 1, + ACTIONS(2739), 1, + anon_sym_DASH_DASH, + ACTIONS(2741), 1, + sym_short_flag, + STATE(3162), 1, + sym__flag, + STATE(3164), 1, sym_comment, - ACTIONS(4872), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(3260), 1, + sym_long_flag, + ACTIONS(834), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [132255] = 8, + ACTIONS(836), 2, + ts_builtin_sym_end, + anon_sym_LF, + [140115] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, - sym_short_flag, - ACTIONS(4833), 1, + ACTIONS(2739), 1, anon_sym_DASH_DASH, - STATE(731), 1, - sym_long_flag, - STATE(920), 1, + ACTIONS(2741), 1, + sym_short_flag, + STATE(3163), 1, sym__flag, - STATE(2939), 1, + STATE(3165), 1, sym_comment, - ACTIONS(828), 2, + STATE(3260), 1, + sym_long_flag, + ACTIONS(834), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(830), 2, + ACTIONS(836), 2, ts_builtin_sym_end, anon_sym_LF, - [132282] = 9, - ACTIONS(147), 1, + [140142] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4860), 1, - sym_identifier, - ACTIONS(4864), 1, + ACTIONS(4922), 1, + sym_cmd_identifier, + ACTIONS(4924), 1, anon_sym_DQUOTE, - ACTIONS(4876), 1, - anon_sym_GT, - STATE(2715), 1, + STATE(860), 1, + sym_val_string, + STATE(887), 1, sym__str_double_quotes, - STATE(2929), 1, - aux_sym_collection_type_repeat1, - STATE(2940), 1, + STATE(993), 1, + sym__command_name, + STATE(3166), 1, sym_comment, - STATE(2964), 1, - sym_val_string, - ACTIONS(4866), 2, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [132311] = 8, - ACTIONS(147), 1, + [140168] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4922), 1, sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, + ACTIONS(4924), 1, + anon_sym_DQUOTE, + STATE(860), 1, sym_val_string, - STATE(2941), 1, - sym_comment, - STATE(3679), 1, + STATE(887), 1, + sym__str_double_quotes, + STATE(917), 1, sym__command_name, - ACTIONS(2944), 2, + STATE(3167), 1, + sym_comment, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [132337] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1036), 1, - sym__assignment_pattern, - STATE(2942), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3322), 1, - sym__assignment_pattern_last, - STATE(3629), 1, - sym__variable_name, - [132365] = 9, - ACTIONS(147), 1, + [140194] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1033), 1, - sym__assignment_pattern, - STATE(2943), 1, + ACTIONS(4928), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(3168), 1, sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3552), 1, - sym__assignment_pattern_last, - STATE(3613), 1, - sym__variable_name, - [132393] = 7, - ACTIONS(147), 1, + STATE(3187), 1, + aux_sym_cell_path_repeat1, + ACTIONS(754), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140216] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4567), 1, + ACTIONS(4541), 1, anon_sym_DOLLAR, - ACTIONS(4569), 1, + ACTIONS(4543), 1, anon_sym_LBRACE, - STATE(638), 1, + STATE(735), 1, sym__var, - STATE(2944), 1, + STATE(3169), 1, sym_comment, - STATE(436), 2, + STATE(480), 2, sym__blosure, sym_val_variable, - STATE(733), 2, + STATE(839), 2, sym_block, sym_val_closure, - [132417] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1043), 1, - sym__assignment_pattern, - STATE(2945), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3613), 1, - sym__variable_name, - STATE(3635), 1, - sym__assignment_pattern_last, - [132445] = 9, - ACTIONS(147), 1, + [140240] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4878), 1, - anon_sym_alias, - ACTIONS(4880), 1, - anon_sym_const, - ACTIONS(4882), 1, - anon_sym_def, - ACTIONS(4884), 1, - anon_sym_def_DASHenv, - ACTIONS(4886), 1, - anon_sym_extern, - ACTIONS(4888), 1, - anon_sym_module, - ACTIONS(4890), 1, - anon_sym_use, - STATE(2946), 1, + ACTIONS(4928), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(3168), 1, + aux_sym_cell_path_repeat1, + STATE(3170), 1, sym_comment, - [132473] = 8, - ACTIONS(147), 1, + ACTIONS(758), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140262] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, - sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - STATE(766), 1, - sym_val_string, - STATE(817), 1, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, sym__str_double_quotes, - STATE(874), 1, - sym__command_name, - STATE(2947), 1, + STATE(3053), 1, + sym_val_string, + STATE(3171), 1, sym_comment, - ACTIONS(4896), 2, + STATE(3908), 1, + sym__command_name, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132499] = 8, - ACTIONS(147), 1, + [140288] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2948), 1, + STATE(3172), 1, sym_comment, - STATE(3399), 1, + STATE(3864), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132525] = 8, - ACTIONS(147), 1, + [140314] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4922), 1, sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, + ACTIONS(4924), 1, + anon_sym_DQUOTE, + STATE(860), 1, sym_val_string, - STATE(2949), 1, - sym_comment, - STATE(3397), 1, + STATE(887), 1, + sym__str_double_quotes, + STATE(935), 1, sym__command_name, - ACTIONS(2944), 2, + STATE(3173), 1, + sym_comment, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [132551] = 8, - ACTIONS(147), 1, + [140340] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2950), 1, + STATE(3174), 1, sym_comment, - STATE(3724), 1, + STATE(3584), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132577] = 7, - ACTIONS(147), 1, + [140366] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4653), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4655), 1, - anon_sym_LBRACE, - STATE(1928), 1, - sym__var, - STATE(2951), 1, + ACTIONS(4785), 1, + sym_identifier, + STATE(1107), 1, + sym__assignment_pattern, + STATE(3175), 1, sym_comment, - STATE(1179), 2, - sym__blosure, + STATE(3320), 1, + sym__var, + STATE(3511), 1, sym_val_variable, - STATE(2199), 2, - sym_block, - sym_val_closure, - [132601] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4898), 1, - sym_cmd_identifier, - ACTIONS(4900), 1, - anon_sym_DQUOTE, - STATE(829), 1, - sym_val_string, - STATE(880), 1, - sym__str_double_quotes, - STATE(943), 1, - sym__command_name, - STATE(2952), 1, - sym_comment, - ACTIONS(4902), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [132627] = 7, - ACTIONS(147), 1, + STATE(3831), 1, + sym__variable_name, + STATE(3852), 1, + sym__assignment_pattern_last, + [140394] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4539), 1, - anon_sym_DOLLAR, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym__var, - STATE(2953), 1, + ACTIONS(4930), 1, + anon_sym_alias, + ACTIONS(4932), 1, + anon_sym_const, + ACTIONS(4934), 1, + anon_sym_def, + ACTIONS(4936), 1, + anon_sym_def_DASHenv, + ACTIONS(4938), 1, + anon_sym_extern, + ACTIONS(4940), 1, + anon_sym_module, + ACTIONS(4942), 1, + anon_sym_use, + STATE(3176), 1, sym_comment, - STATE(378), 2, - sym__blosure, - sym_val_variable, - STATE(702), 2, - sym_block, - sym_val_closure, - [132651] = 8, - ACTIONS(147), 1, + [140422] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2954), 1, + STATE(3177), 1, sym_comment, - STATE(3544), 1, - sym__command_name, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [132677] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4898), 1, - sym_cmd_identifier, - ACTIONS(4900), 1, - anon_sym_DQUOTE, - STATE(829), 1, - sym_val_string, - STATE(880), 1, - sym__str_double_quotes, - STATE(958), 1, + STATE(3990), 1, sym__command_name, - STATE(2955), 1, - sym_comment, - ACTIONS(4902), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132703] = 8, - ACTIONS(147), 1, + [140448] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2956), 1, + STATE(3178), 1, sym_comment, - STATE(3692), 1, + STATE(3987), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132729] = 8, - ACTIONS(147), 1, + [140474] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1114), 1, + sym__assignment_pattern_parenthesized, + STATE(3179), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3775), 1, + sym__assignment_pattern_parenthesized_last, + STATE(3826), 1, + sym__variable_name, + [140502] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, + ACTIONS(4922), 1, sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(4924), 1, anon_sym_DQUOTE, - STATE(766), 1, + STATE(860), 1, sym_val_string, - STATE(817), 1, + STATE(887), 1, sym__str_double_quotes, - STATE(853), 1, + STATE(939), 1, sym__command_name, - STATE(2957), 1, + STATE(3180), 1, sym_comment, - ACTIONS(4896), 2, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [132755] = 8, - ACTIONS(147), 1, + [140528] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, - sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - STATE(766), 1, - sym_val_string, - STATE(817), 1, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, sym__str_double_quotes, - STATE(852), 1, + STATE(3053), 1, + sym_val_string, + STATE(3054), 1, sym__command_name, - STATE(2958), 1, + STATE(3181), 1, sym_comment, - ACTIONS(4896), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132781] = 8, - ACTIONS(147), 1, + [140554] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym__var, + STATE(3182), 1, + sym_comment, + STATE(468), 2, + sym__blosure, + sym_val_variable, + STATE(781), 2, + sym_block, + sym_val_closure, + [140578] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2959), 1, + STATE(3183), 1, sym_comment, - STATE(3676), 1, + STATE(3769), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132807] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1031), 1, - sym__assignment_pattern_parenthesized, - STATE(2960), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3587), 1, - sym__assignment_pattern_parenthesized_last, - STATE(3591), 1, - sym__variable_name, - [132835] = 8, - ACTIONS(147), 1, + [140604] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4904), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(2715), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2831), 1, - sym__command_name, - STATE(2834), 1, + STATE(3053), 1, sym_val_string, - STATE(2961), 1, + STATE(3184), 1, sym_comment, - ACTIONS(4866), 2, + STATE(4025), 1, + sym__command_name, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132861] = 8, - ACTIONS(147), 1, + [140630] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2962), 1, + STATE(3185), 1, sym_comment, - STATE(3742), 1, + STATE(4063), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132887] = 8, - ACTIONS(147), 1, + [140656] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(4881), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4944), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(2941), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3054), 1, + sym__command_name, + STATE(3055), 1, sym_val_string, - STATE(2963), 1, + STATE(3186), 1, sym_comment, - STATE(3507), 1, - sym__command_name, - ACTIONS(2944), 2, + ACTIONS(4883), 2, sym__str_single_quotes, sym__str_back_ticks, - [132913] = 5, - ACTIONS(147), 1, + [140682] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4908), 1, - anon_sym_COLON, - ACTIONS(4910), 1, - anon_sym_COMMA, - STATE(2964), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(2256), 1, + sym_path, + STATE(3187), 2, sym_comment, - ACTIONS(4906), 5, - sym_identifier, - anon_sym_GT, + aux_sym_cell_path_repeat1, + ACTIONS(725), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140702] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4922), 1, + sym_cmd_identifier, + ACTIONS(4924), 1, anon_sym_DQUOTE, + STATE(860), 1, + sym_val_string, + STATE(887), 1, + sym__str_double_quotes, + STATE(984), 1, + sym__command_name, + STATE(3188), 1, + sym_comment, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [132933] = 8, - ACTIONS(147), 1, + [140728] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2965), 1, + STATE(3189), 1, sym_comment, - STATE(3645), 1, + STATE(3889), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [132959] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1029), 1, - sym__assignment_pattern_parenthesized, - STATE(2966), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3588), 1, - sym__assignment_pattern_parenthesized_last, - STATE(3591), 1, - sym__variable_name, - [132987] = 9, - ACTIONS(147), 1, + [140754] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1021), 1, - sym__assignment_pattern_parenthesized, - STATE(2967), 1, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3053), 1, + sym_val_string, + STATE(3190), 1, sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3591), 1, - sym__variable_name, - STATE(3592), 1, - sym__assignment_pattern_parenthesized_last, - [133015] = 8, - ACTIONS(147), 1, + STATE(3610), 1, + sym__command_name, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140780] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2968), 1, + STATE(3191), 1, sym_comment, - STATE(3822), 1, + STATE(3761), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133041] = 9, - ACTIONS(147), 1, + [140806] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4882), 1, + ACTIONS(4934), 1, anon_sym_def, - ACTIONS(4884), 1, + ACTIONS(4936), 1, anon_sym_def_DASHenv, - ACTIONS(4886), 1, + ACTIONS(4938), 1, anon_sym_extern, - ACTIONS(4888), 1, + ACTIONS(4940), 1, anon_sym_module, - ACTIONS(4890), 1, + ACTIONS(4942), 1, anon_sym_use, - ACTIONS(4912), 1, + ACTIONS(4949), 1, anon_sym_alias, - ACTIONS(4914), 1, + ACTIONS(4951), 1, anon_sym_const, - STATE(2969), 1, + STATE(3192), 1, sym_comment, - [133069] = 8, - ACTIONS(147), 1, + [140834] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2970), 1, + STATE(3193), 1, sym_comment, - STATE(3410), 1, + STATE(3949), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133095] = 7, - ACTIONS(3), 1, + [140860] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4900), 1, + ACTIONS(4953), 1, + sym_cmd_identifier, + ACTIONS(4955), 1, anon_sym_DQUOTE, - ACTIONS(4916), 1, - aux_sym_unquoted_token1, - STATE(880), 1, + STATE(963), 1, + sym_val_string, + STATE(998), 1, sym__str_double_quotes, - STATE(2971), 1, + STATE(1070), 1, + sym__command_name, + STATE(3194), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(537), 2, + [140886] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, + sym__str_double_quotes, + STATE(3053), 1, sym_val_string, - sym_unquoted, - [133119] = 9, - ACTIONS(147), 1, + STATE(3195), 1, + sym_comment, + STATE(4033), 1, + sym__command_name, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140912] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1033), 1, - sym__assignment_pattern, - STATE(2972), 1, + STATE(1121), 1, + sym__assignment_pattern_parenthesized, + STATE(3196), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3317), 1, - sym__assignment_pattern_last, - STATE(3629), 1, + STATE(3826), 1, sym__variable_name, - [133147] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DQUOTE, - ACTIONS(4918), 1, - aux_sym_unquoted_token1, - STATE(817), 1, - sym__str_double_quotes, - STATE(2973), 1, - sym_comment, - ACTIONS(4896), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(497), 2, - sym_val_string, - sym_unquoted, - [133171] = 9, - ACTIONS(147), 1, + STATE(3828), 1, + sym__assignment_pattern_parenthesized_last, + [140940] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1043), 1, + STATE(1120), 1, sym__assignment_pattern, - STATE(2974), 1, + STATE(3197), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3324), 1, + STATE(3701), 1, sym__assignment_pattern_last, - STATE(3629), 1, + STATE(3808), 1, sym__variable_name, - [133199] = 9, - ACTIONS(147), 1, + [140968] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1036), 1, + STATE(1134), 1, sym__assignment_pattern, - STATE(2975), 1, + STATE(3198), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3613), 1, - sym__variable_name, - STATE(3619), 1, + STATE(3700), 1, sym__assignment_pattern_last, - [133227] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, - sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, - sym_val_string, - STATE(2976), 1, - sym_comment, - STATE(3761), 1, - sym__command_name, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133253] = 9, - ACTIONS(147), 1, + STATE(3808), 1, + sym__variable_name, + [140996] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1054), 1, + STATE(1118), 1, sym__assignment_pattern, - STATE(2977), 1, + STATE(3199), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3601), 1, + STATE(3699), 1, sym__assignment_pattern_last, - STATE(3613), 1, + STATE(3808), 1, sym__variable_name, - [133281] = 9, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4882), 1, - anon_sym_def, - ACTIONS(4884), 1, - anon_sym_def_DASHenv, - ACTIONS(4886), 1, - anon_sym_extern, - ACTIONS(4888), 1, - anon_sym_module, - ACTIONS(4890), 1, - anon_sym_use, - ACTIONS(4920), 1, - anon_sym_alias, - ACTIONS(4922), 1, - anon_sym_const, - STATE(2978), 1, - sym_comment, - [133309] = 8, - ACTIONS(147), 1, + [141024] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2979), 1, + STATE(3200), 1, sym_comment, - STATE(3812), 1, + STATE(3619), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133335] = 8, - ACTIONS(147), 1, + [141050] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4898), 1, - sym_cmd_identifier, - ACTIONS(4900), 1, + ACTIONS(4924), 1, anon_sym_DQUOTE, - STATE(829), 1, - sym_val_string, - STATE(880), 1, + ACTIONS(4959), 1, + aux_sym_unquoted_token1, + STATE(887), 1, sym__str_double_quotes, - STATE(940), 1, - sym__command_name, - STATE(2980), 1, - sym_comment, - ACTIONS(4902), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133361] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4926), 1, - anon_sym_COLON, - ACTIONS(4928), 1, - anon_sym_COMMA, - STATE(2981), 1, + STATE(3201), 1, sym_comment, - ACTIONS(4924), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [133381] = 8, - ACTIONS(147), 1, + STATE(567), 2, + sym_val_string, + sym_unquoted, + [141074] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4898), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - ACTIONS(4900), 1, + ACTIONS(4955), 1, anon_sym_DQUOTE, - STATE(829), 1, + STATE(963), 1, sym_val_string, - STATE(880), 1, + STATE(998), 1, sym__str_double_quotes, - STATE(959), 1, + STATE(1053), 1, sym__command_name, - STATE(2982), 1, + STATE(3202), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - [133407] = 9, - ACTIONS(147), 1, + [141100] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1125), 1, + sym__assignment_pattern_parenthesized, + STATE(3203), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3807), 1, + sym__assignment_pattern_parenthesized_last, + STATE(3826), 1, + sym__variable_name, + [141128] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4961), 1, anon_sym_alias, - ACTIONS(4932), 1, + ACTIONS(4963), 1, anon_sym_const, - ACTIONS(4934), 1, + ACTIONS(4965), 1, anon_sym_def, - ACTIONS(4936), 1, + ACTIONS(4967), 1, anon_sym_def_DASHenv, - ACTIONS(4938), 1, + ACTIONS(4969), 1, anon_sym_extern, - ACTIONS(4940), 1, + ACTIONS(4971), 1, anon_sym_module, - ACTIONS(4942), 1, + ACTIONS(4973), 1, anon_sym_use, - STATE(2983), 1, - sym_comment, - [133435] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1573), 1, - anon_sym_LF, - STATE(2984), 1, + STATE(3204), 1, sym_comment, - ACTIONS(1571), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - [133453] = 8, - ACTIONS(147), 1, + [141156] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, - sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - STATE(507), 1, - sym__command_name, - STATE(766), 1, - sym_val_string, - STATE(817), 1, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, sym__str_double_quotes, - STATE(2985), 1, + STATE(3053), 1, + sym_val_string, + STATE(3205), 1, sym_comment, - ACTIONS(4896), 2, + STATE(4054), 1, + sym__command_name, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133479] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(2986), 1, - sym_comment, - STATE(3001), 1, - aux_sym_cell_path_repeat1, - ACTIONS(747), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [133501] = 7, + [141182] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4900), 1, + ACTIONS(4955), 1, anon_sym_DQUOTE, - ACTIONS(4916), 1, + ACTIONS(4975), 1, aux_sym_unquoted_token1, - STATE(880), 1, + STATE(998), 1, sym__str_double_quotes, - STATE(2987), 1, + STATE(3206), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(556), 2, + STATE(627), 2, sym_val_string, sym_unquoted, - [133525] = 8, - ACTIONS(147), 1, + [141206] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2988), 1, + STATE(3207), 1, sym_comment, - STATE(3696), 1, + STATE(4002), 1, sym__command_name, - ACTIONS(2944), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133551] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DQUOTE, - ACTIONS(4918), 1, - aux_sym_unquoted_token1, - STATE(817), 1, - sym__str_double_quotes, - STATE(2989), 1, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(505), 2, - sym_val_string, - sym_unquoted, - [133575] = 9, - ACTIONS(147), 1, + [141232] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4882), 1, + ACTIONS(4934), 1, anon_sym_def, - ACTIONS(4884), 1, + ACTIONS(4936), 1, anon_sym_def_DASHenv, - ACTIONS(4886), 1, + ACTIONS(4938), 1, anon_sym_extern, - ACTIONS(4888), 1, + ACTIONS(4940), 1, anon_sym_module, - ACTIONS(4890), 1, + ACTIONS(4942), 1, anon_sym_use, - ACTIONS(4946), 1, + ACTIONS(4977), 1, anon_sym_alias, - ACTIONS(4948), 1, + ACTIONS(4979), 1, anon_sym_const, - STATE(2990), 1, + STATE(3208), 1, sym_comment, - [133603] = 8, - ACTIONS(147), 1, + [141260] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1120), 1, + sym__assignment_pattern, + STATE(3209), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3782), 1, + sym__assignment_pattern_last, + STATE(3831), 1, + sym__variable_name, + [141288] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4922), 1, sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, + ACTIONS(4924), 1, + anon_sym_DQUOTE, + STATE(562), 1, + sym__command_name, + STATE(860), 1, sym_val_string, - STATE(2991), 1, + STATE(887), 1, + sym__str_double_quotes, + STATE(3210), 1, sym_comment, - STATE(3751), 1, - sym__command_name, - ACTIONS(2944), 2, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [133629] = 9, - ACTIONS(147), 1, + [141314] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1054), 1, + STATE(1134), 1, sym__assignment_pattern, - STATE(2992), 1, + STATE(3211), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3370), 1, + STATE(3831), 1, + sym__variable_name, + STATE(3848), 1, sym__assignment_pattern_last, - STATE(3629), 1, + [141342] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1118), 1, + sym__assignment_pattern, + STATE(3212), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3777), 1, + sym__assignment_pattern_last, + STATE(3831), 1, sym__variable_name, - [133657] = 4, - ACTIONS(3), 1, + [141370] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(2993), 1, + ACTIONS(4934), 1, + anon_sym_def, + ACTIONS(4936), 1, + anon_sym_def_DASHenv, + ACTIONS(4938), 1, + anon_sym_extern, + ACTIONS(4940), 1, + anon_sym_module, + ACTIONS(4942), 1, + anon_sym_use, + ACTIONS(4981), 1, + anon_sym_alias, + ACTIONS(4983), 1, + anon_sym_const, + STATE(3213), 1, sym_comment, - ACTIONS(1559), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - [133675] = 8, - ACTIONS(147), 1, + [141398] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2994), 1, + STATE(3214), 1, sym_comment, - STATE(3650), 1, + STATE(3923), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133701] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(2986), 1, - aux_sym_cell_path_repeat1, - STATE(2995), 1, - sym_comment, - ACTIONS(751), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [133723] = 5, + [141424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, + ACTIONS(4985), 1, aux_sym_long_flag_token1, - STATE(2996), 1, + STATE(3215), 1, sym_comment, - ACTIONS(1547), 2, + ACTIONS(1555), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1545), 4, + ACTIONS(1553), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, sym_short_flag, - [133743] = 8, - ACTIONS(147), 1, + [141444] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(2997), 1, + STATE(3216), 1, sym_comment, - STATE(3485), 1, + STATE(3534), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133769] = 8, - ACTIONS(147), 1, + [141470] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, - sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - STATE(766), 1, - sym_val_string, - STATE(817), 1, + ACTIONS(4791), 1, + sym_cmd_identifier, + STATE(1167), 1, sym__str_double_quotes, - STATE(928), 1, - sym__command_name, - STATE(2998), 1, + STATE(3053), 1, + sym_val_string, + STATE(3217), 1, sym_comment, - ACTIONS(4896), 2, + STATE(3542), 1, + sym__command_name, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133795] = 8, - ACTIONS(147), 1, + [141496] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4892), 1, - sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(1718), 1, + anon_sym_LF, + STATE(3218), 1, + sym_comment, + ACTIONS(1716), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + [141514] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4711), 1, + anon_sym_DOLLAR, + ACTIONS(4713), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym__var, + STATE(3219), 1, + sym_comment, + STATE(1284), 2, + sym__blosure, + sym_val_variable, + STATE(2303), 2, + sym_block, + sym_val_closure, + [141538] = 9, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1107), 1, + sym__assignment_pattern, + STATE(3220), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3670), 1, + sym__assignment_pattern_last, + STATE(3808), 1, + sym__variable_name, + [141566] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4924), 1, anon_sym_DQUOTE, - STATE(766), 1, - sym_val_string, - STATE(817), 1, + ACTIONS(4959), 1, + aux_sym_unquoted_token1, + STATE(887), 1, sym__str_double_quotes, - STATE(927), 1, - sym__command_name, - STATE(2999), 1, + STATE(3221), 1, sym_comment, - ACTIONS(4896), 2, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [133821] = 8, - ACTIONS(147), 1, + STATE(558), 2, + sym_val_string, + sym_unquoted, + [141590] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4898), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - ACTIONS(4900), 1, + ACTIONS(4955), 1, anon_sym_DQUOTE, - STATE(522), 1, - sym__command_name, - STATE(829), 1, + STATE(963), 1, sym_val_string, - STATE(880), 1, + STATE(998), 1, sym__str_double_quotes, - STATE(3000), 1, + STATE(1029), 1, + sym__command_name, + STATE(3222), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - [133847] = 5, - ACTIONS(147), 1, + [141616] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4952), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_path, - STATE(3001), 2, + ACTIONS(4697), 1, + anon_sym_DOLLAR, + ACTIONS(4699), 1, + anon_sym_LBRACE, + STATE(2038), 1, + sym__var, + STATE(3223), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(759), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [133867] = 8, - ACTIONS(147), 1, + STATE(1197), 2, + sym__blosure, + sym_val_variable, + STATE(2251), 2, + sym_block, + sym_val_closure, + [141640] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(3002), 1, + STATE(3224), 1, sym_comment, - STATE(3778), 1, + STATE(3993), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141666] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + anon_sym_COLON, + ACTIONS(4991), 1, + anon_sym_COMMA, + STATE(3225), 1, + sym_comment, + ACTIONS(4987), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [133893] = 8, - ACTIONS(147), 1, + [141686] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(3003), 1, + STATE(3226), 1, sym_comment, - STATE(3378), 1, + STATE(3910), 1, sym__command_name, - ACTIONS(2944), 2, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [133919] = 8, - ACTIONS(147), 1, + [141712] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, + ACTIONS(4955), 1, + anon_sym_DQUOTE, + STATE(963), 1, sym_val_string, - STATE(3004), 1, - sym_comment, - STATE(3375), 1, + STATE(998), 1, + sym__str_double_quotes, + STATE(1032), 1, sym__command_name, - ACTIONS(2944), 2, + STATE(3227), 1, + sym_comment, + ACTIONS(4957), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141738] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + anon_sym_COLON, + ACTIONS(4997), 1, + anon_sym_COMMA, + STATE(3228), 1, + sym_comment, + ACTIONS(4993), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [133945] = 8, - ACTIONS(147), 1, + [141758] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4898), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - ACTIONS(4900), 1, + ACTIONS(4955), 1, anon_sym_DQUOTE, - STATE(829), 1, + STATE(610), 1, + sym__command_name, + STATE(963), 1, sym_val_string, - STATE(880), 1, + STATE(998), 1, sym__str_double_quotes, - STATE(994), 1, - sym__command_name, - STATE(3005), 1, + STATE(3229), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - [133971] = 8, - ACTIONS(147), 1, + [141784] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4898), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - ACTIONS(4900), 1, + ACTIONS(4955), 1, anon_sym_DQUOTE, - STATE(829), 1, + STATE(963), 1, sym_val_string, - STATE(880), 1, + STATE(998), 1, sym__str_double_quotes, - STATE(988), 1, + STATE(1037), 1, sym__command_name, - STATE(3006), 1, + STATE(3230), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - [133997] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_DOLLAR, - ACTIONS(4545), 1, - anon_sym_LBRACE, - STATE(1900), 1, - sym__var, - STATE(3007), 1, - sym_comment, - STATE(1092), 2, - sym__blosure, - sym_val_variable, - STATE(2144), 2, - sym_block, - sym_val_closure, - [134021] = 8, - ACTIONS(147), 1, + [141810] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4791), 1, sym_cmd_identifier, - STATE(1080), 1, + STATE(1167), 1, sym__str_double_quotes, - STATE(2831), 1, - sym__command_name, - STATE(2833), 1, + STATE(3053), 1, sym_val_string, - STATE(3008), 1, + STATE(3231), 1, sym_comment, - ACTIONS(2944), 2, + STATE(3582), 1, + sym__command_name, + ACTIONS(2948), 2, sym__str_single_quotes, sym__str_back_ticks, - [134047] = 8, - ACTIONS(147), 1, + [141836] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, - anon_sym_DQUOTE, - ACTIONS(4729), 1, + ACTIONS(4953), 1, sym_cmd_identifier, - STATE(1080), 1, - sym__str_double_quotes, - STATE(2833), 1, + ACTIONS(4955), 1, + anon_sym_DQUOTE, + STATE(963), 1, sym_val_string, - STATE(3009), 1, - sym_comment, - STATE(3743), 1, + STATE(998), 1, + sym__str_double_quotes, + STATE(1036), 1, sym__command_name, - ACTIONS(2944), 2, + STATE(3232), 1, + sym_comment, + ACTIONS(4957), 2, sym__str_single_quotes, sym__str_back_ticks, - [134073] = 9, - ACTIONS(147), 1, + [141862] = 9, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1051), 1, + STATE(1122), 1, sym__assignment_pattern_parenthesized, - STATE(3010), 1, + STATE(3233), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3553), 1, + STATE(3809), 1, sym__assignment_pattern_parenthesized_last, - STATE(3591), 1, + STATE(3826), 1, sym__variable_name, - [134101] = 8, - ACTIONS(147), 1, + [141890] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + anon_sym_DQUOTE, + ACTIONS(4975), 1, + aux_sym_unquoted_token1, + STATE(998), 1, + sym__str_double_quotes, + STATE(3234), 1, + sym_comment, + ACTIONS(4957), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(633), 2, + sym_val_string, + sym_unquoted, + [141914] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1710), 1, + anon_sym_LF, + STATE(3235), 1, + sym_comment, + ACTIONS(1708), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + [141932] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4892), 1, + ACTIONS(4922), 1, sym_cmd_identifier, - ACTIONS(4894), 1, + ACTIONS(4924), 1, anon_sym_DQUOTE, - STATE(766), 1, + STATE(860), 1, sym_val_string, - STATE(817), 1, + STATE(887), 1, sym__str_double_quotes, - STATE(819), 1, + STATE(912), 1, sym__command_name, - STATE(3011), 1, + STATE(3236), 1, sym_comment, - ACTIONS(4896), 2, + ACTIONS(4926), 2, sym__str_single_quotes, sym__str_back_ticks, - [134127] = 7, - ACTIONS(3), 1, + [141958] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_LPAREN, - ACTIONS(4959), 1, - anon_sym_DQUOTE2, - STATE(3012), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(4999), 1, + sym_identifier, + STATE(3237), 1, sym_comment, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, - sym_expr_interpolated, - ACTIONS(4957), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [134150] = 7, + STATE(3264), 1, + aux_sym_overlay_use_repeat1, + STATE(3310), 1, + sym_long_flag, + STATE(3793), 1, + sym__flag, + [141983] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(2123), 1, anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(2125), 1, anon_sym_LF, - STATE(846), 1, + STATE(825), 1, + aux_sym__block_body_repeat1, + STATE(930), 1, sym__terminator, - STATE(3013), 1, + STATE(3238), 1, sym_comment, - STATE(3078), 1, - aux_sym__block_body_repeat1, - ACTIONS(4961), 2, + ACTIONS(5001), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [134173] = 7, + [142006] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4963), 1, + ACTIONS(5007), 1, anon_sym_DQUOTE2, - STATE(3014), 1, + STATE(3239), 1, sym_comment, - STATE(3034), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134196] = 6, + [142029] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4967), 1, + ACTIONS(5003), 1, + anon_sym_LPAREN, + ACTIONS(5009), 1, + anon_sym_DQUOTE2, + STATE(3240), 1, + sym_comment, + STATE(3244), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, + sym_expr_interpolated, + ACTIONS(5005), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [142052] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1917), 1, anon_sym_LF, - STATE(1818), 1, - aux_sym_pipe_element_repeat1, - STATE(3015), 1, + ACTIONS(5011), 1, + anon_sym_else, + STATE(3241), 1, sym_comment, - ACTIONS(4965), 3, + ACTIONS(1915), 4, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [134217] = 7, + [142071] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4970), 1, + ACTIONS(5013), 1, anon_sym_DQUOTE2, - STATE(3016), 1, + STATE(3242), 1, sym_comment, - STATE(3046), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134240] = 7, + [142094] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(5015), 1, + sym_identifier, + STATE(3243), 1, + sym_comment, + STATE(3288), 1, + aux_sym_overlay_use_repeat1, + STATE(3310), 1, + sym_long_flag, + STATE(3793), 1, + sym__flag, + [142119] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(5017), 1, anon_sym_DQUOTE2, - STATE(3017), 1, + STATE(3244), 1, sym_comment, - STATE(3046), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134263] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4976), 1, - anon_sym_COMMA, - STATE(3018), 1, - sym_comment, - ACTIONS(4974), 5, - sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [134280] = 7, + [142142] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4978), 1, + ACTIONS(5019), 1, anon_sym_DQUOTE2, - STATE(3019), 1, + STATE(3245), 1, sym_comment, - STATE(3068), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134303] = 8, - ACTIONS(147), 1, + [142165] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1125), 1, + sym__assignment_pattern_parenthesized, + STATE(3246), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3786), 1, + sym__variable_name, + [142190] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4980), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(962), 1, sym_val_record, - STATE(3020), 1, + STATE(3247), 1, sym_comment, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(3649), 1, + STATE(3888), 1, sym__flag, - [134328] = 7, + [142215] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4982), 1, + ACTIONS(5023), 1, anon_sym_DQUOTE2, - STATE(3016), 1, + STATE(3245), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3021), 1, + STATE(3248), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134351] = 6, + [142238] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_LF, - STATE(1816), 1, - aux_sym_pipe_element_repeat1, - STATE(3022), 1, + ACTIONS(5003), 1, + anon_sym_LPAREN, + ACTIONS(5025), 1, + anon_sym_DQUOTE2, + STATE(3249), 1, sym_comment, - ACTIONS(4105), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [134372] = 5, - ACTIONS(147), 1, + STATE(3252), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, + sym_expr_interpolated, + ACTIONS(5005), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [142261] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1545), 1, - sym_identifier, - ACTIONS(4987), 1, - aux_sym_long_flag_token1, - STATE(3023), 1, - sym_comment, - ACTIONS(1547), 4, + ACTIONS(4691), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [134391] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(4989), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_val_record, - STATE(3024), 1, - sym_comment, - STATE(3130), 1, - sym_long_flag, - STATE(3655), 1, - sym__flag, - [134416] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - STATE(745), 1, - aux_sym__block_body_repeat1, - STATE(846), 1, - sym__terminator, - STATE(3025), 1, + ACTIONS(4785), 1, + sym_identifier, + STATE(1122), 1, + sym__assignment_pattern_parenthesized, + STATE(3250), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [134439] = 7, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3786), 1, + sym__variable_name, + [142286] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - STATE(846), 1, - sym__terminator, - STATE(3025), 1, - aux_sym__block_body_repeat1, - STATE(3026), 1, + ACTIONS(5003), 1, + anon_sym_LPAREN, + ACTIONS(5027), 1, + anon_sym_DQUOTE2, + STATE(3239), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3251), 1, sym_comment, - ACTIONS(4993), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [134462] = 7, + STATE(3575), 1, + sym_expr_interpolated, + ACTIONS(5005), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [142309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4995), 1, + ACTIONS(5029), 1, anon_sym_DQUOTE2, - STATE(3027), 1, + STATE(3252), 1, sym_comment, - STATE(3069), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134485] = 4, + [142332] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3253), 1, sym_comment, - ACTIONS(1561), 2, + ACTIONS(1710), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1559), 4, + ACTIONS(1708), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, sym_short_flag, - [134502] = 7, + [142349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(4997), 1, + ACTIONS(5031), 1, anon_sym_DQUOTE2, - STATE(3017), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3029), 1, + STATE(3254), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134525] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1043), 1, - sym__assignment_pattern, - STATE(3030), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3602), 1, - sym__variable_name, - [134550] = 8, - ACTIONS(147), 1, + [142372] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(4999), 1, - sym_identifier, - STATE(3031), 1, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_val_record, + STATE(3255), 1, sym_comment, - STATE(3038), 1, - aux_sym_overlay_use_repeat1, - STATE(3130), 1, + STATE(3310), 1, sym_long_flag, - STATE(3584), 1, + STATE(3894), 1, sym__flag, - [134575] = 7, + [142397] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + anon_sym_COMMA, + STATE(3256), 1, + sym_comment, + ACTIONS(5035), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142414] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_COMMA, + STATE(3257), 1, + sym_comment, + ACTIONS(5039), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142431] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5001), 1, + ACTIONS(5043), 1, anon_sym_DQUOTE2, - STATE(3032), 1, - sym_comment, - STATE(3046), 1, + STATE(3242), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3258), 1, + sym_comment, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134598] = 7, + [142454] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_LPAREN, ACTIONS(5003), 1, + anon_sym_LPAREN, + ACTIONS(5045), 1, anon_sym_DQUOTE2, - STATE(3033), 1, - sym_comment, - STATE(3048), 1, + STATE(3254), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3259), 1, + sym_comment, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134621] = 7, + [142477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + STATE(3260), 1, + sym_comment, + ACTIONS(1718), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1716), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + [142494] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5049), 1, + anon_sym_COMMA, + STATE(3261), 1, + sym_comment, + ACTIONS(5047), 5, + sym_identifier, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142511] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1121), 1, + sym__assignment_pattern_parenthesized, + STATE(3262), 1, + sym_comment, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3786), 1, + sym__variable_name, + [142536] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5005), 1, + ACTIONS(5051), 1, anon_sym_DQUOTE2, - STATE(3034), 1, + STATE(3263), 1, sym_comment, - STATE(3046), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134644] = 3, - ACTIONS(147), 1, + [142559] = 8, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3035), 1, + ACTIONS(4084), 1, + anon_sym_DASH_DASH, + ACTIONS(4116), 1, + sym_short_flag, + ACTIONS(5053), 1, + sym_identifier, + STATE(3264), 1, + sym_comment, + STATE(3277), 1, + aux_sym_overlay_use_repeat1, + STATE(3310), 1, + sym_long_flag, + STATE(3793), 1, + sym__flag, + [142584] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3265), 1, + sym_comment, + ACTIONS(786), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142599] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3266), 1, sym_comment, - ACTIONS(844), 6, + ACTIONS(782), 6, sym_cmd_identifier, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [134659] = 7, + [142614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5055), 1, anon_sym_DQUOTE2, - STATE(3032), 1, + STATE(3263), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3036), 1, + STATE(3267), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134682] = 7, + [142637] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5009), 1, + ACTIONS(5057), 1, anon_sym_DQUOTE2, - STATE(3037), 1, + STATE(3268), 1, sym_comment, - STATE(3060), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134705] = 8, - ACTIONS(147), 1, + [142660] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(5011), 1, - sym_identifier, - STATE(3038), 1, + STATE(3269), 1, sym_comment, - STATE(3067), 1, - aux_sym_overlay_use_repeat1, - STATE(3130), 1, - sym_long_flag, - STATE(3584), 1, - sym__flag, - [134730] = 7, + ACTIONS(1024), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142675] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5013), 1, + ACTIONS(5059), 1, anon_sym_DQUOTE2, - STATE(3039), 1, + STATE(3270), 1, sym_comment, - STATE(3041), 1, + STATE(3273), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134753] = 8, - ACTIONS(147), 1, + [142698] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(1555), 1, + anon_sym_LF, + ACTIONS(5061), 1, + aux_sym_long_flag_token1, + STATE(3271), 1, + sym_comment, + ACTIONS(1553), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [142717] = 8, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1036), 1, - sym__assignment_pattern, - STATE(3040), 1, + STATE(1114), 1, + sym__assignment_pattern_parenthesized, + STATE(3272), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3602), 1, + STATE(3786), 1, sym__variable_name, - [134778] = 7, + [142742] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(5063), 1, anon_sym_DQUOTE2, - STATE(3041), 1, + STATE(3273), 1, sym_comment, - STATE(3046), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134801] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1033), 1, - sym__assignment_pattern, - STATE(3042), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3602), 1, - sym__variable_name, - [134826] = 8, - ACTIONS(147), 1, + [142765] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_DASH_DASH, - ACTIONS(4069), 1, - sym_short_flag, - ACTIONS(5017), 1, - sym_identifier, - STATE(3043), 1, + ACTIONS(5003), 1, + anon_sym_LPAREN, + ACTIONS(5065), 1, + anon_sym_DQUOTE2, + STATE(3268), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3274), 1, sym_comment, - STATE(3055), 1, - aux_sym_overlay_use_repeat1, - STATE(3130), 1, - sym_long_flag, - STATE(3584), 1, - sym__flag, - [134851] = 7, + STATE(3575), 1, + sym_expr_interpolated, + ACTIONS(5005), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [142788] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5067), 1, anon_sym_DQUOTE2, - STATE(3044), 1, + STATE(3275), 1, sym_comment, - STATE(3045), 1, + STATE(3281), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134874] = 7, + [142811] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5021), 1, + ACTIONS(5069), 1, anon_sym_DQUOTE2, - STATE(3045), 1, + STATE(3276), 1, sym_comment, - STATE(3046), 1, + STATE(3278), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134897] = 6, + [142834] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(5071), 1, + anon_sym_DASH_DASH, + ACTIONS(5074), 1, + sym_short_flag, + STATE(3310), 1, + sym_long_flag, + STATE(3793), 1, + sym__flag, + STATE(3277), 2, + sym_comment, + aux_sym_overlay_use_repeat1, + [142857] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5029), 1, + ACTIONS(5077), 1, anon_sym_DQUOTE2, - STATE(3320), 1, + STATE(3278), 1, + sym_comment, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(5026), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3046), 2, + [142880] = 4, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5081), 1, + anon_sym_COMMA, + STATE(3279), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [134918] = 8, - ACTIONS(147), 1, + ACTIONS(5079), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [142897] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1021), 1, - sym__assignment_pattern_parenthesized, - STATE(3047), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + STATE(930), 1, + sym__terminator, + STATE(3280), 1, sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3564), 1, - sym__variable_name, - [134943] = 7, + STATE(3301), 1, + aux_sym__block_body_repeat1, + ACTIONS(5083), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [142920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5031), 1, + ACTIONS(5085), 1, anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3048), 1, + STATE(3281), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [134966] = 8, - ACTIONS(147), 1, + [142943] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1029), 1, - sym__assignment_pattern_parenthesized, - STATE(3049), 1, + ACTIONS(1800), 1, + anon_sym_LF, + ACTIONS(5087), 1, + anon_sym_catch, + STATE(3282), 1, sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3564), 1, - sym__variable_name, - [134991] = 7, + ACTIONS(1798), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [142962] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5089), 1, anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3050), 1, + STATE(3283), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135014] = 7, + [142985] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5035), 1, + ACTIONS(5091), 1, anon_sym_DQUOTE2, - STATE(3051), 1, + STATE(3284), 1, sym_comment, - STATE(3054), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135037] = 7, + [143008] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5093), 1, anon_sym_DQUOTE2, - STATE(3052), 1, + STATE(3285), 1, sym_comment, - STATE(3076), 1, + STATE(3289), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135060] = 8, - ACTIONS(147), 1, + [143031] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(1054), 1, + STATE(1107), 1, sym__assignment_pattern, - STATE(3053), 1, + STATE(3286), 1, sym_comment, - STATE(3087), 1, + STATE(3320), 1, sym__var, - STATE(3205), 1, + STATE(3511), 1, sym_val_variable, - STATE(3602), 1, + STATE(3816), 1, sym__variable_name, - [135085] = 7, + [143056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, + ACTIONS(5095), 1, anon_sym_DQUOTE2, - STATE(3046), 1, + STATE(3283), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3054), 1, + STATE(3287), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135108] = 8, - ACTIONS(147), 1, + [143079] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4037), 1, + ACTIONS(4084), 1, anon_sym_DASH_DASH, - ACTIONS(4069), 1, + ACTIONS(4116), 1, sym_short_flag, - ACTIONS(5041), 1, + ACTIONS(5097), 1, sym_identifier, - STATE(3055), 1, - sym_comment, - STATE(3067), 1, + STATE(3277), 1, aux_sym_overlay_use_repeat1, - STATE(3130), 1, + STATE(3288), 1, + sym_comment, + STATE(3310), 1, sym_long_flag, - STATE(3584), 1, + STATE(3793), 1, sym__flag, - [135133] = 7, + [143104] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(5099), 1, anon_sym_DQUOTE2, - STATE(3050), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3056), 1, + STATE(3289), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135156] = 5, + [143127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(5103), 1, anon_sym_LF, - ACTIONS(5045), 1, - anon_sym_catch, - STATE(3057), 1, + STATE(1923), 1, + aux_sym_pipe_element_repeat1, + STATE(3290), 1, sym_comment, - ACTIONS(1862), 4, + ACTIONS(5101), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [135175] = 7, + [143148] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5047), 1, + ACTIONS(5106), 1, anon_sym_DQUOTE2, - STATE(3012), 1, + STATE(3284), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3058), 1, + STATE(3291), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135198] = 4, + [143171] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3059), 1, - sym_comment, - ACTIONS(1573), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1571), 4, - anon_sym_SEMI, + ACTIONS(1746), 1, anon_sym_PIPE, - anon_sym_DASH_DASH, - sym_short_flag, - [135215] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_LPAREN, - ACTIONS(5049), 1, - anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3060), 1, - sym_comment, - STATE(3320), 1, - sym_expr_interpolated, - ACTIONS(4957), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [135238] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1547), 1, + ACTIONS(5108), 1, anon_sym_LF, - ACTIONS(5051), 1, - aux_sym_long_flag_token1, - STATE(3061), 1, + STATE(1921), 1, + aux_sym_pipe_element_repeat1, + STATE(3292), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(4052), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [135257] = 4, - ACTIONS(147), 1, + [143192] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5055), 1, - anon_sym_COMMA, - STATE(3062), 1, - sym_comment, - ACTIONS(5053), 5, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135274] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_LPAREN, - ACTIONS(5057), 1, - anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3063), 1, + STATE(1118), 1, + sym__assignment_pattern, + STATE(3293), 1, sym_comment, STATE(3320), 1, - sym_expr_interpolated, - ACTIONS(4957), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [135297] = 7, - ACTIONS(3), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3816), 1, + sym__variable_name, + [143217] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_LPAREN, - ACTIONS(5059), 1, - anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3064), 1, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(1134), 1, + sym__assignment_pattern, + STATE(3294), 1, sym_comment, STATE(3320), 1, - sym_expr_interpolated, - ACTIONS(4957), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [135320] = 4, - ACTIONS(147), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3816), 1, + sym__variable_name, + [143242] = 8, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(3065), 1, - sym_comment, - ACTIONS(5061), 5, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135337] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3066), 1, + STATE(1120), 1, + sym__assignment_pattern, + STATE(3295), 1, sym_comment, - ACTIONS(1031), 6, - sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135352] = 7, - ACTIONS(147), 1, + STATE(3320), 1, + sym__var, + STATE(3511), 1, + sym_val_variable, + STATE(3816), 1, + sym__variable_name, + [143267] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1229), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(5065), 1, + ACTIONS(5111), 1, + aux_sym_long_flag_token1, + STATE(3296), 1, + sym_comment, + ACTIONS(1555), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(5068), 1, + anon_sym_LBRACE, sym_short_flag, - STATE(3130), 1, - sym_long_flag, - STATE(3584), 1, - sym__flag, - STATE(3067), 2, - sym_comment, - aux_sym_overlay_use_repeat1, - [135375] = 7, + [143286] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5071), 1, + ACTIONS(5113), 1, anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3068), 1, + STATE(3297), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135398] = 7, + [143309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5073), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3069), 1, + STATE(3298), 1, sym_comment, - STATE(3320), 1, + STATE(3299), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135421] = 7, + [143332] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5075), 1, + ACTIONS(5117), 1, anon_sym_DQUOTE2, - STATE(3064), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3070), 1, + STATE(3299), 1, sym_comment, - STATE(3320), 1, + STATE(3300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135444] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1854), 1, - anon_sym_LF, - ACTIONS(5077), 1, - anon_sym_else, - STATE(3071), 1, - sym_comment, - ACTIONS(1852), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [135463] = 7, + [143355] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5079), 1, + ACTIONS(5125), 1, anon_sym_DQUOTE2, - STATE(3072), 1, - sym_comment, - STATE(3073), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5122), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135486] = 7, + STATE(3300), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [143376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + STATE(825), 1, + aux_sym__block_body_repeat1, + STATE(930), 1, + sym__terminator, + STATE(3301), 1, + sym_comment, + ACTIONS(5127), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143399] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5081), 1, + ACTIONS(5129), 1, anon_sym_DQUOTE2, - STATE(3046), 1, + STATE(3297), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3073), 1, + STATE(3302), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135509] = 7, + [143422] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5083), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE2, - STATE(3074), 1, + STATE(3303), 1, sym_comment, - STATE(3075), 1, + STATE(3304), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135532] = 7, + [143445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5085), 1, + ACTIONS(5133), 1, anon_sym_DQUOTE2, - STATE(3046), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3075), 1, + STATE(3304), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135555] = 7, + [143468] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + STATE(930), 1, + sym__terminator, + STATE(3238), 1, + aux_sym__block_body_repeat1, + STATE(3305), 1, + sym_comment, + ACTIONS(5135), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143491] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5137), 1, anon_sym_DQUOTE2, - STATE(3046), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3076), 1, + STATE(3306), 1, sym_comment, - STATE(3320), 1, + STATE(3307), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135578] = 7, + [143514] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5139), 1, anon_sym_DQUOTE2, - STATE(3063), 1, + STATE(3300), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3077), 1, + STATE(3307), 1, sym_comment, - STATE(3320), 1, + STATE(3575), 1, sym_expr_interpolated, - ACTIONS(4957), 2, + ACTIONS(5005), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [135601] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - STATE(745), 1, - aux_sym__block_body_repeat1, - STATE(846), 1, - sym__terminator, - STATE(3078), 1, - sym_comment, - ACTIONS(5091), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [135624] = 3, - ACTIONS(147), 1, + [143537] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3079), 1, - sym_comment, - ACTIONS(848), 6, - sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135639] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1051), 1, - sym__assignment_pattern_parenthesized, - STATE(3080), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3564), 1, - sym__variable_name, - [135664] = 8, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(1031), 1, - sym__assignment_pattern_parenthesized, - STATE(3081), 1, - sym_comment, - STATE(3087), 1, - sym__var, - STATE(3205), 1, - sym_val_variable, - STATE(3564), 1, - sym__variable_name, - [135689] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_COMMA, - STATE(3082), 1, + ACTIONS(5145), 1, + aux_sym_path_token1, + STATE(1998), 1, + sym__str_double_quotes, + STATE(3308), 1, sym_comment, - ACTIONS(5093), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, + ACTIONS(5143), 2, sym__str_single_quotes, sym__str_back_ticks, - [135706] = 7, + [143557] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5101), 1, - anon_sym_SQUOTE, - STATE(3083), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + ACTIONS(5147), 1, + anon_sym_RPAREN, + STATE(825), 1, + aux_sym__block_body_repeat1, + STATE(930), 1, + sym__terminator, + STATE(3309), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [135728] = 7, - ACTIONS(3), 1, + [143579] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5103), 1, - anon_sym_SQUOTE, - STATE(3084), 1, + STATE(3310), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [135750] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, + ACTIONS(1718), 5, sym_identifier, - STATE(2276), 1, - sym__var, - STATE(3085), 1, - sym_comment, - STATE(3089), 1, - sym__variable_name, - STATE(3205), 1, - sym_val_variable, - [135772] = 3, - ACTIONS(147), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + [143593] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3086), 1, - sym_comment, - ACTIONS(5105), 5, + ACTIONS(5149), 1, sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135786] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1085), 1, - sym_cell_path, - STATE(2995), 1, - sym_path, - STATE(3087), 1, + STATE(3311), 1, sym_comment, - ACTIONS(731), 2, - anon_sym_EQ, - anon_sym_COLON, - [135806] = 4, + ACTIONS(5151), 4, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [143609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(5155), 1, anon_sym_LF, - STATE(3088), 1, + STATE(3312), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5153), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [135822] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_DASH_DASH, - ACTIONS(5113), 1, - anon_sym_in, - ACTIONS(5115), 1, - sym_short_flag, - STATE(3089), 1, - sym_comment, - STATE(3787), 1, - sym_long_flag, - STATE(3848), 1, - sym__flag, - [135844] = 4, + [143625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, anon_sym_LF, - STATE(3090), 1, + STATE(948), 1, + sym__terminator, + STATE(3313), 1, sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, + ACTIONS(2063), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [135860] = 7, - ACTIONS(147), 1, + [143645] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_DASH_DASH, - ACTIONS(5115), 1, - sym_short_flag, - ACTIONS(5117), 1, - anon_sym_in, - STATE(3091), 1, + STATE(3314), 1, sym_comment, - STATE(3787), 1, - sym_long_flag, - STATE(3846), 1, - sym__flag, - [135882] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5119), 1, + ACTIONS(5157), 5, sym_identifier, - STATE(3092), 1, - sym_comment, - ACTIONS(5121), 4, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [135898] = 3, - ACTIONS(147), 1, + [143659] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3093), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5163), 1, + anon_sym_SQUOTE, + STATE(3315), 1, sym_comment, - ACTIONS(5123), 5, - sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135912] = 3, - ACTIONS(147), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [143681] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3316), 1, sym_comment, - ACTIONS(5125), 5, + ACTIONS(5165), 5, sym_identifier, anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [135926] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5109), 1, - anon_sym_LF, - STATE(3095), 1, - sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [135942] = 3, - ACTIONS(147), 1, + [143695] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3317), 1, sym_comment, - ACTIONS(5127), 5, + ACTIONS(1710), 5, sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [135956] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5109), 1, - anon_sym_LF, - STATE(3097), 1, - sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [135972] = 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + [143709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(5167), 1, + ts_builtin_sym_end, + ACTIONS(5169), 1, anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(5172), 1, anon_sym_LF, - STATE(883), 1, + STATE(3800), 1, sym__terminator, - STATE(3098), 1, + STATE(3318), 2, sym_comment, - ACTIONS(5129), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [135992] = 4, - ACTIONS(3), 1, + aux_sym__block_body_repeat1, + [143729] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5109), 1, - anon_sym_LF, - STATE(3099), 1, + ACTIONS(5175), 1, + anon_sym_DQUOTE, + ACTIONS(5179), 1, + aux_sym_path_token1, + STATE(1813), 1, + sym__str_double_quotes, + STATE(3319), 1, sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [136008] = 7, - ACTIONS(3), 1, + ACTIONS(5177), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [143749] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4916), 1, - aux_sym_unquoted_token1, - ACTIONS(5131), 1, - anon_sym_DOLLAR, - STATE(754), 1, - sym__var, - STATE(979), 1, - sym_val_variable, - STATE(987), 1, - sym_unquoted, - STATE(3100), 1, + ACTIONS(4928), 1, + anon_sym_DOT, + STATE(1165), 1, + sym_cell_path, + STATE(3170), 1, + sym_path, + STATE(3320), 1, sym_comment, - [136030] = 4, - ACTIONS(3), 1, + ACTIONS(766), 2, + anon_sym_EQ, + anon_sym_COLON, + [143769] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5109), 1, - anon_sym_LF, - STATE(3101), 1, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(5183), 1, + aux_sym_path_token1, + STATE(2036), 1, + sym__str_double_quotes, + STATE(3321), 1, sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [136046] = 4, + ACTIONS(5181), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [143789] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5185), 1, + anon_sym_DQUOTE, + ACTIONS(5189), 1, + aux_sym_path_token1, + STATE(557), 1, + sym__str_double_quotes, + STATE(3322), 1, + sym_comment, + ACTIONS(5187), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [143809] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, anon_sym_LF, - STATE(3102), 1, + STATE(904), 1, + sym__terminator, + STATE(3323), 1, sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, + ACTIONS(5191), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [136062] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - aux_sym_unquoted_token1, - ACTIONS(5131), 1, - anon_sym_DOLLAR, - STATE(754), 1, - sym__var, - STATE(897), 1, - sym_unquoted, - STATE(898), 1, - sym_val_variable, - STATE(3103), 1, - sym_comment, - [136084] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5131), 1, - anon_sym_DOLLAR, - ACTIONS(5133), 1, - sym_identifier, - STATE(754), 1, - sym__var, - STATE(937), 1, - sym__variable_name, - STATE(956), 1, - sym_val_variable, - STATE(3104), 1, - sym_comment, - [136106] = 6, - ACTIONS(147), 1, + [143829] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(4928), 1, anon_sym_DOT, - STATE(1124), 1, + STATE(1180), 1, sym_cell_path, - STATE(2995), 1, + STATE(3170), 1, sym_path, - STATE(3105), 1, + STATE(3324), 1, sym_comment, - ACTIONS(735), 2, + ACTIONS(738), 2, anon_sym_LBRACK, anon_sym_RBRACK, - [136126] = 6, - ACTIONS(147), 1, + [143849] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(4928), 1, anon_sym_DOT, - STATE(1118), 1, + STATE(1185), 1, sym_cell_path, - STATE(2995), 1, + STATE(3170), 1, sym_path, - STATE(3106), 1, + STATE(3325), 1, sym_comment, - ACTIONS(755), 2, + ACTIONS(742), 2, anon_sym_LBRACK, anon_sym_RBRACK, - [136146] = 3, - ACTIONS(147), 1, + [143869] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5193), 1, + anon_sym_SQUOTE, + STATE(3326), 1, + sym_comment, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [143891] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3327), 1, + sym_comment, + ACTIONS(5195), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [143905] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3328), 1, sym_comment, - ACTIONS(5135), 5, + ACTIONS(5197), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [136160] = 4, + [143919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5139), 1, - anon_sym_LF, - STATE(3108), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5199), 1, + anon_sym_SQUOTE, + STATE(3329), 1, + sym_comment, + STATE(3331), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [143941] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5201), 1, + anon_sym_catch, + STATE(3330), 1, sym_comment, - ACTIONS(5137), 4, + ACTIONS(1798), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [136176] = 7, + ACTIONS(1800), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143959] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5141), 1, + ACTIONS(5203), 1, anon_sym_SQUOTE, - STATE(3109), 1, + STATE(3331), 1, sym_comment, - STATE(3119), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [136198] = 7, + [143981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5143), 1, + ACTIONS(5205), 1, anon_sym_SQUOTE, - STATE(3110), 1, + STATE(3326), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3332), 1, sym_comment, - STATE(3290), 1, + STATE(3815), 1, + sym_expr_interpolated, + [144003] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5207), 1, + anon_sym_SQUOTE, + STATE(3333), 1, + sym_comment, + STATE(3345), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [136220] = 7, - ACTIONS(147), 1, + [144025] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_DOLLAR, - ACTIONS(4737), 1, - sym_identifier, - STATE(2276), 1, - sym__var, - STATE(3111), 1, + ACTIONS(257), 1, + anon_sym_DQUOTE, + ACTIONS(5211), 1, + aux_sym_path_token1, + STATE(2298), 1, + sym__str_double_quotes, + STATE(3334), 1, sym_comment, - STATE(3117), 1, - sym__variable_name, - STATE(3205), 1, - sym_val_variable, - [136242] = 7, + ACTIONS(5209), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [144045] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2906), 1, + anon_sym_DQUOTE, + ACTIONS(5215), 1, + aux_sym_path_token1, + STATE(2138), 1, + sym__str_double_quotes, + STATE(3335), 1, + sym_comment, + ACTIONS(5213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [144065] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5145), 1, - ts_builtin_sym_end, - ACTIONS(5147), 1, + ACTIONS(2123), 1, anon_sym_SEMI, - ACTIONS(5149), 1, + ACTIONS(2125), 1, anon_sym_LF, - STATE(3112), 1, - sym_comment, - STATE(3115), 1, + ACTIONS(5217), 1, + anon_sym_RPAREN, + STATE(825), 1, aux_sym__block_body_repeat1, - STATE(3632), 1, + STATE(930), 1, sym__terminator, - [136264] = 7, - ACTIONS(147), 1, + STATE(3336), 1, + sym_comment, + [144087] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_DASH_DASH, - ACTIONS(5115), 1, - sym_short_flag, - ACTIONS(5151), 1, + STATE(3337), 1, + sym_comment, + ACTIONS(5219), 5, + sym_identifier, + anon_sym_nothing, anon_sym_in, - STATE(3113), 1, + anon_sym_nu, + anon_sym_env, + [144101] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3338), 1, sym_comment, - STATE(3758), 1, - sym__flag, - STATE(3787), 1, - sym_long_flag, - [136286] = 6, + ACTIONS(5221), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [144115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(5155), 1, + ACTIONS(5223), 1, + ts_builtin_sym_end, + ACTIONS(5225), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, anon_sym_LF, - STATE(1784), 1, - aux_sym_pipe_element_repeat1, - STATE(3114), 1, + STATE(3339), 1, sym_comment, - ACTIONS(5153), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [136306] = 7, + STATE(3463), 1, + aux_sym__block_body_repeat1, + STATE(3800), 1, + sym__terminator, + [144137] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3340), 1, + sym_comment, + ACTIONS(5229), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [144151] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5147), 1, + ACTIONS(5225), 1, anon_sym_SEMI, - ACTIONS(5149), 1, + ACTIONS(5227), 1, anon_sym_LF, - ACTIONS(5158), 1, + ACTIONS(5231), 1, ts_builtin_sym_end, - STATE(3115), 1, + STATE(3341), 1, sym_comment, - STATE(3183), 1, + STATE(3362), 1, aux_sym__block_body_repeat1, - STATE(3632), 1, + STATE(3800), 1, sym__terminator, - [136328] = 7, + [144173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1746), 1, anon_sym_PIPE, - ACTIONS(4105), 1, + ACTIONS(5101), 1, anon_sym_SEMI, - ACTIONS(4107), 1, - ts_builtin_sym_end, - ACTIONS(4984), 1, + ACTIONS(5103), 1, anon_sym_LF, - STATE(1816), 1, + ACTIONS(5233), 1, + ts_builtin_sym_end, + STATE(1923), 1, aux_sym_pipe_element_repeat1, - STATE(3116), 1, - sym_comment, - [136350] = 7, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_DASH_DASH, - ACTIONS(5115), 1, - sym_short_flag, - ACTIONS(5160), 1, - anon_sym_in, - STATE(3117), 1, + STATE(3342), 1, sym_comment, - STATE(3787), 1, - sym_long_flag, - STATE(3832), 1, - sym__flag, - [136372] = 6, + [144195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(5162), 1, + ACTIONS(5237), 1, anon_sym_LF, - STATE(1778), 1, - aux_sym_pipe_element_repeat1, - STATE(3118), 1, + STATE(3343), 1, sym_comment, - ACTIONS(4184), 2, + ACTIONS(5235), 4, anon_sym_SEMI, anon_sym_RPAREN, - [136392] = 7, + anon_sym_PIPE, + anon_sym_RBRACE, + [144211] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3344), 1, + sym_comment, + ACTIONS(5239), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [144225] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5165), 1, + ACTIONS(5241), 1, anon_sym_SQUOTE, - STATE(3119), 1, + STATE(3345), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [136414] = 4, + [144247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(5245), 1, anon_sym_LF, - STATE(3120), 1, + STATE(1896), 1, + aux_sym_pipe_element_repeat1, + STATE(3346), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5243), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [136430] = 6, - ACTIONS(147), 1, + [144267] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5167), 1, + ACTIONS(5248), 1, anon_sym_DQUOTE, - ACTIONS(5171), 1, + ACTIONS(5252), 1, aux_sym_path_token1, - STATE(1727), 1, + STATE(1832), 1, sym__str_double_quotes, - STATE(3121), 1, + STATE(3347), 1, sym_comment, - ACTIONS(5169), 2, + ACTIONS(5250), 2, sym__str_single_quotes, sym__str_back_ticks, - [136450] = 6, + [144287] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5254), 1, + anon_sym_SQUOTE, + STATE(3348), 1, + sym_comment, + STATE(3357), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [144309] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3349), 1, + sym_comment, + ACTIONS(5256), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [144323] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5237), 1, anon_sym_LF, - STATE(923), 1, - sym__terminator, - STATE(3122), 1, + STATE(3350), 1, sym_comment, - ACTIONS(2227), 2, + ACTIONS(5235), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [136470] = 4, + [144339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(5237), 1, anon_sym_LF, - STATE(3123), 1, + STATE(3351), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5235), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [136486] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3124), 1, - sym_comment, - ACTIONS(1573), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [136500] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2902), 1, - anon_sym_DQUOTE, - ACTIONS(5175), 1, - aux_sym_path_token1, - STATE(2066), 1, - sym__str_double_quotes, - STATE(3125), 1, - sym_comment, - ACTIONS(5173), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136520] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3126), 1, - sym_comment, - ACTIONS(5177), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [136534] = 3, - ACTIONS(147), 1, + [144355] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3127), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3352), 1, sym_comment, - ACTIONS(5179), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [136548] = 7, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(2123), 1, anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(2125), 1, anon_sym_LF, - ACTIONS(5181), 1, + ACTIONS(5258), 1, anon_sym_RPAREN, - STATE(846), 1, + STATE(930), 1, sym__terminator, - STATE(3128), 1, - sym_comment, - STATE(3191), 1, + STATE(3309), 1, aux_sym__block_body_repeat1, - [136570] = 5, + STATE(3353), 1, + sym_comment, + [144393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5183), 1, - anon_sym_catch, - STATE(3129), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3354), 1, sym_comment, - ACTIONS(1862), 2, + ACTIONS(5235), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1864), 2, - ts_builtin_sym_end, - anon_sym_LF, - [136588] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3130), 1, - sym_comment, - ACTIONS(1561), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [136602] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3131), 1, - sym_comment, - ACTIONS(5185), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [136616] = 6, - ACTIONS(147), 1, + anon_sym_RBRACE, + [144409] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5187), 1, - anon_sym_DQUOTE, - ACTIONS(5191), 1, - aux_sym_path_token1, - STATE(1807), 1, - sym__str_double_quotes, - STATE(3132), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3355), 1, sym_comment, - ACTIONS(5189), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136636] = 6, - ACTIONS(147), 1, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144425] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DQUOTE, - ACTIONS(5197), 1, - aux_sym_path_token1, - STATE(1861), 1, - sym__str_double_quotes, - STATE(3133), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3356), 1, sym_comment, - ACTIONS(5195), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136656] = 6, - ACTIONS(147), 1, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144441] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DQUOTE, - ACTIONS(5203), 1, - aux_sym_path_token1, - STATE(1892), 1, - sym__str_double_quotes, - STATE(3134), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5260), 1, + anon_sym_SQUOTE, + STATE(3357), 1, sym_comment, - ACTIONS(5201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136676] = 6, - ACTIONS(147), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [144463] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5205), 1, + ACTIONS(5262), 1, anon_sym_DQUOTE, - ACTIONS(5209), 1, + ACTIONS(5266), 1, aux_sym_path_token1, - STATE(1905), 1, + STATE(736), 1, sym__str_double_quotes, - STATE(3135), 1, + STATE(3358), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5264), 2, sym__str_single_quotes, sym__str_back_ticks, - [136696] = 4, + [144483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(5237), 1, anon_sym_LF, - STATE(3136), 1, + STATE(3359), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5235), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [136712] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3113), 1, - anon_sym_DQUOTE, - ACTIONS(5213), 1, - aux_sym_path_token1, - STATE(1077), 1, - sym__str_double_quotes, - STATE(3137), 1, - sym_comment, - ACTIONS(5211), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136732] = 6, - ACTIONS(147), 1, + [144499] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5215), 1, + ACTIONS(5268), 1, anon_sym_DQUOTE, - ACTIONS(5219), 1, + ACTIONS(5272), 1, aux_sym_path_token1, - STATE(2146), 1, + STATE(1924), 1, sym__str_double_quotes, - STATE(3138), 1, + STATE(3360), 1, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5270), 2, sym__str_single_quotes, sym__str_back_ticks, - [136752] = 6, - ACTIONS(147), 1, + [144519] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3285), 1, + ACTIONS(5274), 1, anon_sym_DQUOTE, - ACTIONS(5223), 1, + ACTIONS(5278), 1, aux_sym_path_token1, - STATE(1912), 1, + STATE(1987), 1, sym__str_double_quotes, - STATE(3139), 1, + STATE(3361), 1, sym_comment, - ACTIONS(5221), 2, + ACTIONS(5276), 2, sym__str_single_quotes, sym__str_back_ticks, - [136772] = 6, - ACTIONS(147), 1, + [144539] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_DQUOTE, + ACTIONS(5225), 1, + anon_sym_SEMI, ACTIONS(5227), 1, - aux_sym_path_token1, - STATE(1974), 1, - sym__str_double_quotes, - STATE(3140), 1, + anon_sym_LF, + ACTIONS(5280), 1, + ts_builtin_sym_end, + STATE(3318), 1, + aux_sym__block_body_repeat1, + STATE(3362), 1, sym_comment, - ACTIONS(5225), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136792] = 6, - ACTIONS(147), 1, + STATE(3800), 1, + sym__terminator, + [144561] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3249), 1, - anon_sym_DQUOTE, - ACTIONS(5231), 1, - aux_sym_path_token1, - STATE(2131), 1, - sym__str_double_quotes, - STATE(3141), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5282), 1, + anon_sym_SQUOTE, + STATE(3363), 1, sym_comment, - ACTIONS(5229), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136812] = 3, - ACTIONS(147), 1, + STATE(3367), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [144583] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3142), 1, - sym_comment, - ACTIONS(5233), 5, - sym_identifier, - anon_sym_nothing, + ACTIONS(5284), 1, + anon_sym_DASH_DASH, + ACTIONS(5286), 1, anon_sym_in, - anon_sym_nu, - anon_sym_env, - [136826] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3159), 1, - anon_sym_DQUOTE, - ACTIONS(5237), 1, - aux_sym_path_token1, - STATE(2154), 1, - sym__str_double_quotes, - STATE(3143), 1, - sym_comment, - ACTIONS(5235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136846] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3144), 1, + ACTIONS(5288), 1, + sym_short_flag, + STATE(3364), 1, sym_comment, - ACTIONS(5239), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [136860] = 6, - ACTIONS(147), 1, + STATE(3933), 1, + sym_long_flag, + STATE(4055), 1, + sym__flag, + [144605] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5290), 1, anon_sym_DQUOTE, - ACTIONS(5245), 1, + ACTIONS(5294), 1, aux_sym_path_token1, - STATE(1899), 1, + STATE(2040), 1, sym__str_double_quotes, - STATE(3145), 1, + STATE(3365), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(5292), 2, sym__str_single_quotes, sym__str_back_ticks, - [136880] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3146), 1, - sym_comment, - ACTIONS(5247), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [136894] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3147), 1, - sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [136910] = 6, - ACTIONS(147), 1, + [144625] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(3163), 1, anon_sym_DQUOTE, - ACTIONS(5257), 1, + ACTIONS(5298), 1, aux_sym_path_token1, - STATE(1942), 1, + STATE(1163), 1, sym__str_double_quotes, - STATE(3148), 1, + STATE(3366), 1, sym_comment, - ACTIONS(5255), 2, + ACTIONS(5296), 2, sym__str_single_quotes, sym__str_back_ticks, - [136930] = 4, + [144645] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3149), 1, - sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [136946] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3150), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5300), 1, + anon_sym_SQUOTE, + STATE(3367), 1, sym_comment, - ACTIONS(5121), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [136960] = 3, - ACTIONS(147), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [144667] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3368), 1, sym_comment, - ACTIONS(5259), 5, + ACTIONS(5302), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [136974] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5263), 1, - aux_sym_path_token1, - STATE(153), 1, - sym__str_double_quotes, - STATE(3152), 1, - sym_comment, - ACTIONS(5261), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136994] = 3, - ACTIONS(147), 1, + [144681] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3153), 1, - sym_comment, - ACTIONS(5265), 5, + ACTIONS(5304), 1, sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137008] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5267), 1, - anon_sym_DQUOTE, - ACTIONS(5271), 1, - aux_sym_path_token1, - STATE(1962), 1, - sym__str_double_quotes, - STATE(3154), 1, - sym_comment, - ACTIONS(5269), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [137028] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3155), 1, + ACTIONS(5306), 1, + anon_sym_DOLLAR, + STATE(824), 1, + sym__var, + STATE(1065), 1, + sym_val_variable, + STATE(1096), 1, + sym__variable_name, + STATE(3369), 1, sym_comment, - ACTIONS(5273), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137042] = 7, + [144703] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5275), 1, + ACTIONS(5308), 1, anon_sym_SQUOTE, - STATE(3156), 1, + STATE(3370), 1, sym_comment, - STATE(3168), 1, + STATE(3374), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [137064] = 6, - ACTIONS(147), 1, + [144725] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4975), 1, + aux_sym_unquoted_token1, + ACTIONS(5306), 1, + anon_sym_DOLLAR, + STATE(824), 1, + sym__var, + STATE(919), 1, + sym_val_variable, + STATE(924), 1, + sym_unquoted, + STATE(3371), 1, + sym_comment, + [144747] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4975), 1, + aux_sym_unquoted_token1, + ACTIONS(5306), 1, + anon_sym_DOLLAR, + STATE(824), 1, + sym__var, + STATE(1097), 1, + sym_unquoted, + STATE(1099), 1, + sym_val_variable, + STATE(3372), 1, + sym_comment, + [144769] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5310), 1, anon_sym_DQUOTE, - ACTIONS(5281), 1, + ACTIONS(5314), 1, aux_sym_path_token1, - STATE(482), 1, + STATE(2222), 1, sym__str_double_quotes, - STATE(3157), 1, + STATE(3373), 1, sym_comment, - ACTIONS(5279), 2, + ACTIONS(5312), 2, sym__str_single_quotes, sym__str_back_ticks, - [137084] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(745), 1, - aux_sym__block_body_repeat1, - STATE(846), 1, - sym__terminator, - STATE(3158), 1, - sym_comment, - [137106] = 4, + [144789] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3159), 1, - sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137122] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3160), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5316), 1, + anon_sym_SQUOTE, + STATE(3374), 1, sym_comment, - ACTIONS(5285), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137136] = 6, - ACTIONS(147), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [144811] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(5215), 1, aux_sym_path_token1, - STATE(2014), 1, + STATE(2138), 1, sym__str_double_quotes, - STATE(3161), 1, + STATE(3375), 1, sym_comment, - ACTIONS(5289), 2, + ACTIONS(5213), 2, sym__str_single_quotes, sym__str_back_ticks, - [137156] = 3, - ACTIONS(147), 1, + [144831] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3376), 1, sym_comment, - ACTIONS(5293), 5, + ACTIONS(5151), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [137170] = 6, - ACTIONS(147), 1, + [144845] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(3429), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(5297), 1, + ACTIONS(5320), 1, aux_sym_path_token1, - STATE(187), 1, + STATE(223), 1, sym__str_double_quotes, - STATE(3163), 1, + STATE(3377), 1, sym_comment, - ACTIONS(5295), 2, + ACTIONS(5318), 2, sym__str_single_quotes, sym__str_back_ticks, - [137190] = 7, + [144865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5299), 1, - anon_sym_SQUOTE, - STATE(3164), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3378), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [137212] = 4, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(5237), 1, anon_sym_LF, - STATE(3165), 1, + STATE(3379), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5235), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [137228] = 7, + [144897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3380), 1, + sym_comment, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144913] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3381), 1, + sym_comment, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144929] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5301), 1, + ACTIONS(5322), 1, anon_sym_SQUOTE, - STATE(3164), 1, + STATE(3382), 1, + sym_comment, + STATE(3394), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3166), 1, + STATE(3815), 1, + sym_expr_interpolated, + [144951] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5324), 1, + anon_sym_SQUOTE, + STATE(3383), 1, sym_comment, - STATE(3554), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [137250] = 3, - ACTIONS(147), 1, + [144973] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + ACTIONS(5237), 1, + anon_sym_LF, + STATE(3384), 1, + sym_comment, + ACTIONS(5235), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [144989] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3385), 1, sym_comment, - ACTIONS(5303), 5, + ACTIONS(5326), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [137264] = 7, + [145003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5305), 1, - anon_sym_SQUOTE, - STATE(3168), 1, + ACTIONS(5330), 1, + anon_sym_LF, + STATE(3386), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [137286] = 6, - ACTIONS(147), 1, + ACTIONS(5328), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [145019] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5332), 1, anon_sym_DQUOTE, - ACTIONS(5311), 1, + ACTIONS(5336), 1, aux_sym_path_token1, - STATE(2047), 1, + STATE(2012), 1, sym__str_double_quotes, - STATE(3169), 1, + STATE(3387), 1, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5334), 2, sym__str_single_quotes, sym__str_back_ticks, - [137306] = 6, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(147), 1, + [145039] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5315), 1, - aux_sym_path_token1, - STATE(2291), 1, - sym__str_double_quotes, - STATE(3170), 1, + STATE(3388), 1, sym_comment, - ACTIONS(5313), 2, + ACTIONS(5338), 5, + sym_identifier, + anon_sym_RBRACE, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [137326] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5317), 1, - anon_sym_SQUOTE, - STATE(3171), 1, - sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [137348] = 7, + [145053] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5319), 1, - anon_sym_SQUOTE, - STATE(3171), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3172), 1, + ACTIONS(5330), 1, + anon_sym_LF, + STATE(3389), 1, sym_comment, - STATE(3554), 1, - sym_expr_interpolated, - [137370] = 3, - ACTIONS(147), 1, + ACTIONS(5328), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [145069] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3173), 1, + STATE(3390), 1, sym_comment, - ACTIONS(5321), 5, + ACTIONS(5340), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [137384] = 6, - ACTIONS(147), 1, + [145083] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4894), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(5344), 1, aux_sym_path_token1, - STATE(748), 1, + STATE(2178), 1, sym__str_double_quotes, - STATE(3174), 1, + STATE(3391), 1, + sym_comment, + ACTIONS(5342), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [145103] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + anon_sym_DQUOTE, + ACTIONS(5348), 1, + aux_sym_path_token1, + STATE(879), 1, + sym__str_double_quotes, + STATE(3392), 1, + sym_comment, + ACTIONS(5346), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [145123] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3393), 1, sym_comment, - ACTIONS(5323), 2, + ACTIONS(5350), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [137404] = 7, + [145137] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5327), 1, + ACTIONS(5352), 1, anon_sym_SQUOTE, - STATE(3083), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3175), 1, + STATE(3394), 1, sym_comment, - STATE(3554), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [137426] = 3, - ACTIONS(147), 1, + [145159] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3395), 1, sym_comment, - ACTIONS(5329), 5, + ACTIONS(5354), 5, sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137440] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3225), 1, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [145173] = 6, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(5333), 1, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5358), 1, aux_sym_path_token1, - STATE(227), 1, + STATE(2432), 1, sym__str_double_quotes, - STATE(3177), 1, + STATE(3396), 1, sym_comment, - ACTIONS(5331), 2, + ACTIONS(5356), 2, sym__str_single_quotes, sym__str_back_ticks, - [137460] = 7, + [145193] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5335), 1, + ACTIONS(5360), 1, anon_sym_SQUOTE, - STATE(3178), 1, + STATE(3397), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [137482] = 7, + [145215] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5337), 1, + ACTIONS(5362), 1, anon_sym_SQUOTE, - STATE(3178), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3179), 1, + STATE(3398), 1, sym_comment, - STATE(3554), 1, + STATE(3407), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [137504] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3180), 1, - sym_comment, - ACTIONS(5339), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(5343), 1, - anon_sym_LF, - STATE(1777), 1, - aux_sym_pipe_element_repeat1, - STATE(3181), 1, - sym_comment, - ACTIONS(5341), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [137538] = 4, + [145237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3182), 1, + STATE(3399), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [137554] = 6, - ACTIONS(3), 1, + [145253] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5346), 1, - ts_builtin_sym_end, - ACTIONS(5348), 1, - anon_sym_SEMI, - ACTIONS(5351), 1, - anon_sym_LF, - STATE(3632), 1, - sym__terminator, - STATE(3183), 2, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + ACTIONS(4785), 1, + sym_identifier, + STATE(2479), 1, + sym__var, + STATE(3364), 1, + sym__variable_name, + STATE(3400), 1, sym_comment, - aux_sym__block_body_repeat1, - [137574] = 4, - ACTIONS(3), 1, + STATE(3511), 1, + sym_val_variable, + [145275] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3184), 1, + STATE(3401), 1, sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5364), 5, + sym_identifier, anon_sym_RBRACE, - [137590] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [145289] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5354), 1, - anon_sym_else, - STATE(3185), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5366), 1, + anon_sym_SQUOTE, + STATE(3397), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3402), 1, sym_comment, - ACTIONS(1852), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1854), 2, - ts_builtin_sym_end, - anon_sym_LF, - [137608] = 4, + STATE(3815), 1, + sym_expr_interpolated, + [145311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3186), 1, + STATE(3403), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [137624] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3187), 1, - sym_comment, - ACTIONS(5356), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [137638] = 4, + [145327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3188), 1, + STATE(3404), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [137654] = 3, - ACTIONS(147), 1, + [145343] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3189), 1, + ACTIONS(5284), 1, + anon_sym_DASH_DASH, + ACTIONS(5288), 1, + sym_short_flag, + ACTIONS(5368), 1, + anon_sym_in, + STATE(3405), 1, sym_comment, - ACTIONS(5358), 5, - sym_identifier, - anon_sym_GT, + STATE(3922), 1, + sym__flag, + STATE(3933), 1, + sym_long_flag, + [145365] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3183), 1, anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_path_token1, + STATE(2279), 1, + sym__str_double_quotes, + STATE(3406), 1, + sym_comment, + ACTIONS(5370), 2, sym__str_single_quotes, sym__str_back_ticks, - [137668] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3190), 1, - sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137684] = 7, + [145385] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(745), 1, - aux_sym__block_body_repeat1, - STATE(846), 1, - sym__terminator, - STATE(3191), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5374), 1, + anon_sym_SQUOTE, + STATE(3407), 1, sym_comment, - [137706] = 4, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [145407] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(5378), 1, anon_sym_LF, - STATE(3192), 1, + STATE(1901), 1, + aux_sym_pipe_element_repeat1, + STATE(3408), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5376), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137722] = 6, - ACTIONS(147), 1, + [145427] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5362), 1, + ACTIONS(4924), 1, anon_sym_DQUOTE, - ACTIONS(5366), 1, + ACTIONS(5383), 1, aux_sym_path_token1, - STATE(644), 1, + STATE(842), 1, sym__str_double_quotes, - STATE(3193), 1, + STATE(3409), 1, sym_comment, - ACTIONS(5364), 2, + ACTIONS(5381), 2, sym__str_single_quotes, sym__str_back_ticks, - [137742] = 4, + [145447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(5385), 1, anon_sym_LF, - STATE(3194), 1, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(3410), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(4302), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137758] = 3, - ACTIONS(147), 1, + [145467] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5388), 1, + anon_sym_SQUOTE, + STATE(3383), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3411), 1, sym_comment, - ACTIONS(5368), 5, + STATE(3815), 1, + sym_expr_interpolated, + [145489] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3412), 1, + sym_comment, + ACTIONS(5390), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [137772] = 7, + [145503] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5370), 1, + ACTIONS(5392), 1, anon_sym_SQUOTE, - STATE(3196), 1, + STATE(3413), 1, sym_comment, - STATE(3303), 1, + STATE(3422), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [137794] = 7, + [145525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5372), 1, - anon_sym_SQUOTE, - STATE(3196), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3197), 1, + ACTIONS(5394), 1, + aux_sym_long_flag_token1, + STATE(3414), 1, sym_comment, - STATE(3554), 1, - sym_expr_interpolated, - [137816] = 3, - ACTIONS(147), 1, + ACTIONS(1553), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1555), 2, + ts_builtin_sym_end, + anon_sym_LF, + [145543] = 7, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3198), 1, - sym_comment, - ACTIONS(5374), 5, + ACTIONS(5396), 1, sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [137830] = 6, - ACTIONS(147), 1, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + STATE(803), 1, + sym__var, + STATE(916), 1, + sym__variable_name, + STATE(996), 1, + sym_val_variable, + STATE(3415), 1, + sym_comment, + [145565] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(257), 1, - anon_sym_DQUOTE, - ACTIONS(5378), 1, - aux_sym_path_token1, - STATE(2226), 1, - sym__str_double_quotes, - STATE(3199), 1, + ACTIONS(4959), 1, + aux_sym_unquoted_token1, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + STATE(803), 1, + sym__var, + STATE(897), 1, + sym_unquoted, + STATE(899), 1, + sym_val_variable, + STATE(3416), 1, sym_comment, - ACTIONS(5376), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [137850] = 7, + [145587] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5380), 1, - anon_sym_SQUOTE, - STATE(3200), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + ACTIONS(5400), 1, + anon_sym_RPAREN, + STATE(930), 1, + sym__terminator, + STATE(3336), 1, + aux_sym__block_body_repeat1, + STATE(3417), 1, sym_comment, - STATE(3209), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [137872] = 7, + [145609] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5382), 1, - anon_sym_SQUOTE, - STATE(3201), 1, + ACTIONS(4959), 1, + aux_sym_unquoted_token1, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + STATE(803), 1, + sym__var, + STATE(925), 1, + sym_unquoted, + STATE(926), 1, + sym_val_variable, + STATE(3418), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [137894] = 7, + [145631] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5384), 1, + ACTIONS(5402), 1, anon_sym_SQUOTE, - STATE(3201), 1, + STATE(3315), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3202), 1, + STATE(3419), 1, sym_comment, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [137916] = 3, - ACTIONS(147), 1, + [145653] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3420), 1, sym_comment, - ACTIONS(5386), 5, + ACTIONS(5404), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [137930] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3204), 1, - sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137946] = 3, - ACTIONS(147), 1, + [145667] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3421), 1, sym_comment, - ACTIONS(2149), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, + ACTIONS(5406), 5, + sym_identifier, + anon_sym_nothing, anon_sym_in, - sym_short_flag, - [137960] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3206), 1, - sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3207), 1, - sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [137992] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, - anon_sym_LF, - ACTIONS(5392), 1, - anon_sym_RPAREN, - STATE(846), 1, - sym__terminator, - STATE(3158), 1, - aux_sym__block_body_repeat1, - STATE(3208), 1, - sym_comment, - [138014] = 7, + anon_sym_nu, + anon_sym_env, + [145681] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5394), 1, + ACTIONS(5408), 1, anon_sym_SQUOTE, - STATE(3209), 1, + STATE(3422), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [138036] = 6, - ACTIONS(147), 1, + [145703] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2701), 1, - anon_sym_DQUOTE, - ACTIONS(5175), 1, - aux_sym_path_token1, - STATE(2066), 1, - sym__str_double_quotes, - STATE(3210), 1, + STATE(3423), 1, sym_comment, - ACTIONS(5173), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [138056] = 6, - ACTIONS(147), 1, + ACTIONS(5410), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [145717] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2942), 1, + ACTIONS(5412), 1, anon_sym_DQUOTE, - ACTIONS(5398), 1, + ACTIONS(5416), 1, aux_sym_path_token1, - STATE(1066), 1, + STATE(2217), 1, sym__str_double_quotes, - STATE(3211), 1, + STATE(3424), 1, sym_comment, - ACTIONS(5396), 2, + ACTIONS(5414), 2, sym__str_single_quotes, sym__str_back_ticks, - [138076] = 6, - ACTIONS(147), 1, + [145737] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_DQUOTE, - ACTIONS(5404), 1, - aux_sym_path_token1, - STATE(1713), 1, - sym__str_double_quotes, - STATE(3212), 1, + ACTIONS(5330), 1, + anon_sym_LF, + STATE(3425), 1, sym_comment, - ACTIONS(5402), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [138096] = 7, + ACTIONS(5328), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [145753] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5406), 1, + ACTIONS(5418), 1, anon_sym_SQUOTE, - STATE(3213), 1, + STATE(3426), 1, sym_comment, - STATE(3303), 1, + STATE(3435), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [138118] = 4, - ACTIONS(3), 1, + [145775] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3214), 1, + STATE(3427), 1, sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138134] = 7, + ACTIONS(5420), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [145789] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3428), 1, + sym_comment, + ACTIONS(2285), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + sym_short_flag, + [145803] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_SQUOTE, - STATE(3213), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3215), 1, + STATE(3429), 1, sym_comment, - STATE(3554), 1, + STATE(3432), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [138156] = 3, - ACTIONS(147), 1, + [145825] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3216), 1, + STATE(3430), 1, sym_comment, - ACTIONS(5410), 5, + ACTIONS(5424), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [138170] = 4, - ACTIONS(3), 1, + [145839] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3217), 1, + ACTIONS(3361), 1, + anon_sym_DQUOTE, + ACTIONS(5428), 1, + aux_sym_path_token1, + STATE(2271), 1, + sym__str_double_quotes, + STATE(3431), 1, sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138186] = 7, + ACTIONS(5426), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [145859] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5412), 1, + ACTIONS(5430), 1, anon_sym_SQUOTE, - STATE(3218), 1, + STATE(3432), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [138208] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5147), 1, - anon_sym_SEMI, - ACTIONS(5149), 1, - anon_sym_LF, - ACTIONS(5414), 1, - ts_builtin_sym_end, - STATE(3183), 1, - aux_sym__block_body_repeat1, - STATE(3219), 1, - sym_comment, - STATE(3632), 1, - sym__terminator, - [138230] = 4, + [145881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3220), 1, + STATE(3433), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138246] = 4, + [145897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3221), 1, + STATE(3434), 1, sym_comment, - ACTIONS(5388), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138262] = 4, + [145913] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LF, - STATE(3222), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5432), 1, + anon_sym_SQUOTE, + STATE(3435), 1, sym_comment, - ACTIONS(5249), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138278] = 4, - ACTIONS(3), 1, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, + sym_expr_interpolated, + [145935] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3223), 1, + ACTIONS(5434), 1, + anon_sym_DQUOTE, + ACTIONS(5438), 1, + aux_sym_path_token1, + STATE(2013), 1, + sym__str_double_quotes, + STATE(3436), 1, sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138294] = 4, + ACTIONS(5436), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [145955] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(5442), 1, + aux_sym_path_token1, + STATE(1156), 1, + sym__str_double_quotes, + STATE(3437), 1, + sym_comment, + ACTIONS(5440), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [145975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3224), 1, + STATE(3438), 1, sym_comment, - ACTIONS(5249), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138310] = 4, + [145991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3225), 1, + STATE(3439), 1, sym_comment, - ACTIONS(5388), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138326] = 4, + [146007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3226), 1, + STATE(3440), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138342] = 4, + [146023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3227), 1, + STATE(3441), 1, sym_comment, - ACTIONS(5388), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138358] = 4, + [146039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5330), 1, anon_sym_LF, - STATE(3228), 1, + STATE(3442), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5328), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138374] = 4, + [146055] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3279), 1, + anon_sym_DQUOTE, + ACTIONS(5446), 1, + aux_sym_path_token1, + STATE(178), 1, + sym__str_double_quotes, + STATE(3443), 1, + sym_comment, + ACTIONS(5444), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [146075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3229), 1, + ACTIONS(5448), 1, + anon_sym_else, + STATE(3444), 1, sym_comment, - ACTIONS(5388), 4, + ACTIONS(1915), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [138390] = 4, + ACTIONS(1917), 2, + ts_builtin_sym_end, + anon_sym_LF, + [146093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3230), 1, + STATE(3445), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138406] = 7, - ACTIONS(3), 1, + [146109] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4918), 1, - aux_sym_unquoted_token1, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - STATE(721), 1, - sym__var, - STATE(837), 1, - sym_val_variable, - STATE(858), 1, - sym_unquoted, - STATE(3231), 1, - sym_comment, - [138428] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3232), 1, + STATE(3446), 1, sym_comment, - ACTIONS(5422), 5, + ACTIONS(5454), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [138442] = 5, - ACTIONS(3), 1, + [146123] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5424), 1, - aux_sym_long_flag_token1, - STATE(3233), 1, + ACTIONS(3327), 1, + anon_sym_DQUOTE, + ACTIONS(5458), 1, + aux_sym_path_token1, + STATE(298), 1, + sym__str_double_quotes, + STATE(3447), 1, sym_comment, - ACTIONS(1545), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1547), 2, - ts_builtin_sym_end, - anon_sym_LF, - [138460] = 4, - ACTIONS(3), 1, + ACTIONS(5456), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [146143] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5109), 1, - anon_sym_LF, - STATE(3234), 1, + ACTIONS(5460), 1, + anon_sym_DQUOTE, + ACTIONS(5464), 1, + aux_sym_path_token1, + STATE(2171), 1, + sym__str_double_quotes, + STATE(3448), 1, sym_comment, - ACTIONS(5107), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138476] = 4, - ACTIONS(3), 1, + ACTIONS(5462), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [146163] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(3235), 1, + STATE(3449), 1, sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138492] = 6, - ACTIONS(147), 1, + ACTIONS(5466), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [146177] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5468), 1, anon_sym_DQUOTE, - ACTIONS(5430), 1, + ACTIONS(5472), 1, aux_sym_path_token1, - STATE(504), 1, + STATE(545), 1, sym__str_double_quotes, - STATE(3236), 1, + STATE(3450), 1, sym_comment, - ACTIONS(5428), 2, + ACTIONS(5470), 2, sym__str_single_quotes, sym__str_back_ticks, - [138512] = 7, + [146197] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5432), 1, + ACTIONS(5474), 1, anon_sym_SQUOTE, - STATE(3237), 1, + STATE(3451), 1, sym_comment, - STATE(3246), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [138534] = 7, + [146219] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_DASH_DASH, + ACTIONS(5288), 1, + sym_short_flag, + ACTIONS(5476), 1, + anon_sym_in, + STATE(3452), 1, + sym_comment, + STATE(3933), 1, + sym_long_flag, + STATE(4071), 1, + sym__flag, + [146241] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3453), 1, + sym_comment, + ACTIONS(5478), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [146255] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5434), 1, + ACTIONS(5480), 1, anon_sym_SQUOTE, - STATE(3238), 1, - sym_comment, - STATE(3303), 1, + STATE(3451), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3454), 1, + sym_comment, + STATE(3815), 1, sym_expr_interpolated, - [138556] = 7, + [146277] = 7, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5284), 1, + anon_sym_DASH_DASH, + ACTIONS(5288), 1, + sym_short_flag, + ACTIONS(5482), 1, + anon_sym_in, + STATE(3455), 1, + sym_comment, + STATE(3933), 1, + sym_long_flag, + STATE(4073), 1, + sym__flag, + [146299] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5484), 1, + anon_sym_DQUOTE, + ACTIONS(5488), 1, + aux_sym_path_token1, + STATE(2057), 1, + sym__str_double_quotes, + STATE(3456), 1, + sym_comment, + ACTIONS(5486), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [146319] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3457), 1, + sym_comment, + ACTIONS(5490), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [146333] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5436), 1, + ACTIONS(5492), 1, anon_sym_SQUOTE, - STATE(3238), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3239), 1, + STATE(3458), 1, sym_comment, - STATE(3554), 1, + STATE(3464), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [138578] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - anon_sym_LF, - STATE(3240), 1, - sym_comment, - ACTIONS(5416), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138594] = 3, - ACTIONS(147), 1, + [146355] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3241), 1, + STATE(3459), 1, sym_comment, - ACTIONS(5438), 5, + ACTIONS(5494), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [138608] = 4, + [146369] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, + anon_sym_SEMI, + ACTIONS(4054), 1, + ts_builtin_sym_end, + ACTIONS(5108), 1, anon_sym_LF, - STATE(3242), 1, + STATE(1921), 1, + aux_sym_pipe_element_repeat1, + STATE(3460), 1, sym_comment, - ACTIONS(5388), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138624] = 4, + [146391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3243), 1, + STATE(3461), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138640] = 4, + [146407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3244), 1, + STATE(3462), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138656] = 4, + [146423] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5225), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, anon_sym_LF, - STATE(3245), 1, + ACTIONS(5500), 1, + ts_builtin_sym_end, + STATE(3318), 1, + aux_sym__block_body_repeat1, + STATE(3463), 1, sym_comment, - ACTIONS(5440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138672] = 7, + STATE(3800), 1, + sym__terminator, + [146445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5444), 1, + ACTIONS(5502), 1, anon_sym_SQUOTE, - STATE(3246), 1, + STATE(3464), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [138694] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5448), 1, - anon_sym_LF, - STATE(3247), 1, - sym_comment, - ACTIONS(5446), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138710] = 6, - ACTIONS(147), 1, + [146467] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(3133), 1, anon_sym_DQUOTE, - ACTIONS(5454), 1, + ACTIONS(5506), 1, aux_sym_path_token1, - STATE(1832), 1, + STATE(159), 1, sym__str_double_quotes, - STATE(3248), 1, + STATE(3465), 1, sym_comment, - ACTIONS(5452), 2, + ACTIONS(5504), 2, sym__str_single_quotes, sym__str_back_ticks, - [138730] = 4, - ACTIONS(3), 1, + [146487] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_LF, - STATE(3249), 1, + ACTIONS(5508), 1, + anon_sym_DQUOTE, + ACTIONS(5512), 1, + aux_sym_path_token1, + STATE(1955), 1, + sym__str_double_quotes, + STATE(3466), 1, sym_comment, - ACTIONS(5440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138746] = 4, + ACTIONS(5510), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [146507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3250), 1, + STATE(3467), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138762] = 4, + [146523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3251), 1, + STATE(3468), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138778] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_DQUOTE, - ACTIONS(5458), 1, - aux_sym_path_token1, - STATE(765), 1, - sym__str_double_quotes, - STATE(3252), 1, - sym_comment, - ACTIONS(5456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [138798] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5460), 1, - anon_sym_SQUOTE, - STATE(3253), 1, - sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [138820] = 4, + [146539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3254), 1, + STATE(3469), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138836] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5462), 1, - anon_sym_SQUOTE, - STATE(3253), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3255), 1, - sym_comment, - STATE(3554), 1, - sym_expr_interpolated, - [138858] = 4, + [146555] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3256), 1, + STATE(3470), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138874] = 4, + [146571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3257), 1, + STATE(3471), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138890] = 4, + [146587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3258), 1, + STATE(3472), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138906] = 4, + [146603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3259), 1, + STATE(3473), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138922] = 4, + [146619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3260), 1, + STATE(3474), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138938] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(5464), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [138952] = 4, + [146635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3262), 1, + STATE(3475), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138968] = 4, + [146651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3263), 1, + STATE(3476), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [138984] = 4, + [146667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5498), 1, anon_sym_LF, - STATE(3264), 1, + STATE(3477), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5496), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139000] = 4, + [146683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3265), 1, + STATE(3478), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139016] = 4, + [146699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5516), 1, anon_sym_LF, - STATE(3266), 1, + STATE(3479), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5514), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139032] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5147), 1, - anon_sym_SEMI, - ACTIONS(5149), 1, - anon_sym_LF, - ACTIONS(5466), 1, - ts_builtin_sym_end, - STATE(3219), 1, - aux_sym__block_body_repeat1, - STATE(3267), 1, - sym_comment, - STATE(3632), 1, - sym__terminator, - [139054] = 4, + [146715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3268), 1, + STATE(3480), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139070] = 3, - ACTIONS(147), 1, + [146731] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3269), 1, + STATE(3481), 1, sym_comment, - ACTIONS(5468), 5, + ACTIONS(5518), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [139084] = 4, + [146745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3270), 1, + STATE(3482), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139100] = 4, + [146761] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3271), 1, + STATE(3483), 1, sym_comment, - ACTIONS(5388), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139116] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5470), 1, - anon_sym_SQUOTE, - STATE(3218), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3272), 1, - sym_comment, - STATE(3554), 1, - sym_expr_interpolated, - [139138] = 4, + [146777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3273), 1, + STATE(3484), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139154] = 7, + [146793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5472), 1, + ACTIONS(5520), 1, anon_sym_SQUOTE, - STATE(3274), 1, + STATE(3485), 1, sym_comment, - STATE(3282), 1, + STATE(3490), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [139176] = 4, + [146815] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3486), 1, + sym_comment, + ACTIONS(5522), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [146829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3275), 1, + STATE(3487), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139192] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3276), 1, - sym_comment, - ACTIONS(2145), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - sym_short_flag, - [139206] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4965), 1, - anon_sym_SEMI, - ACTIONS(4967), 1, - anon_sym_LF, - ACTIONS(5474), 1, - ts_builtin_sym_end, - STATE(1818), 1, - aux_sym_pipe_element_repeat1, - STATE(3277), 1, - sym_comment, - [139228] = 4, + [146845] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3278), 1, + STATE(3488), 1, sym_comment, - ACTIONS(5440), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139244] = 7, - ACTIONS(147), 1, + [146861] = 7, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5420), 1, + ACTIONS(4691), 1, anon_sym_DOLLAR, - ACTIONS(5476), 1, + ACTIONS(4785), 1, sym_identifier, - STATE(721), 1, + STATE(2479), 1, sym__var, - STATE(861), 1, - sym_val_variable, - STATE(865), 1, + STATE(3455), 1, sym__variable_name, - STATE(3279), 1, - sym_comment, - [139266] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - anon_sym_DQUOTE, - ACTIONS(5480), 1, - aux_sym_path_token1, - STATE(259), 1, - sym__str_double_quotes, - STATE(3280), 1, + STATE(3489), 1, sym_comment, - ACTIONS(5478), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139286] = 7, + STATE(3511), 1, + sym_val_variable, + [146883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5482), 1, + ACTIONS(5524), 1, anon_sym_SQUOTE, - STATE(3281), 1, + STATE(3490), 1, sym_comment, - STATE(3303), 1, + STATE(3491), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [139308] = 7, + [146905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5529), 1, sym_unescaped_interpolated_content, - ACTIONS(5484), 1, + ACTIONS(5532), 1, anon_sym_SQUOTE, - STATE(3282), 1, - sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, + STATE(3815), 1, sym_expr_interpolated, - [139330] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4918), 1, - aux_sym_unquoted_token1, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - STATE(721), 1, - sym__var, - STATE(810), 1, - sym_unquoted, - STATE(813), 1, - sym_val_variable, - STATE(3283), 1, + STATE(3491), 2, sym_comment, - [139352] = 6, - ACTIONS(147), 1, + aux_sym__inter_single_quotes_repeat1, + [146925] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(2701), 1, + ACTIONS(2785), 1, anon_sym_DQUOTE, - ACTIONS(5488), 1, + ACTIONS(5536), 1, aux_sym_path_token1, - STATE(2100), 1, + STATE(2247), 1, sym__str_double_quotes, - STATE(3284), 1, + STATE(3492), 1, sym_comment, - ACTIONS(5486), 2, + ACTIONS(5534), 2, sym__str_single_quotes, sym__str_back_ticks, - [139372] = 4, + [146945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3285), 1, + STATE(3493), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139388] = 4, + [146961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3286), 1, + STATE(3494), 1, sym_comment, - ACTIONS(5107), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139404] = 7, + [146977] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5490), 1, - anon_sym_SQUOTE, - STATE(3281), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3287), 1, + ACTIONS(5452), 1, + anon_sym_LF, + STATE(3495), 1, sym_comment, - STATE(3554), 1, - sym_expr_interpolated, - [139426] = 4, + ACTIONS(5450), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [146993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3288), 1, + STATE(3496), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139442] = 4, + [147009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(3289), 1, + STATE(3497), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5450), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139458] = 7, + [147025] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3498), 1, + sym_comment, + ACTIONS(5538), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [147039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - sym_unescaped_interpolated_content, - ACTIONS(5492), 1, - anon_sym_SQUOTE, - STATE(3290), 1, + ACTIONS(5542), 1, + anon_sym_LF, + STATE(3499), 1, sym_comment, - STATE(3303), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3554), 1, - sym_expr_interpolated, - [139480] = 4, + ACTIONS(5540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3291), 1, + STATE(3500), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139496] = 4, + [147071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3292), 1, + STATE(3501), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139512] = 4, + [147087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3293), 1, + STATE(3502), 1, sym_comment, - ACTIONS(5416), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139528] = 3, - ACTIONS(147), 1, + [147103] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3503), 1, sym_comment, - ACTIONS(5494), 5, + ACTIONS(5544), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [139542] = 4, + [147117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3295), 1, + STATE(3504), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139558] = 4, + [147133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3296), 1, + STATE(3505), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139574] = 7, + [147149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(5542), 1, + anon_sym_LF, + STATE(3506), 1, + sym_comment, + ACTIONS(5540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147165] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5159), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5161), 1, sym_unescaped_interpolated_content, - ACTIONS(5496), 1, + ACTIONS(5546), 1, anon_sym_SQUOTE, - STATE(3084), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3297), 1, + STATE(3507), 1, sym_comment, - STATE(3554), 1, + STATE(3512), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3815), 1, sym_expr_interpolated, - [139596] = 6, - ACTIONS(147), 1, + [147187] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5498), 1, + ACTIONS(5548), 1, anon_sym_DQUOTE, - ACTIONS(5502), 1, + ACTIONS(5552), 1, aux_sym_path_token1, - STATE(666), 1, + STATE(2082), 1, sym__str_double_quotes, - STATE(3298), 1, + STATE(3508), 1, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5550), 2, sym__str_single_quotes, sym__str_back_ticks, - [139616] = 4, + [147207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3299), 1, + STATE(3509), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139632] = 4, + [147223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3300), 1, + STATE(3510), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139648] = 4, + [147239] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3511), 1, + sym_comment, + ACTIONS(2289), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + sym_short_flag, + [147253] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, - anon_sym_LF, - STATE(3301), 1, + ACTIONS(5159), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + sym_unescaped_interpolated_content, + ACTIONS(5554), 1, + anon_sym_SQUOTE, + STATE(3491), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3512), 1, sym_comment, - ACTIONS(5446), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [139664] = 6, - ACTIONS(147), 1, + STATE(3815), 1, + sym_expr_interpolated, + [147275] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3513), 1, + sym_comment, + ACTIONS(5556), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [147289] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5504), 1, + ACTIONS(5558), 1, anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(5562), 1, aux_sym_path_token1, - STATE(1885), 1, + STATE(777), 1, sym__str_double_quotes, - STATE(3302), 1, + STATE(3514), 1, sym_comment, - ACTIONS(5506), 2, + ACTIONS(5560), 2, sym__str_single_quotes, sym__str_back_ticks, - [139684] = 6, + [147309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5510), 1, - anon_sym_LPAREN, - ACTIONS(5513), 1, - sym_unescaped_interpolated_content, - ACTIONS(5516), 1, - anon_sym_SQUOTE, - STATE(3554), 1, - sym_expr_interpolated, - STATE(3303), 2, + ACTIONS(5542), 1, + anon_sym_LF, + STATE(3515), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [139704] = 4, + ACTIONS(5540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(3304), 1, + STATE(3516), 1, sym_comment, - ACTIONS(5446), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139720] = 3, - ACTIONS(147), 1, + [147341] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + ACTIONS(5542), 1, + anon_sym_LF, + STATE(3517), 1, sym_comment, - ACTIONS(5518), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139734] = 3, - ACTIONS(147), 1, + ACTIONS(5540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147357] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3306), 1, + ACTIONS(5542), 1, + anon_sym_LF, + STATE(3518), 1, sym_comment, - ACTIONS(5520), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139748] = 4, + ACTIONS(5540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147373] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3519), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139763] = 4, + anon_sym_RBRACE, + [147389] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3520), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139778] = 6, - ACTIONS(147), 1, + anon_sym_RBRACE, + [147405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - ACTIONS(5522), 1, - anon_sym_if, - STATE(775), 1, - sym_ctrl_if, - STATE(777), 1, - sym_block, - STATE(3309), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3521), 1, sym_comment, - [139797] = 4, + ACTIONS(5514), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3522), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5109), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139812] = 6, + anon_sym_RBRACE, + [147437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4302), 1, + ACTIONS(5516), 1, anon_sym_LF, - STATE(1778), 1, - aux_sym_pipe_element_repeat1, - STATE(3311), 1, + STATE(3523), 1, sym_comment, - [139831] = 4, + ACTIONS(5514), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3524), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5109), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139846] = 6, + anon_sym_RBRACE, + [147469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(5516), 1, anon_sym_LF, - ACTIONS(5153), 1, - anon_sym_SEMI, - STATE(1784), 1, - aux_sym_pipe_element_repeat1, - STATE(3313), 1, + STATE(3525), 1, sym_comment, - [139865] = 4, + ACTIONS(5514), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3314), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3526), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5109), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139880] = 4, + anon_sym_RBRACE, + [147501] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3527), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5418), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139895] = 4, + anon_sym_RBRACE, + [147517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(5516), 1, + anon_sym_LF, + STATE(3528), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5514), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5109), 2, - ts_builtin_sym_end, + anon_sym_RBRACE, + [147533] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + STATE(3529), 1, + sym_comment, + ACTIONS(5564), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [147547] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5516), 1, anon_sym_LF, - [139910] = 4, + STATE(3530), 1, + sym_comment, + ACTIONS(5514), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [147563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, + ACTIONS(5516), 1, anon_sym_LF, - STATE(3317), 1, + STATE(3531), 1, sym_comment, - ACTIONS(5524), 3, + ACTIONS(5514), 4, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [139925] = 4, + [147579] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3318), 1, + ACTIONS(5566), 1, + anon_sym_DQUOTE, + STATE(3532), 1, + sym_comment, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [147596] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3533), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5450), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5452), 2, ts_builtin_sym_end, anon_sym_LF, - [139940] = 5, + [147611] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5570), 1, + anon_sym_LBRACK, + ACTIONS(5572), 1, + anon_sym_LPAREN, + STATE(3534), 1, + sym_comment, + STATE(3612), 1, + sym_parameter_bracks, + STATE(3730), 1, + sym_parameter_parens, + [147630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5528), 1, + ACTIONS(5574), 1, anon_sym_DQUOTE, - STATE(3319), 1, + STATE(3535), 1, sym_comment, - STATE(3325), 1, + STATE(3543), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [139957] = 4, + [147647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5532), 1, - anon_sym_LPAREN, - STATE(3320), 1, + ACTIONS(5576), 1, + anon_sym_DQUOTE, + STATE(3536), 1, sym_comment, - ACTIONS(5534), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [139972] = 4, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [147664] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_RBRACK, + STATE(3537), 1, + sym_comment, + STATE(3556), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, + sym_val_list, + [147683] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4142), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_if, + STATE(869), 1, + sym_block, + STATE(874), 1, + sym_ctrl_if, + STATE(3538), 1, + sym_comment, + [147702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(3539), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [139987] = 4, + [147717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_LF, - STATE(3322), 1, + STATE(3540), 1, sym_comment, - ACTIONS(5536), 3, + ACTIONS(5514), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140002] = 4, + anon_sym_PIPE, + ACTIONS(5516), 2, + ts_builtin_sym_end, + anon_sym_LF, + [147732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5540), 1, - anon_sym_LPAREN, - STATE(3323), 1, + STATE(3541), 1, sym_comment, - ACTIONS(5542), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [140017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5546), 1, + ACTIONS(5514), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5516), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3324), 1, + [147747] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5584), 1, + anon_sym_LBRACK, + ACTIONS(5586), 1, + anon_sym_LPAREN, + STATE(954), 1, + sym_parameter_parens, + STATE(959), 1, + sym_parameter_bracks, + STATE(3542), 1, sym_comment, - ACTIONS(5544), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140032] = 5, + [147766] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5548), 1, + ACTIONS(5588), 1, anon_sym_DQUOTE, - STATE(3325), 1, + STATE(3543), 1, sym_comment, - STATE(3337), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [140049] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3326), 1, - sym_comment, - ACTIONS(5416), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5418), 2, - ts_builtin_sym_end, - anon_sym_LF, - [140064] = 6, - ACTIONS(147), 1, + [147783] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5552), 1, + ACTIONS(5590), 1, anon_sym_RBRACK, - STATE(3327), 1, + STATE(3544), 1, sym_comment, - STATE(3331), 1, + STATE(3554), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [140083] = 4, + [147802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3328), 1, + STATE(3545), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140098] = 4, + [147817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LF, - STATE(3329), 1, + STATE(3546), 1, sym_comment, - ACTIONS(5554), 3, + ACTIONS(5514), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140113] = 4, + anon_sym_PIPE, + ACTIONS(5516), 2, + ts_builtin_sym_end, + anon_sym_LF, + [147832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3547), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140128] = 6, - ACTIONS(147), 1, + [147847] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5558), 1, + ACTIONS(5592), 1, anon_sym_RBRACK, - STATE(3331), 1, + STATE(3548), 1, sym_comment, - STATE(3379), 1, + STATE(3552), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [140147] = 4, + [147866] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + STATE(3549), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140162] = 4, + [147881] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3550), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140177] = 4, + [147896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3551), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140192] = 4, + [147911] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5594), 1, + anon_sym_RBRACK, + STATE(3552), 1, + sym_comment, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, + sym_val_list, + [147930] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3335), 1, + STATE(3553), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140207] = 4, + [147945] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5596), 1, + anon_sym_RBRACK, + STATE(3554), 1, + sym_comment, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, + sym_val_list, + [147964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + STATE(3555), 1, + sym_comment, + ACTIONS(5153), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5155), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3336), 1, + [147979] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5598), 1, + anon_sym_RBRACK, + STATE(3556), 1, + sym_comment, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, + sym_val_list, + [147998] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3557), 1, sym_comment, - ACTIONS(5560), 3, + ACTIONS(5540), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140222] = 4, + anon_sym_PIPE, + ACTIONS(5542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5564), 1, + ACTIONS(5600), 1, anon_sym_DQUOTE, - ACTIONS(5566), 2, + STATE(3558), 1, + sym_comment, + STATE(3566), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - STATE(3337), 2, + [148030] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3559), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [140237] = 4, + ACTIONS(5540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3338), 1, + STATE(3560), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140252] = 4, + [148060] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3339), 1, + STATE(3561), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140267] = 4, + [148075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5571), 1, + STATE(3562), 1, + sym_comment, + ACTIONS(5540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5542), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3340), 1, + [148090] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3563), 1, sym_comment, - ACTIONS(5569), 3, + ACTIONS(5540), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140282] = 4, + anon_sym_PIPE, + ACTIONS(5542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3564), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5542), 2, ts_builtin_sym_end, anon_sym_LF, - [140297] = 5, + [148120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5573), 1, + ACTIONS(5602), 1, anon_sym_DQUOTE, - STATE(3342), 1, - sym_comment, - STATE(3365), 1, + STATE(3536), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + STATE(3565), 1, + sym_comment, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [140314] = 6, - ACTIONS(147), 1, + [148137] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5575), 1, - anon_sym_RBRACK, - STATE(3343), 1, + ACTIONS(5604), 1, + anon_sym_DQUOTE, + STATE(3566), 1, sym_comment, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [140333] = 4, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [148154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_LF, - STATE(3344), 1, + STATE(3567), 1, sym_comment, - ACTIONS(2097), 3, + ACTIONS(5540), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140348] = 5, + anon_sym_PIPE, + ACTIONS(5542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5606), 1, anon_sym_DQUOTE, - STATE(3345), 1, + STATE(3568), 1, sym_comment, - STATE(3352), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [140365] = 6, - ACTIONS(147), 1, + [148186] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5579), 1, + ACTIONS(5608), 1, anon_sym_use, - ACTIONS(5581), 1, + ACTIONS(5610), 1, anon_sym_list, - ACTIONS(5583), 1, + ACTIONS(5612), 1, anon_sym_hide, - ACTIONS(5585), 1, + ACTIONS(5614), 1, anon_sym_new, - STATE(3346), 1, + STATE(3569), 1, sym_comment, - [140384] = 4, + [148205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3347), 1, + STATE(3570), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140399] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_LPAREN, - STATE(3348), 1, - sym_comment, - ACTIONS(5589), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [140414] = 4, + [148220] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_LF, - STATE(3349), 1, - sym_comment, - ACTIONS(2173), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140429] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5591), 1, - anon_sym_RBRACK, - STATE(3343), 1, - aux_sym_val_table_repeat1, - STATE(3350), 1, + ACTIONS(5616), 1, + anon_sym_DQUOTE, + STATE(3532), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3571), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [140448] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [148237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3351), 1, + STATE(3572), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140463] = 5, + [148252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5593), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3352), 1, + ACTIONS(5618), 1, + anon_sym_LPAREN, + STATE(3573), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [140480] = 4, - ACTIONS(3), 1, + ACTIONS(5620), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [148267] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5597), 1, - anon_sym_LF, - STATE(3353), 1, + ACTIONS(5622), 1, + anon_sym_LBRACK, + ACTIONS(5625), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_val_list, + STATE(3574), 2, sym_comment, - ACTIONS(5595), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [140495] = 6, - ACTIONS(147), 1, + aux_sym_val_table_repeat1, + [148284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(5599), 1, - anon_sym_if, - STATE(910), 1, - sym_ctrl_if, - STATE(913), 1, - sym_block, - STATE(3354), 1, + ACTIONS(5627), 1, + anon_sym_LPAREN, + STATE(3575), 1, sym_comment, - [140514] = 5, + ACTIONS(5629), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [148299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, + ACTIONS(5631), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3568), 1, aux_sym__str_double_quotes_repeat1, - STATE(3355), 1, + STATE(3576), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [140531] = 5, + [148316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5603), 1, - anon_sym_DQUOTE, - STATE(3356), 1, + ACTIONS(2415), 1, + ts_builtin_sym_end, + ACTIONS(5225), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_LF, + STATE(1067), 1, + sym__terminator, + STATE(3577), 1, sym_comment, - STATE(3385), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [140548] = 6, - ACTIONS(147), 1, + [148335] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5605), 1, - anon_sym_RBRACK, - STATE(3357), 1, + STATE(3578), 1, sym_comment, - STATE(3361), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [140567] = 4, + ACTIONS(5514), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5516), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + STATE(3579), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140582] = 4, + [148365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3580), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140597] = 4, + [148380] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3360), 1, + STATE(3581), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [140612] = 6, - ACTIONS(147), 1, + [148395] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5570), 1, + anon_sym_LBRACK, + ACTIONS(5572), 1, + anon_sym_LPAREN, + STATE(3582), 1, + sym_comment, + STATE(3690), 1, + sym_parameter_bracks, + STATE(3715), 1, + sym_parameter_parens, + [148414] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5607), 1, + ACTIONS(5633), 1, anon_sym_RBRACK, - STATE(3361), 1, + STATE(3583), 1, sym_comment, - STATE(3379), 1, + STATE(3587), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [140631] = 6, + [148433] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5584), 1, + anon_sym_LBRACK, + ACTIONS(5586), 1, + anon_sym_LPAREN, + STATE(949), 1, + sym_parameter_bracks, + STATE(952), 1, + sym_parameter_parens, + STATE(3584), 1, + sym_comment, + [148452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5147), 1, + STATE(3585), 1, + sym_comment, + ACTIONS(5514), 2, anon_sym_SEMI, - ACTIONS(5149), 1, - anon_sym_LF, - ACTIONS(5609), 1, + anon_sym_PIPE, + ACTIONS(5516), 2, ts_builtin_sym_end, - STATE(983), 1, - sym__terminator, - STATE(3362), 1, - sym_comment, - [140650] = 4, + anon_sym_LF, + [148467] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3363), 1, + STATE(3586), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5450), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5452), 2, ts_builtin_sym_end, anon_sym_LF, - [140665] = 6, - ACTIONS(147), 1, + [148482] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5611), 1, + ACTIONS(5635), 1, anon_sym_RBRACK, - STATE(3364), 1, - sym_comment, - STATE(3446), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3587), 1, + sym_comment, + STATE(3869), 1, sym_val_list, - [140684] = 5, + [148501] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3365), 1, - sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [140701] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5615), 1, - anon_sym_use, - ACTIONS(5617), 1, - anon_sym_list, - ACTIONS(5619), 1, - anon_sym_hide, - ACTIONS(5621), 1, - anon_sym_new, - STATE(3366), 1, + STATE(3588), 1, sym_comment, - [140720] = 6, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, - ts_builtin_sym_end, - ACTIONS(5147), 1, + ACTIONS(5225), 1, anon_sym_SEMI, - ACTIONS(5149), 1, + ACTIONS(5227), 1, anon_sym_LF, - STATE(953), 1, + ACTIONS(5637), 1, + ts_builtin_sym_end, + STATE(1091), 1, sym__terminator, - STATE(3367), 1, + STATE(3589), 1, sym_comment, - [140739] = 5, + [148535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5623), 1, - anon_sym_DQUOTE, - STATE(3368), 1, + ACTIONS(5641), 1, + anon_sym_LF, + STATE(3590), 1, sym_comment, - STATE(3438), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [140756] = 5, + ACTIONS(5639), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [148550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_DQUOTE, - STATE(3355), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3369), 1, + STATE(3591), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [140773] = 4, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148565] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5629), 1, + ACTIONS(5645), 1, anon_sym_LF, - STATE(3370), 1, + STATE(3592), 1, sym_comment, - ACTIONS(5627), 3, + ACTIONS(5643), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [140788] = 6, - ACTIONS(147), 1, + [148580] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3593), 1, + sym_comment, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148595] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5647), 1, + anon_sym_LPAREN, + STATE(3594), 1, + sym_comment, + ACTIONS(5649), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [148610] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5631), 1, + ACTIONS(5651), 1, anon_sym_RBRACK, - STATE(3371), 1, - sym_comment, - STATE(3403), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3595), 1, + sym_comment, + STATE(3869), 1, sym_val_list, - [140807] = 4, + [148629] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3596), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(5450), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5418), 2, + ACTIONS(5452), 2, ts_builtin_sym_end, anon_sym_LF, - [140822] = 6, - ACTIONS(147), 1, + [148644] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(5633), 1, - anon_sym_if, - STATE(910), 1, - sym_ctrl_if, - STATE(913), 1, - sym_block, - STATE(3373), 1, + STATE(3597), 1, sym_comment, - [140841] = 5, - ACTIONS(147), 1, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148659] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, - anon_sym_LBRACE, - STATE(821), 1, - sym__blosure, - STATE(3374), 1, + STATE(3598), 1, sym_comment, - STATE(733), 2, - sym_block, - sym_val_closure, - [140858] = 6, - ACTIONS(147), 1, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148674] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5637), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(3375), 1, + ACTIONS(5653), 1, + anon_sym_RBRACK, + STATE(3595), 1, + aux_sym_val_table_repeat1, + STATE(3599), 1, sym_comment, - STATE(3442), 1, - sym_parameter_bracks, - STATE(3451), 1, - sym_parameter_parens, - [140877] = 6, - ACTIONS(147), 1, + STATE(3869), 1, + sym_val_list, + [148693] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, - anon_sym_COLON, - STATE(1010), 1, + ACTIONS(5655), 1, + anon_sym_if, + STATE(1005), 1, + sym_ctrl_if, + STATE(1013), 1, sym_block, - STATE(3376), 1, + STATE(3600), 1, sym_comment, - STATE(3654), 1, - sym_returns, - [140896] = 6, - ACTIONS(147), 1, + [148712] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(5641), 1, - anon_sym_COLON, - STATE(1016), 1, - sym_block, - STATE(3377), 1, + ACTIONS(5657), 1, + anon_sym_DQUOTE, + STATE(3601), 1, sym_comment, - STATE(3641), 1, - sym_returns, - [140915] = 6, - ACTIONS(147), 1, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [148729] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_LBRACK, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(3378), 1, + STATE(3602), 1, + sym_comment, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148744] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3603), 1, + sym_comment, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148759] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5659), 1, + anon_sym_DQUOTE, + STATE(3601), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3604), 1, sym_comment, - STATE(3526), 1, - sym_parameter_parens, - STATE(3528), 1, - sym_parameter_bracks, - [140934] = 5, - ACTIONS(147), 1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [148776] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5643), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5661), 1, anon_sym_RBRACK, - STATE(3637), 1, - sym_val_list, - STATE(3379), 2, - sym_comment, + STATE(3574), 1, aux_sym_val_table_repeat1, - [140951] = 5, + STATE(3605), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [148795] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - STATE(3380), 1, + STATE(3606), 1, sym_comment, - STATE(3387), 1, + STATE(3613), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [140968] = 4, + [148812] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3381), 1, + STATE(3607), 1, sym_comment, - ACTIONS(5137), 2, + ACTIONS(5450), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5139), 2, + ACTIONS(5452), 2, ts_builtin_sym_end, anon_sym_LF, - [140983] = 4, + [148827] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACE, + STATE(852), 1, + sym__blosure, + STATE(3608), 1, + sym_comment, + STATE(781), 2, + sym_block, + sym_val_closure, + [148844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3382), 1, + STATE(3609), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5450), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5452), 2, ts_builtin_sym_end, anon_sym_LF, - [140998] = 5, - ACTIONS(3), 1, + [148859] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3383), 1, + ACTIONS(5570), 1, + anon_sym_LBRACK, + ACTIONS(5572), 1, + anon_sym_LPAREN, + STATE(3610), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141015] = 5, + STATE(3746), 1, + sym_parameter_bracks, + STATE(3749), 1, + sym_parameter_parens, + [148878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5652), 1, - anon_sym_DQUOTE, - STATE(3383), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3384), 1, + STATE(3611), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141032] = 5, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148893] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(1102), 1, + sym_block, + STATE(3612), 1, + sym_comment, + STATE(3868), 1, + sym_returns, + [148912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5669), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3385), 1, + STATE(3613), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141049] = 5, + [148929] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5671), 1, + anon_sym_RBRACK, + STATE(3605), 1, + aux_sym_val_table_repeat1, + STATE(3614), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [148948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3386), 1, + STATE(3615), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141066] = 5, + ACTIONS(5450), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5452), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5673), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3387), 1, + STATE(3616), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141083] = 6, - ACTIONS(147), 1, + [148980] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, + ACTIONS(5675), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3617), 1, + sym_comment, + STATE(3733), 1, aux_sym_val_table_repeat1, - STATE(3388), 1, + STATE(3869), 1, + sym_val_list, + [148999] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5677), 1, + anon_sym_RBRACK, + STATE(3618), 1, sym_comment, - STATE(3637), 1, + STATE(3622), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, sym_val_list, - [141102] = 5, - ACTIONS(3), 1, + [149018] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5662), 1, - anon_sym_DQUOTE, - STATE(3386), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3389), 1, + ACTIONS(5570), 1, + anon_sym_LBRACK, + ACTIONS(5572), 1, + anon_sym_LPAREN, + STATE(3619), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141119] = 5, + STATE(3772), 1, + sym_parameter_bracks, + STATE(3774), 1, + sym_parameter_parens, + [149037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5664), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3390), 1, + STATE(3620), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141136] = 5, + ACTIONS(5496), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5498), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5666), 1, - anon_sym_DQUOTE, - STATE(3390), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3391), 1, + STATE(3621), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141153] = 6, - ACTIONS(147), 1, + ACTIONS(5496), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5498), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149067] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5668), 1, + ACTIONS(5679), 1, anon_sym_RBRACK, - STATE(3392), 1, - sym_comment, - STATE(3396), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3622), 1, + sym_comment, + STATE(3869), 1, sym_val_list, - [141172] = 5, + [149086] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3623), 1, + sym_comment, + ACTIONS(5496), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5498), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5670), 1, + ACTIONS(5681), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3393), 1, + STATE(3624), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141189] = 5, + [149118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(5683), 1, anon_sym_DQUOTE, - STATE(3393), 1, + STATE(3624), 1, aux_sym__str_double_quotes_repeat1, - STATE(3394), 1, + STATE(3625), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141206] = 5, + [149135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5674), 1, + ACTIONS(5685), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3395), 1, + STATE(3626), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141223] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5676), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3396), 1, - sym_comment, - STATE(3637), 1, - sym_val_list, - [141242] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_LBRACK, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(3376), 1, - sym_parameter_parens, - STATE(3377), 1, - sym_parameter_bracks, - STATE(3397), 1, - sym_comment, - [141261] = 5, + [149152] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5678), 1, + ACTIONS(5687), 1, anon_sym_DQUOTE, - STATE(3395), 1, + STATE(3616), 1, aux_sym__str_double_quotes_repeat1, - STATE(3398), 1, + STATE(3627), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141278] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5680), 1, - anon_sym_LBRACK, - ACTIONS(5682), 1, - anon_sym_LPAREN, - STATE(914), 1, - sym_parameter_bracks, - STATE(915), 1, - sym_parameter_parens, - STATE(3399), 1, - sym_comment, - [141297] = 5, + [149169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5684), 1, + ACTIONS(5689), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3626), 1, aux_sym__str_double_quotes_repeat1, - STATE(3400), 1, + STATE(3628), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141314] = 5, + [149186] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(5691), 1, anon_sym_DQUOTE, - STATE(3400), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3401), 1, + STATE(3629), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141331] = 6, - ACTIONS(147), 1, + [149203] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_RBRACK, - STATE(3388), 1, - aux_sym_val_table_repeat1, - STATE(3402), 1, + ACTIONS(5693), 1, + anon_sym_DQUOTE, + STATE(3629), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3630), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [141350] = 6, - ACTIONS(147), 1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [149220] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5690), 1, + ACTIONS(5695), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3403), 1, + STATE(3631), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [141369] = 5, + [149239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5692), 1, + ACTIONS(5697), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3404), 1, + STATE(3632), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141386] = 5, - ACTIONS(147), 1, + [149256] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5694), 1, + ACTIONS(5699), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(923), 1, sym__blosure, - STATE(3405), 1, + STATE(3633), 1, sym_comment, - STATE(900), 2, + STATE(839), 2, sym_block, sym_val_closure, - [141403] = 5, + [149273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5696), 1, + ACTIONS(5701), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3632), 1, aux_sym__str_double_quotes_repeat1, - STATE(3406), 1, + STATE(3634), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141420] = 5, + [149290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5698), 1, + ACTIONS(5703), 1, anon_sym_DQUOTE, - STATE(3404), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3407), 1, + STATE(3635), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141437] = 5, + [149307] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5705), 1, + anon_sym_RBRACK, + STATE(3631), 1, + aux_sym_val_table_repeat1, + STATE(3636), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [149326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5700), 1, + ACTIONS(5707), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3635), 1, aux_sym__str_double_quotes_repeat1, - STATE(3408), 1, + STATE(3637), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141454] = 5, + [149343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5702), 1, + ACTIONS(5709), 1, anon_sym_DQUOTE, - STATE(3408), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3409), 1, + STATE(3638), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141471] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_LPAREN, - STATE(798), 1, - sym_parameter_bracks, - STATE(799), 1, - sym_parameter_parens, - STATE(3410), 1, - sym_comment, - [141490] = 5, + [149360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5711), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3411), 1, + STATE(3639), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141507] = 5, + [149377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(5713), 1, anon_sym_DQUOTE, - STATE(3411), 1, + STATE(3639), 1, aux_sym__str_double_quotes_repeat1, - STATE(3412), 1, + STATE(3640), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141524] = 5, + [149394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5712), 1, + ACTIONS(5715), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3413), 1, + STATE(3641), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3648), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141541] = 5, + [149411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, + ACTIONS(5717), 1, anon_sym_DQUOTE, - STATE(3413), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3414), 1, + STATE(3642), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141558] = 5, + [149428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(5719), 1, anon_sym_DQUOTE, - STATE(3415), 1, - sym_comment, - STATE(3422), 1, + STATE(3638), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + STATE(3643), 1, + sym_comment, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141575] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - ACTIONS(5718), 1, - anon_sym_if, - STATE(775), 1, - sym_ctrl_if, - STATE(777), 1, - sym_block, - STATE(3416), 1, - sym_comment, - [141594] = 5, + [149445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5720), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3642), 1, aux_sym__str_double_quotes_repeat1, - STATE(3417), 1, + STATE(3644), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141611] = 5, + [149462] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5723), 1, anon_sym_DQUOTE, - STATE(3417), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3418), 1, + STATE(3645), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141628] = 4, + [149479] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3419), 1, + STATE(3646), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [141643] = 5, + [149494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5724), 1, + ACTIONS(5725), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3645), 1, aux_sym__str_double_quotes_repeat1, - STATE(3420), 1, + STATE(3647), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141660] = 5, + [149511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5726), 1, + ACTIONS(5727), 1, anon_sym_DQUOTE, - STATE(3420), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3421), 1, + STATE(3648), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141677] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5728), 1, - anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3422), 1, - sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141694] = 5, + [149528] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5730), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3423), 1, + STATE(3649), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141711] = 5, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5732), 1, - anon_sym_DQUOTE, - STATE(3423), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3424), 1, + STATE(3650), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141728] = 4, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3425), 1, + STATE(3651), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [141743] = 5, + [149573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5734), 1, + ACTIONS(5729), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3426), 1, + STATE(3652), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141760] = 6, - ACTIONS(147), 1, + [149590] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5736), 1, + ACTIONS(5731), 1, anon_sym_RBRACK, - STATE(3427), 1, + STATE(3653), 1, sym_comment, - STATE(3431), 1, + STATE(3657), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [141779] = 5, + [149609] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(5733), 1, anon_sym_DQUOTE, - STATE(3426), 1, + STATE(3652), 1, aux_sym__str_double_quotes_repeat1, - STATE(3428), 1, + STATE(3654), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141796] = 6, - ACTIONS(147), 1, + [149626] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5740), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3429), 1, + ACTIONS(5735), 1, + anon_sym_DQUOTE, + STATE(3655), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [141815] = 5, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [149643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, + ACTIONS(5737), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3655), 1, aux_sym__str_double_quotes_repeat1, - STATE(3430), 1, + STATE(3656), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141832] = 6, - ACTIONS(147), 1, + [149660] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5744), 1, + ACTIONS(5739), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3431), 1, + STATE(3657), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [141851] = 5, + [149679] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(5741), 1, anon_sym_DQUOTE, - STATE(3406), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3432), 1, + STATE(3658), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141868] = 5, + [149696] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5748), 1, + ACTIONS(5743), 1, anon_sym_DQUOTE, - STATE(3430), 1, + STATE(3658), 1, aux_sym__str_double_quotes_repeat1, - STATE(3433), 1, + STATE(3659), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [141885] = 4, + [149713] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3434), 1, + STATE(3660), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [141900] = 5, + [149728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5750), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3435), 1, + ACTIONS(5747), 1, + anon_sym_LF, + STATE(3661), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141917] = 5, + ACTIONS(5745), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_DQUOTE, - STATE(3435), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3436), 1, + ACTIONS(5751), 1, + anon_sym_LF, + STATE(3662), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141934] = 4, + ACTIONS(5749), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3437), 1, + STATE(3663), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5109), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [141949] = 5, + [149773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5754), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3438), 1, + STATE(3664), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141966] = 4, + ACTIONS(5235), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5237), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3665), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [141981] = 5, + [149803] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5756), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3440), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_LF, + ACTIONS(5243), 1, + anon_sym_SEMI, + STATE(1896), 1, + aux_sym_pipe_element_repeat1, + STATE(3666), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [141998] = 5, + [149822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5758), 1, - anon_sym_DQUOTE, - STATE(3440), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3441), 1, + STATE(3667), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [142015] = 6, - ACTIONS(147), 1, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149837] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - ACTIONS(5641), 1, - anon_sym_COLON, - STATE(893), 1, - sym_block, - STATE(3442), 1, + STATE(3668), 1, sym_comment, - STATE(3687), 1, - sym_returns, - [142034] = 5, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149852] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5760), 1, + ACTIONS(5753), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3443), 1, + STATE(3669), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142051] = 5, + [149869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5762), 1, - anon_sym_DQUOTE, - STATE(3443), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3444), 1, + ACTIONS(5757), 1, + anon_sym_LF, + STATE(3670), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [142068] = 4, + ACTIONS(5755), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149884] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3445), 1, + STATE(3671), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [142083] = 6, - ACTIONS(147), 1, + [149899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5764), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3446), 1, + STATE(3672), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [142102] = 4, + ACTIONS(5328), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5330), 2, + ts_builtin_sym_end, + anon_sym_LF, + [149914] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3447), 1, + STATE(3673), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5328), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5330), 2, ts_builtin_sym_end, anon_sym_LF, - [142117] = 4, + [149929] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + STATE(3674), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142132] = 4, + [149944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3449), 1, + STATE(3675), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142147] = 5, + [149959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5766), 1, + ACTIONS(5759), 1, anon_sym_DQUOTE, - STATE(3450), 1, + STATE(3676), 1, sym_comment, - STATE(3457), 1, + STATE(3683), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142164] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - ACTIONS(5641), 1, - anon_sym_COLON, - STATE(894), 1, - sym_block, - STATE(3451), 1, - sym_comment, - STATE(3685), 1, - sym_returns, - [142183] = 4, + [149976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3452), 1, + STATE(3677), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142198] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3453), 1, - sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [142215] = 5, + [149991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5761), 1, anon_sym_DQUOTE, - STATE(3453), 1, + STATE(3669), 1, aux_sym__str_double_quotes_repeat1, - STATE(3454), 1, + STATE(3678), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142232] = 4, + [150008] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3679), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142247] = 5, + [150023] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5772), 1, + ACTIONS(5763), 1, anon_sym_DQUOTE, - STATE(3456), 1, + STATE(3680), 1, sym_comment, - STATE(3486), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142264] = 5, + [150040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, + ACTIONS(5765), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3680), 1, aux_sym__str_double_quotes_repeat1, - STATE(3457), 1, + STATE(3681), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142281] = 5, + [150057] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5767), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym__blosure, + STATE(3682), 1, + sym_comment, + STATE(945), 2, + sym_block, + sym_val_closure, + [150074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5776), 1, + ACTIONS(5769), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3458), 1, + STATE(3683), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142298] = 4, + [150091] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3459), 1, + ACTIONS(5771), 1, + anon_sym_DQUOTE, + STATE(3684), 1, sym_comment, - ACTIONS(5388), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142313] = 5, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5778), 1, + ACTIONS(5773), 1, anon_sym_DQUOTE, - STATE(3458), 1, + STATE(3684), 1, aux_sym__str_double_quotes_repeat1, - STATE(3460), 1, + STATE(3685), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142330] = 6, - ACTIONS(147), 1, + [150125] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3686), 1, + sym_comment, + ACTIONS(5235), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5237), 2, + ts_builtin_sym_end, + anon_sym_LF, + [150140] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, + ACTIONS(5775), 1, anon_sym_RBRACK, - STATE(3461), 1, + STATE(3687), 1, sym_comment, - STATE(3465), 1, + STATE(3691), 1, aux_sym_val_table_repeat1, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [142349] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym__blosure, - STATE(3462), 1, - sym_comment, - STATE(796), 2, - sym_block, - sym_val_closure, - [142366] = 5, + [150159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5784), 1, + ACTIONS(5777), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3463), 1, + STATE(3688), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [142383] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_DQUOTE, - STATE(3463), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3464), 1, - sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142400] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5788), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3465), 1, - sym_comment, - STATE(3637), 1, - sym_val_list, - [142419] = 5, + [150176] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5790), 1, + ACTIONS(5779), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3688), 1, aux_sym__str_double_quotes_repeat1, - STATE(3466), 1, + STATE(3689), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142436] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - ACTIONS(5641), 1, - anon_sym_COLON, - STATE(982), 1, - sym_block, - STATE(3467), 1, - sym_comment, - STATE(3661), 1, - sym_returns, - [142455] = 6, - ACTIONS(147), 1, + [150193] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5667), 1, anon_sym_COLON, - STATE(986), 1, + STATE(1075), 1, sym_block, - STATE(3468), 1, + STATE(3690), 1, sym_comment, - STATE(3657), 1, + STATE(3891), 1, sym_returns, - [142474] = 4, - ACTIONS(3), 1, + [150212] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3469), 1, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5781), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3691), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142489] = 5, + STATE(3869), 1, + sym_val_list, + [150231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5783), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3470), 1, + STATE(3692), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142506] = 4, + [150248] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3471), 1, + STATE(3693), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5390), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142521] = 5, + [150263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(5785), 1, anon_sym_DQUOTE, - STATE(3466), 1, + STATE(3692), 1, aux_sym__str_double_quotes_repeat1, - STATE(3472), 1, + STATE(3694), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142538] = 4, + [150280] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3473), 1, - sym_comment, - ACTIONS(5388), 2, - anon_sym_SEMI, + ACTIONS(1746), 1, anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, + ACTIONS(4364), 1, anon_sym_LF, - [142553] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3474), 1, - sym_comment, - ACTIONS(5249), 2, + ACTIONS(5376), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142568] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5796), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3475), 1, - sym_comment, - STATE(3637), 1, - sym_val_list, - [142587] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5798), 1, - anon_sym_RBRACK, - STATE(3475), 1, - aux_sym_val_table_repeat1, - STATE(3476), 1, + STATE(1901), 1, + aux_sym_pipe_element_repeat1, + STATE(3695), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [142606] = 4, + [150299] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3477), 1, - sym_comment, - ACTIONS(5446), 2, - anon_sym_SEMI, + ACTIONS(1746), 1, anon_sym_PIPE, - ACTIONS(5448), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142621] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3478), 1, - sym_comment, - ACTIONS(5446), 2, + ACTIONS(4302), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5448), 2, - ts_builtin_sym_end, + ACTIONS(4364), 1, anon_sym_LF, - [142636] = 4, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(3696), 1, + sym_comment, + [150318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3479), 1, + STATE(3697), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142651] = 5, + [150333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, + ACTIONS(5787), 1, anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3480), 1, - sym_comment, - ACTIONS(5530), 2, + ACTIONS(5789), 2, sym__escaped_str_content, sym_escape_sequence, - [142668] = 4, + STATE(3698), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [150348] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3481), 1, + ACTIONS(5794), 1, + anon_sym_LF, + STATE(3699), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5792), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142683] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3482), 1, + ACTIONS(5798), 1, + anon_sym_LF, + STATE(3700), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5796), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142698] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150378] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3483), 1, + ACTIONS(5802), 1, + anon_sym_LF, + STATE(3701), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5800), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142713] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5802), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - STATE(3484), 1, - sym_comment, - STATE(3491), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + STATE(3702), 1, + sym_comment, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142730] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_LPAREN, - STATE(772), 1, - sym_parameter_parens, - STATE(774), 1, - sym_parameter_bracks, - STATE(3485), 1, - sym_comment, - [142749] = 5, + [150410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5804), 1, + ACTIONS(5806), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3702), 1, aux_sym__str_double_quotes_repeat1, - STATE(3486), 1, + STATE(3703), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142766] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_RBRACK, - STATE(3487), 1, - sym_comment, - STATE(3537), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [142785] = 5, + [150427] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5808), 1, anon_sym_DQUOTE, - STATE(3480), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3488), 1, + STATE(3704), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142802] = 4, + [150444] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(5388), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142817] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, ACTIONS(5810), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3490), 1, - sym_comment, - STATE(3637), 1, - sym_val_list, - [142836] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5812), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3704), 1, aux_sym__str_double_quotes_repeat1, - STATE(3491), 1, + STATE(3705), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142853] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, - anon_sym_RBRACK, - STATE(3490), 1, - aux_sym_val_table_repeat1, - STATE(3492), 1, - sym_comment, - STATE(3637), 1, - sym_val_list, - [142872] = 4, + [150461] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3493), 1, + STATE(3706), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [142887] = 6, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5816), 1, - anon_sym_RBRACK, - STATE(3494), 1, - sym_comment, - STATE(3545), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [142906] = 6, - ACTIONS(147), 1, + [150476] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, - anon_sym_RBRACK, - STATE(3495), 1, + ACTIONS(5814), 1, + anon_sym_LF, + STATE(3707), 1, sym_comment, - STATE(3499), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [142925] = 5, + ACTIONS(5812), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3496), 1, + ACTIONS(2413), 1, + anon_sym_LF, + STATE(3708), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [142942] = 6, + ACTIONS(2237), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(2343), 1, anon_sym_LF, - ACTIONS(5341), 1, - anon_sym_SEMI, - STATE(1777), 1, - aux_sym_pipe_element_repeat1, - STATE(3497), 1, + STATE(3709), 1, sym_comment, - [142961] = 5, + ACTIONS(2299), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5822), 1, + ACTIONS(5816), 1, anon_sym_DQUOTE, - STATE(3496), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3498), 1, + STATE(3710), 1, sym_comment, - ACTIONS(5530), 2, + STATE(3717), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [142978] = 6, - ACTIONS(147), 1, + [150538] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5824), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3499), 1, + ACTIONS(5818), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3711), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [142997] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3500), 1, + STATE(3712), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [143012] = 4, + [150570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, + ACTIONS(5822), 1, + anon_sym_LF, + STATE(3713), 1, sym_comment, - ACTIONS(5388), 2, + ACTIONS(5820), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5390), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143027] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150585] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3502), 1, + ACTIONS(5824), 1, + anon_sym_DQUOTE, + STATE(3711), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3714), 1, sym_comment, - ACTIONS(5446), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5448), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143042] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150602] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(1072), 1, + sym_block, + STATE(3715), 1, + sym_comment, + STATE(3884), 1, + sym_returns, + [150621] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3503), 1, + ACTIONS(5826), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3716), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143057] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150638] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + ACTIONS(5828), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3717), 1, sym_comment, - ACTIONS(5446), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5448), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143072] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150655] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3505), 1, + ACTIONS(5830), 1, + anon_sym_DQUOTE, + STATE(3716), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3718), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143087] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150672] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3719), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [143102] = 6, - ACTIONS(147), 1, + [150687] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3720), 1, + sym_comment, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150704] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5680), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5682), 1, - anon_sym_LPAREN, - STATE(854), 1, - sym_parameter_parens, - STATE(857), 1, - sym_parameter_bracks, - STATE(3507), 1, + ACTIONS(5834), 1, + anon_sym_RBRACK, + STATE(3721), 1, + sym_comment, + STATE(3725), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, + sym_val_list, + [150723] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5836), 1, + anon_sym_DQUOTE, + STATE(3720), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3722), 1, sym_comment, - [143121] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3723), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [143136] = 6, - ACTIONS(147), 1, + [150755] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5838), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3724), 1, + sym_comment, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150772] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, + ACTIONS(5840), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3509), 1, + STATE(3725), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143155] = 4, + [150791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3510), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143170] = 4, + [150806] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3511), 1, + ACTIONS(5842), 1, + anon_sym_DQUOTE, + STATE(3724), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3727), 1, sym_comment, - ACTIONS(5107), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5109), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143185] = 4, - ACTIONS(3), 1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [150823] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3512), 1, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5844), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3728), 1, sym_comment, - ACTIONS(5446), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5448), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143200] = 6, - ACTIONS(147), 1, + STATE(3869), 1, + sym_val_list, + [150842] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5828), 1, + ACTIONS(5846), 1, anon_sym_RBRACK, - STATE(3509), 1, + STATE(3728), 1, aux_sym_val_table_repeat1, - STATE(3513), 1, + STATE(3729), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143219] = 5, + [150861] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(1101), 1, + sym_block, + STATE(3730), 1, + sym_comment, + STATE(3886), 1, + sym_returns, + [150880] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5830), 1, + ACTIONS(5848), 1, anon_sym_DQUOTE, - STATE(3470), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3514), 1, + STATE(3731), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [143236] = 4, + [150897] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3732), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143251] = 4, - ACTIONS(3), 1, + [150912] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3516), 1, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5850), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3733), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143266] = 4, + STATE(3869), 1, + sym_val_list, + [150931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3734), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143281] = 5, + [150946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, + ACTIONS(5852), 1, anon_sym_DQUOTE, - STATE(3518), 1, - sym_comment, - STATE(3525), 1, + STATE(3731), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, + STATE(3735), 1, + sym_comment, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [143298] = 4, + [150963] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5251), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143313] = 4, + [150978] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3737), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5235), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5237), 2, ts_builtin_sym_end, anon_sym_LF, - [143328] = 4, + [150993] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3738), 1, sym_comment, - ACTIONS(5446), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5448), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143343] = 5, - ACTIONS(3), 1, + [151008] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5834), 1, - anon_sym_DQUOTE, - STATE(3337), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3522), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + ACTIONS(5854), 1, + anon_sym_if, + STATE(869), 1, + sym_block, + STATE(874), 1, + sym_ctrl_if, + STATE(3739), 1, sym_comment, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143360] = 4, + [151027] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5856), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3740), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [151046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3523), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143375] = 4, + [151061] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5858), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3742), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [151080] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5860), 1, + anon_sym_RBRACK, + STATE(3742), 1, + aux_sym_val_table_repeat1, + STATE(3743), 1, + sym_comment, + STATE(3869), 1, + sym_val_list, + [151099] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3524), 1, + ACTIONS(5862), 1, + anon_sym_DQUOTE, + STATE(3744), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143390] = 5, + STATE(3751), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(5864), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3525), 1, + STATE(3745), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [143407] = 6, - ACTIONS(147), 1, + [151133] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5667), 1, anon_sym_COLON, - STATE(912), 1, + STATE(932), 1, sym_block, - STATE(3526), 1, + STATE(3746), 1, sym_comment, - STATE(3660), 1, + STATE(3865), 1, sym_returns, - [143426] = 4, + [151152] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3747), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143441] = 6, - ACTIONS(147), 1, + [151167] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(5866), 1, + anon_sym_use, + ACTIONS(5868), 1, + anon_sym_list, + ACTIONS(5870), 1, + anon_sym_hide, + ACTIONS(5872), 1, + anon_sym_new, + STATE(3748), 1, + sym_comment, + [151186] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4142), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5667), 1, anon_sym_COLON, - STATE(911), 1, + STATE(902), 1, sym_block, - STATE(3528), 1, + STATE(3749), 1, sym_comment, - STATE(3664), 1, + STATE(3866), 1, sym_returns, - [143460] = 6, - ACTIONS(147), 1, + [151205] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5838), 1, - anon_sym_RBRACK, - STATE(3529), 1, + ACTIONS(5874), 1, + anon_sym_DQUOTE, + STATE(3750), 1, sym_comment, - STATE(3533), 1, - aux_sym_val_table_repeat1, - STATE(3637), 1, - sym_val_list, - [143479] = 5, - ACTIONS(147), 1, + STATE(3764), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151222] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5840), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym__blosure, - STATE(3530), 1, + ACTIONS(5876), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3751), 1, sym_comment, - STATE(702), 2, - sym_block, - sym_val_closure, - [143496] = 5, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5842), 1, + ACTIONS(5878), 1, anon_sym_DQUOTE, - STATE(3522), 1, + STATE(3745), 1, aux_sym__str_double_quotes_repeat1, - STATE(3531), 1, + STATE(3752), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [143513] = 6, - ACTIONS(147), 1, + [151256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LBRACK, - ACTIONS(5844), 1, - anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3532), 1, + STATE(3753), 1, sym_comment, - STATE(3637), 1, - sym_val_list, - [143532] = 6, - ACTIONS(147), 1, + ACTIONS(5496), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5498), 2, + ts_builtin_sym_end, + anon_sym_LF, + [151271] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5880), 1, + anon_sym_LBRACE, + STATE(852), 1, + sym__blosure, + STATE(3754), 1, + sym_comment, + STATE(884), 2, + sym_block, + sym_val_closure, + [151288] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5846), 1, + ACTIONS(5882), 1, anon_sym_RBRACK, - STATE(3379), 1, - aux_sym_val_table_repeat1, - STATE(3533), 1, + STATE(3755), 1, sym_comment, - STATE(3637), 1, + STATE(3759), 1, + aux_sym_val_table_repeat1, + STATE(3869), 1, sym_val_list, - [143551] = 4, + [151307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3534), 1, + STATE(3756), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5496), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5498), 2, ts_builtin_sym_end, anon_sym_LF, - [143566] = 4, + [151322] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5850), 1, - anon_sym_LF, - STATE(3535), 1, + STATE(3757), 1, sym_comment, - ACTIONS(5848), 3, + ACTIONS(5496), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143581] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5854), 1, + anon_sym_PIPE, + ACTIONS(5498), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3536), 1, - sym_comment, - ACTIONS(5852), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143596] = 6, - ACTIONS(147), 1, + [151337] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5856), 1, + ACTIONS(5884), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3537), 1, + STATE(3758), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143615] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5858), 1, - anon_sym_DQUOTE, - STATE(3538), 1, - sym_comment, - STATE(3548), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5530), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143632] = 4, - ACTIONS(3), 1, + [151356] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3539), 1, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5886), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_val_table_repeat1, + STATE(3759), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5251), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143647] = 6, - ACTIONS(147), 1, + STATE(3869), 1, + sym_val_list, + [151375] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5860), 1, + ACTIONS(5888), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3758), 1, aux_sym_val_table_repeat1, - STATE(3540), 1, + STATE(3760), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143666] = 4, + [151394] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5890), 1, + anon_sym_LBRACK, + ACTIONS(5892), 1, + anon_sym_LPAREN, + STATE(862), 1, + sym_parameter_bracks, + STATE(868), 1, + sym_parameter_parens, + STATE(3761), 1, + sym_comment, + [151413] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, + ACTIONS(5894), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3762), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143681] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151430] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(5896), 1, + anon_sym_DQUOTE, + STATE(3762), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3763), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143696] = 4, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151447] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3543), 1, + ACTIONS(5898), 1, + anon_sym_DQUOTE, + STATE(3698), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3764), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143711] = 6, - ACTIONS(147), 1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151464] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_LBRACK, - ACTIONS(5639), 1, - anon_sym_LPAREN, - STATE(3467), 1, - sym_parameter_parens, - STATE(3468), 1, - sym_parameter_bracks, - STATE(3544), 1, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(5900), 1, + anon_sym_if, + STATE(1005), 1, + sym_ctrl_if, + STATE(1013), 1, + sym_block, + STATE(3765), 1, sym_comment, - [143730] = 6, - ACTIONS(147), 1, + [151483] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5862), 1, + ACTIONS(5902), 1, anon_sym_RBRACK, - STATE(3379), 1, + STATE(3574), 1, aux_sym_val_table_repeat1, - STATE(3545), 1, + STATE(3766), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143749] = 4, - ACTIONS(3), 1, + [151502] = 6, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(5578), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_RBRACK, + STATE(3740), 1, + aux_sym_val_table_repeat1, + STATE(3767), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5442), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143764] = 6, - ACTIONS(147), 1, + STATE(3869), 1, + sym_val_list, + [151521] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5578), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, + ACTIONS(5906), 1, anon_sym_RBRACK, - STATE(3532), 1, + STATE(3766), 1, aux_sym_val_table_repeat1, - STATE(3547), 1, + STATE(3768), 1, sym_comment, - STATE(3637), 1, + STATE(3869), 1, sym_val_list, - [143783] = 5, + [151540] = 6, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5890), 1, + anon_sym_LBRACK, + ACTIONS(5892), 1, + anon_sym_LPAREN, + STATE(849), 1, + sym_parameter_bracks, + STATE(888), 1, + sym_parameter_parens, + STATE(3769), 1, + sym_comment, + [151559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, + ACTIONS(5908), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3698), 1, aux_sym__str_double_quotes_repeat1, - STATE(3548), 1, + STATE(3770), 1, sym_comment, - ACTIONS(5530), 2, + ACTIONS(5568), 2, sym__escaped_str_content, sym_escape_sequence, - [143800] = 4, + [151576] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3549), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(5514), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5442), 2, + ACTIONS(5516), 2, ts_builtin_sym_end, anon_sym_LF, - [143815] = 5, - ACTIONS(147), 1, + [151591] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_RBRACK, - ACTIONS(5870), 1, - sym_hex_digit, - STATE(3550), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(968), 1, + sym_block, + STATE(3772), 1, sym_comment, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - [143831] = 4, + STATE(3879), 1, + sym_returns, + [151610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5595), 1, - anon_sym_SEMI, - STATE(3551), 1, + ACTIONS(5910), 1, + anon_sym_DQUOTE, + STATE(3770), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3773), 1, sym_comment, - ACTIONS(5597), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143845] = 4, - ACTIONS(3), 1, + ACTIONS(5568), 2, + sym__escaped_str_content, + sym_escape_sequence, + [151627] = 6, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5524), 1, - anon_sym_SEMI, - STATE(3552), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_COLON, + STATE(967), 1, + sym_block, + STATE(3774), 1, sym_comment, - ACTIONS(5526), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143859] = 4, + STATE(3880), 1, + sym_returns, + [151646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5874), 1, + ACTIONS(5914), 1, anon_sym_LF, - STATE(3553), 1, + STATE(3775), 1, sym_comment, - ACTIONS(5872), 2, + ACTIONS(5912), 2, anon_sym_SEMI, anon_sym_RPAREN, - [143873] = 4, + [151660] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_LPAREN, - STATE(3554), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_LF, + STATE(1128), 1, + sym__terminator, + STATE(3776), 1, sym_comment, - ACTIONS(5878), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [143887] = 5, - ACTIONS(147), 1, + [151676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5792), 1, + anon_sym_SEMI, + STATE(3777), 1, + sym_comment, + ACTIONS(5794), 2, + ts_builtin_sym_end, + anon_sym_LF, + [151690] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5916), 1, + anon_sym_RBRACK, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5880), 1, + STATE(3778), 1, + sym_comment, + STATE(3839), 1, + aux_sym_val_binary_repeat1, + [151706] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5920), 1, anon_sym_RBRACK, - STATE(3555), 1, + STATE(3779), 1, sym_comment, - STATE(3572), 1, + STATE(3799), 1, aux_sym_val_binary_repeat1, - [143903] = 5, - ACTIONS(3), 1, + [151722] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1777), 1, - aux_sym_pipe_element_repeat1, - STATE(3556), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5922), 1, + anon_sym_RBRACK, + STATE(3780), 1, sym_comment, - [143919] = 5, - ACTIONS(3), 1, + STATE(3798), 1, + aux_sym_val_binary_repeat1, + [151738] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1816), 1, - aux_sym_pipe_element_repeat1, - STATE(3557), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5924), 1, + anon_sym_RBRACK, + STATE(3781), 1, sym_comment, - [143935] = 5, + STATE(3783), 1, + aux_sym_val_binary_repeat1, + [151754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_RPAREN, - ACTIONS(5882), 1, + ACTIONS(5800), 1, anon_sym_SEMI, - ACTIONS(5884), 1, + STATE(3782), 1, + sym_comment, + ACTIONS(5802), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3558), 1, + [151768] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5926), 1, + anon_sym_RBRACK, + STATE(3783), 1, sym_comment, - [143951] = 5, - ACTIONS(3), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [151784] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1778), 1, - aux_sym_pipe_element_repeat1, - STATE(3559), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5928), 1, + anon_sym_RBRACK, + STATE(3784), 1, sym_comment, - [143967] = 4, + STATE(3792), 1, + aux_sym_val_binary_repeat1, + [151800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, + ACTIONS(5930), 1, anon_sym_LF, - STATE(3560), 1, + STATE(3785), 1, sym_comment, - ACTIONS(5886), 2, + ACTIONS(2409), 2, anon_sym_SEMI, anon_sym_RPAREN, - [143981] = 5, - ACTIONS(147), 1, + [151814] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5890), 1, - anon_sym_RBRACK, - STATE(3561), 1, + ACTIONS(5932), 1, + anon_sym_EQ, + ACTIONS(5934), 1, + anon_sym_COLON, + STATE(3786), 1, sym_comment, - STATE(3565), 1, - aux_sym_val_binary_repeat1, - [143997] = 4, + STATE(4000), 1, + sym_param_type, + [151830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(5938), 1, anon_sym_LF, - STATE(3562), 1, + STATE(3787), 1, sym_comment, - ACTIONS(5892), 2, + ACTIONS(5936), 2, anon_sym_SEMI, anon_sym_RPAREN, - [144011] = 5, - ACTIONS(147), 1, + [151844] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5896), 1, - anon_sym_RBRACK, - STATE(3563), 1, + ACTIONS(5940), 1, + anon_sym_LF, + STATE(3788), 1, sym_comment, - STATE(3566), 1, - aux_sym_val_binary_repeat1, - [144027] = 5, - ACTIONS(147), 1, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [151858] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5898), 1, - anon_sym_EQ, - ACTIONS(5900), 1, - anon_sym_COLON, - STATE(3564), 1, + ACTIONS(5944), 1, + anon_sym_LF, + STATE(3789), 1, sym_comment, - STATE(3779), 1, - sym_param_type, - [144043] = 5, - ACTIONS(147), 1, + ACTIONS(5942), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [151872] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5946), 1, + anon_sym_SEMI, + ACTIONS(5948), 1, + anon_sym_LF, + ACTIONS(5950), 1, + anon_sym_RPAREN, + STATE(3790), 1, + sym_comment, + [151888] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5902), 1, + ACTIONS(5952), 1, anon_sym_RBRACK, - STATE(3565), 1, + STATE(3791), 1, sym_comment, - STATE(3572), 1, + STATE(3795), 1, aux_sym_val_binary_repeat1, - [144059] = 5, - ACTIONS(147), 1, + [151904] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5904), 1, + ACTIONS(5954), 1, anon_sym_RBRACK, - STATE(3566), 1, + STATE(3792), 1, sym_comment, - STATE(3572), 1, + STATE(3846), 1, aux_sym_val_binary_repeat1, - [144075] = 5, - ACTIONS(3), 1, + [151920] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1818), 1, - aux_sym_pipe_element_repeat1, - STATE(3567), 1, + STATE(3793), 1, sym_comment, - [144091] = 5, - ACTIONS(147), 1, + ACTIONS(1613), 3, + sym_identifier, + anon_sym_DASH_DASH, + sym_short_flag, + [151932] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5906), 1, + ACTIONS(5956), 1, anon_sym_RBRACK, - STATE(3568), 1, + STATE(3794), 1, sym_comment, - STATE(3572), 1, + STATE(3802), 1, aux_sym_val_binary_repeat1, - [144107] = 5, - ACTIONS(147), 1, + [151948] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5908), 1, + ACTIONS(5958), 1, anon_sym_RBRACK, - STATE(3569), 1, + STATE(3795), 1, sym_comment, - STATE(3572), 1, + STATE(3846), 1, aux_sym_val_binary_repeat1, - [144123] = 5, - ACTIONS(147), 1, + [151964] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5910), 1, - anon_sym_RBRACK, - STATE(3555), 1, - aux_sym_val_binary_repeat1, - STATE(3570), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + STATE(3796), 1, sym_comment, - [144139] = 5, - ACTIONS(147), 1, + ACTIONS(5962), 2, + anon_sym_RBRACK, + sym_hex_digit, + [151978] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5912), 1, + ACTIONS(5964), 1, anon_sym_RBRACK, - STATE(3571), 1, + STATE(3797), 1, sym_comment, - STATE(3572), 1, + STATE(3818), 1, aux_sym_val_binary_repeat1, - [144155] = 4, - ACTIONS(147), 1, + [151994] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5914), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, + ACTIONS(5918), 1, sym_hex_digit, - STATE(3572), 2, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(3798), 1, sym_comment, + STATE(3846), 1, aux_sym_val_binary_repeat1, - [144169] = 5, - ACTIONS(147), 1, + [152010] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5919), 1, + ACTIONS(5968), 1, anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3573), 1, + STATE(3799), 1, sym_comment, - [144185] = 4, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, - anon_sym_DQUOTE, - STATE(3574), 1, + ACTIONS(2117), 1, + anon_sym_SEMI, + STATE(3800), 1, sym_comment, - ACTIONS(5923), 2, - sym__escaped_str_content, - sym_escape_sequence, - [144199] = 4, - ACTIONS(3), 1, + ACTIONS(2119), 2, + ts_builtin_sym_end, + anon_sym_LF, + [152040] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_LPAREN, - STATE(3575), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(5970), 1, + anon_sym_RBRACK, + STATE(3801), 1, sym_comment, - ACTIONS(5589), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [144213] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152056] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5925), 1, + ACTIONS(5972), 1, anon_sym_RBRACK, - STATE(3568), 1, - aux_sym_val_binary_repeat1, - STATE(3576), 1, + STATE(3802), 1, sym_comment, - [144229] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152072] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4513), 1, - anon_sym_EQ, - ACTIONS(5927), 1, - anon_sym_AT, - STATE(2832), 1, - sym_param_cmd, - STATE(3577), 1, + ACTIONS(2355), 1, + anon_sym_RPAREN, + ACTIONS(5974), 1, + anon_sym_SEMI, + ACTIONS(5976), 1, + anon_sym_LF, + STATE(3803), 1, sym_comment, - [144245] = 5, - ACTIONS(147), 1, + [152088] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4262), 1, + ACTIONS(4226), 1, anon_sym_PIPE, - ACTIONS(5929), 1, + ACTIONS(5978), 1, anon_sym_EQ_GT, - STATE(3578), 1, + STATE(3804), 1, sym_comment, - STATE(3600), 1, + STATE(3849), 1, aux_sym__match_or_pattern_repeat1, - [144261] = 5, - ACTIONS(147), 1, + [152104] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5931), 1, + ACTIONS(5980), 1, anon_sym_RBRACK, - STATE(3550), 1, - aux_sym_val_binary_repeat1, - STATE(3579), 1, + STATE(3805), 1, sym_comment, - [144277] = 5, - ACTIONS(147), 1, + STATE(3813), 1, + aux_sym_val_binary_repeat1, + [152120] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5933), 1, + ACTIONS(5982), 1, anon_sym_RBRACK, - STATE(3573), 1, + STATE(3801), 1, aux_sym_val_binary_repeat1, - STATE(3580), 1, + STATE(3806), 1, sym_comment, - [144293] = 4, + [152136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5937), 1, + ACTIONS(5986), 1, anon_sym_LF, - STATE(3581), 1, + STATE(3807), 1, sym_comment, - ACTIONS(5935), 2, + ACTIONS(5984), 2, anon_sym_SEMI, anon_sym_RPAREN, - [144307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_LPAREN, - STATE(3582), 1, - sym_comment, - ACTIONS(5941), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [144321] = 5, - ACTIONS(147), 1, + [152150] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(5929), 1, - anon_sym_EQ_GT, - STATE(3583), 1, + ACTIONS(5934), 1, + anon_sym_COLON, + ACTIONS(5988), 1, + anon_sym_EQ, + STATE(3808), 1, sym_comment, - STATE(3598), 1, - aux_sym__match_or_pattern_repeat1, - [144337] = 3, - ACTIONS(147), 1, + STATE(4093), 1, + sym_param_type, + [152166] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3584), 1, + ACTIONS(5992), 1, + anon_sym_LF, + STATE(3809), 1, sym_comment, - ACTIONS(1615), 3, - sym_identifier, - anon_sym_DASH_DASH, - sym_short_flag, - [144349] = 4, + ACTIONS(5990), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [152180] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5848), 1, + ACTIONS(5639), 1, anon_sym_SEMI, - STATE(3585), 1, + STATE(3810), 1, sym_comment, - ACTIONS(5850), 2, + ACTIONS(5641), 2, ts_builtin_sym_end, anon_sym_LF, - [144363] = 5, - ACTIONS(147), 1, + [152194] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5943), 1, + ACTIONS(5994), 1, anon_sym_RBRACK, - STATE(3586), 1, + STATE(3811), 1, sym_comment, - STATE(3593), 1, + STATE(3836), 1, aux_sym_val_binary_repeat1, - [144379] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5947), 1, - anon_sym_LF, - STATE(3587), 1, - sym_comment, - ACTIONS(5945), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [144393] = 4, + [152210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5951), 1, - anon_sym_LF, - STATE(3588), 1, + ACTIONS(5996), 1, + anon_sym_LPAREN, + STATE(3812), 1, sym_comment, - ACTIONS(5949), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [144407] = 4, - ACTIONS(3), 1, + ACTIONS(5998), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [152224] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5852), 1, - anon_sym_SEMI, - STATE(3589), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6000), 1, + anon_sym_RBRACK, + STATE(3813), 1, sym_comment, - ACTIONS(5854), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144421] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152240] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5953), 1, + ACTIONS(6002), 1, anon_sym_RBRACK, - STATE(3572), 1, + STATE(3814), 1, + sym_comment, + STATE(3846), 1, aux_sym_val_binary_repeat1, - STATE(3590), 1, + [152256] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6004), 1, + anon_sym_LPAREN, + STATE(3815), 1, sym_comment, - [144437] = 5, - ACTIONS(147), 1, + ACTIONS(6006), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [152270] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5900), 1, + ACTIONS(5934), 1, anon_sym_COLON, - ACTIONS(5955), 1, + ACTIONS(6008), 1, anon_sym_EQ, - STATE(3591), 1, + STATE(3816), 1, sym_comment, - STATE(3868), 1, + STATE(4020), 1, sym_param_type, - [144453] = 4, + [152286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5959), 1, - anon_sym_LF, - STATE(3592), 1, + ACTIONS(5647), 1, + anon_sym_LPAREN, + STATE(3817), 1, sym_comment, - ACTIONS(5957), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [144467] = 5, - ACTIONS(147), 1, + ACTIONS(5649), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [152300] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5961), 1, + ACTIONS(6010), 1, anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3593), 1, + STATE(3818), 1, sym_comment, - [144483] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152316] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5963), 1, - anon_sym_RBRACK, - STATE(3594), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_LF, + STATE(1923), 1, + aux_sym_pipe_element_repeat1, + STATE(3819), 1, sym_comment, - STATE(3603), 1, - aux_sym_val_binary_repeat1, - [144499] = 5, - ACTIONS(147), 1, + [152332] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5965), 1, + ACTIONS(6012), 1, anon_sym_RBRACK, - STATE(3572), 1, + STATE(3814), 1, aux_sym_val_binary_repeat1, - STATE(3595), 1, + STATE(3820), 1, sym_comment, - [144515] = 5, - ACTIONS(147), 1, + [152348] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5967), 1, - anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3596), 1, + ACTIONS(5643), 1, + anon_sym_SEMI, + STATE(3821), 1, sym_comment, - [144531] = 4, + ACTIONS(5645), 2, + ts_builtin_sym_end, + anon_sym_LF, + [152362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5971), 1, + ACTIONS(6016), 1, anon_sym_LF, - STATE(3597), 1, + STATE(3822), 1, sym_comment, - ACTIONS(5969), 2, + ACTIONS(6014), 2, anon_sym_SEMI, anon_sym_RPAREN, - [144545] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(5973), 1, - anon_sym_EQ_GT, - STATE(3598), 1, - sym_comment, - STATE(3600), 1, - aux_sym__match_or_pattern_repeat1, - [144561] = 5, - ACTIONS(147), 1, + [152376] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5975), 1, + ACTIONS(6018), 1, anon_sym_RBRACK, - STATE(3599), 1, + STATE(3823), 1, sym_comment, - STATE(3606), 1, + STATE(3860), 1, aux_sym_val_binary_repeat1, - [144577] = 4, - ACTIONS(147), 1, + [152392] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_EQ_GT, - ACTIONS(5977), 1, - anon_sym_PIPE, - STATE(3600), 2, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6020), 1, + anon_sym_RBRACK, + STATE(3824), 1, sym_comment, - aux_sym__match_or_pattern_repeat1, - [144591] = 4, - ACTIONS(3), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152408] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5627), 1, - anon_sym_SEMI, - STATE(3601), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6022), 1, + anon_sym_RBRACK, + STATE(3825), 1, sym_comment, - ACTIONS(5629), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144605] = 5, - ACTIONS(147), 1, + STATE(3832), 1, + aux_sym_val_binary_repeat1, + [152424] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5900), 1, + ACTIONS(5934), 1, anon_sym_COLON, - ACTIONS(5980), 1, + ACTIONS(6024), 1, anon_sym_EQ, - STATE(3602), 1, + STATE(3826), 1, sym_comment, - STATE(3716), 1, + STATE(3995), 1, sym_param_type, - [144621] = 5, - ACTIONS(147), 1, + [152440] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5982), 1, - anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3603), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_LF, + STATE(1901), 1, + aux_sym_pipe_element_repeat1, + STATE(3827), 1, sym_comment, - [144637] = 4, + [152456] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5986), 1, + ACTIONS(6028), 1, anon_sym_LF, - STATE(3604), 1, + STATE(3828), 1, sym_comment, - ACTIONS(5984), 2, + ACTIONS(6026), 2, anon_sym_SEMI, anon_sym_RPAREN, - [144651] = 5, - ACTIONS(147), 1, + [152470] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5988), 1, - anon_sym_RBRACK, - STATE(3605), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_LF, + STATE(1899), 1, + aux_sym_pipe_element_repeat1, + STATE(3829), 1, sym_comment, - STATE(3617), 1, - aux_sym_val_binary_repeat1, - [144667] = 5, - ACTIONS(147), 1, + [152486] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5990), 1, - anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3606), 1, + ACTIONS(6032), 1, + anon_sym_LF, + STATE(3830), 1, sym_comment, - [144683] = 5, - ACTIONS(147), 1, + ACTIONS(6030), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [152500] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(5992), 1, - anon_sym_RBRACK, - STATE(3569), 1, - aux_sym_val_binary_repeat1, - STATE(3607), 1, + ACTIONS(5934), 1, + anon_sym_COLON, + ACTIONS(6034), 1, + anon_sym_EQ, + STATE(3831), 1, sym_comment, - [144699] = 5, - ACTIONS(147), 1, + STATE(3974), 1, + sym_param_type, + [152516] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5994), 1, + ACTIONS(6036), 1, anon_sym_RBRACK, - STATE(3608), 1, + STATE(3832), 1, sym_comment, - STATE(3627), 1, + STATE(3846), 1, aux_sym_val_binary_repeat1, - [144715] = 5, - ACTIONS(147), 1, + [152532] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_LF, + STATE(1921), 1, + aux_sym_pipe_element_repeat1, + STATE(3833), 1, + sym_comment, + [152548] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5996), 1, + ACTIONS(6038), 1, anon_sym_RBRACK, - STATE(3572), 1, + STATE(3824), 1, aux_sym_val_binary_repeat1, - STATE(3609), 1, + STATE(3834), 1, sym_comment, - [144731] = 5, + [152564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, anon_sym_LF, - STATE(1053), 1, - sym__terminator, - STATE(3610), 1, + STATE(1896), 1, + aux_sym_pipe_element_repeat1, + STATE(3835), 1, sym_comment, - [144747] = 4, - ACTIONS(3), 1, + [152580] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_SEMI, - STATE(3611), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6040), 1, + anon_sym_RBRACK, + STATE(3836), 1, sym_comment, - ACTIONS(5571), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144761] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152596] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(5998), 1, + ACTIONS(6042), 1, anon_sym_RBRACK, - STATE(3596), 1, + STATE(3837), 1, + sym_comment, + STATE(3838), 1, aux_sym_val_binary_repeat1, - STATE(3612), 1, + [152612] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6044), 1, + anon_sym_RBRACK, + STATE(3838), 1, sym_comment, - [144777] = 5, - ACTIONS(147), 1, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152628] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5900), 1, - anon_sym_COLON, - ACTIONS(6000), 1, - anon_sym_EQ, - STATE(3613), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6046), 1, + anon_sym_RBRACK, + STATE(3839), 1, sym_comment, - STATE(3695), 1, - sym_param_type, - [144793] = 4, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + [152644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6002), 1, + ACTIONS(5820), 1, + anon_sym_SEMI, + STATE(3840), 1, + sym_comment, + ACTIONS(5822), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3614), 1, + [152658] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_SEMI, + STATE(3841), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2343), 2, + ts_builtin_sym_end, + anon_sym_LF, + [152672] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2237), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [144807] = 5, + STATE(3842), 1, + sym_comment, + ACTIONS(2413), 2, + ts_builtin_sym_end, + anon_sym_LF, + [152686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(2123), 1, anon_sym_SEMI, - ACTIONS(2071), 1, + ACTIONS(2125), 1, anon_sym_LF, - STATE(1030), 1, + STATE(1132), 1, sym__terminator, - STATE(3615), 1, + STATE(3843), 1, sym_comment, - [144823] = 5, - ACTIONS(147), 1, + [152702] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(6004), 1, + ACTIONS(6048), 1, anon_sym_RBRACK, - STATE(3609), 1, - aux_sym_val_binary_repeat1, - STATE(3616), 1, + STATE(3844), 1, sym_comment, - [144839] = 5, - ACTIONS(147), 1, + STATE(3851), 1, + aux_sym_val_binary_repeat1, + [152718] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(6006), 1, + ACTIONS(6050), 1, anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3617), 1, + STATE(3845), 1, sym_comment, - [144855] = 5, - ACTIONS(147), 1, + STATE(3858), 1, + aux_sym_val_binary_repeat1, + [152734] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(6008), 1, + ACTIONS(6052), 1, anon_sym_RBRACK, - STATE(3618), 1, + ACTIONS(6054), 1, + sym_hex_digit, + STATE(3846), 2, sym_comment, - STATE(3625), 1, aux_sym_val_binary_repeat1, - [144871] = 4, + [152748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(5812), 1, anon_sym_SEMI, - STATE(3619), 1, + STATE(3847), 1, sym_comment, - ACTIONS(5538), 2, + ACTIONS(5814), 2, ts_builtin_sym_end, anon_sym_LF, - [144885] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(6010), 1, - anon_sym_RBRACK, - STATE(3571), 1, - aux_sym_val_binary_repeat1, - STATE(3620), 1, - sym_comment, - [144901] = 4, + [152762] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(5796), 1, + anon_sym_SEMI, + STATE(3848), 1, + sym_comment, + ACTIONS(5798), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3621), 1, + [152776] = 5, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(4226), 1, + anon_sym_PIPE, + ACTIONS(6057), 1, + anon_sym_EQ_GT, + STATE(3849), 1, sym_comment, - ACTIONS(2359), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [144915] = 5, - ACTIONS(3), 1, + STATE(3850), 1, + aux_sym__match_or_pattern_repeat1, + [152792] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(4400), 1, + anon_sym_EQ_GT, + ACTIONS(6059), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_LF, - STATE(1784), 1, - aux_sym_pipe_element_repeat1, - STATE(3622), 1, + STATE(3850), 2, sym_comment, - [144931] = 4, - ACTIONS(3), 1, + aux_sym__match_or_pattern_repeat1, + [152806] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LF, - STATE(3623), 1, + ACTIONS(5918), 1, + sym_hex_digit, + ACTIONS(6062), 1, + anon_sym_RBRACK, + STATE(3846), 1, + aux_sym_val_binary_repeat1, + STATE(3851), 1, sym_comment, - ACTIONS(6014), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [144945] = 4, + [152822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, + ACTIONS(5755), 1, anon_sym_SEMI, - STATE(3624), 1, + STATE(3852), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(5757), 2, ts_builtin_sym_end, anon_sym_LF, - [144959] = 5, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(6018), 1, - anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3625), 1, - sym_comment, - [144975] = 4, + [152836] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(5749), 1, anon_sym_SEMI, - STATE(3626), 1, + STATE(3853), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(5751), 2, ts_builtin_sym_end, anon_sym_LF, - [144989] = 5, - ACTIONS(147), 1, + [152850] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym_hex_digit, - ACTIONS(6020), 1, - anon_sym_RBRACK, - STATE(3572), 1, - aux_sym_val_binary_repeat1, - STATE(3627), 1, + ACTIONS(4226), 1, + anon_sym_PIPE, + ACTIONS(5978), 1, + anon_sym_EQ_GT, + STATE(3850), 1, + aux_sym__match_or_pattern_repeat1, + STATE(3854), 1, sym_comment, - [145005] = 4, + [152866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5560), 1, + ACTIONS(5745), 1, anon_sym_SEMI, - STATE(3628), 1, + STATE(3855), 1, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5747), 2, ts_builtin_sym_end, anon_sym_LF, - [145019] = 5, - ACTIONS(147), 1, + [152880] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5900), 1, - anon_sym_COLON, - ACTIONS(6022), 1, + ACTIONS(4505), 1, anon_sym_EQ, - STATE(3629), 1, + ACTIONS(6064), 1, + anon_sym_AT, + STATE(3059), 1, + sym_param_cmd, + STATE(3856), 1, sym_comment, - STATE(3833), 1, - sym_param_type, - [145035] = 4, + [152896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5554), 1, - anon_sym_SEMI, - STATE(3630), 1, + ACTIONS(6066), 1, + anon_sym_DQUOTE, + STATE(3857), 1, sym_comment, - ACTIONS(5556), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145049] = 5, - ACTIONS(147), 1, + ACTIONS(6068), 2, + sym__escaped_str_content, + sym_escape_sequence, + [152910] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(6024), 1, + ACTIONS(6070), 1, anon_sym_RBRACK, - STATE(3590), 1, + STATE(3846), 1, aux_sym_val_binary_repeat1, - STATE(3631), 1, + STATE(3858), 1, sym_comment, - [145065] = 4, + [152926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2105), 1, - anon_sym_SEMI, - STATE(3632), 1, - sym_comment, - ACTIONS(2107), 2, - ts_builtin_sym_end, + ACTIONS(6074), 1, anon_sym_LF, - [145079] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6026), 1, - anon_sym_COMMA, - STATE(3633), 1, + STATE(3859), 1, sym_comment, - ACTIONS(6028), 2, - anon_sym_RBRACK, - sym_hex_digit, - [145093] = 5, - ACTIONS(147), 1, + ACTIONS(6072), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [152940] = 5, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5918), 1, sym_hex_digit, - ACTIONS(6030), 1, + ACTIONS(6076), 1, anon_sym_RBRACK, - STATE(3595), 1, + STATE(3846), 1, aux_sym_val_binary_repeat1, - STATE(3634), 1, + STATE(3860), 1, sym_comment, - [145109] = 4, + [152956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5544), 1, - anon_sym_SEMI, - STATE(3635), 1, - sym_comment, - ACTIONS(5546), 2, - ts_builtin_sym_end, + ACTIONS(6080), 1, anon_sym_LF, - [145123] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6032), 1, + STATE(3861), 1, + sym_comment, + ACTIONS(6078), 2, anon_sym_SEMI, - ACTIONS(6034), 1, - anon_sym_LF, - ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(3636), 1, - sym_comment, - [145139] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3637), 1, - sym_comment, - ACTIONS(6038), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [145150] = 4, - ACTIONS(147), 1, + [152970] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(851), 1, + STATE(1098), 1, sym_block, - STATE(3638), 1, + STATE(3862), 1, sym_comment, - [145163] = 4, - ACTIONS(147), 1, + [152983] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4400), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(3071), 1, + STATE(958), 1, sym_block, - STATE(3639), 1, + STATE(3863), 1, sym_comment, - [145176] = 4, - ACTIONS(147), 1, + [152996] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4398), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(3185), 1, + STATE(1021), 1, sym_block, - STATE(3640), 1, + STATE(3864), 1, sym_comment, - [145189] = 4, - ACTIONS(147), 1, + [153009] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(1000), 1, sym_block, - STATE(3641), 1, + STATE(3865), 1, sym_comment, - [145202] = 4, - ACTIONS(147), 1, + [153022] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(994), 1, sym_block, - STATE(3642), 1, + STATE(3866), 1, sym_comment, - [145215] = 4, - ACTIONS(147), 1, + [153035] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6082), 1, anon_sym_LBRACE, - STATE(3057), 1, + STATE(3282), 1, sym_block, - STATE(3643), 1, + STATE(3867), 1, sym_comment, - [145228] = 4, - ACTIONS(147), 1, + [153048] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(870), 1, + STATE(1022), 1, sym_block, - STATE(3644), 1, + STATE(3868), 1, sym_comment, - [145241] = 4, - ACTIONS(147), 1, + [153061] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_block, - STATE(3645), 1, + STATE(3869), 1, sym_comment, - [145254] = 4, - ACTIONS(147), 1, + ACTIONS(6084), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [153072] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(1545), 1, - anon_sym_in, - ACTIONS(6042), 1, - aux_sym_long_flag_token1, - STATE(3646), 1, + STATE(3870), 1, sym_comment, - [145267] = 4, - ACTIONS(147), 1, + ACTIONS(6086), 2, + anon_sym_RBRACK, + sym_hex_digit, + [153083] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_LBRACE, - STATE(978), 1, - sym_block, - STATE(3647), 1, + ACTIONS(6088), 1, + anon_sym_COMMA, + ACTIONS(6090), 1, + anon_sym_RBRACE, + STATE(3871), 1, sym_comment, - [145280] = 4, - ACTIONS(147), 1, + [153096] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4394), 1, - anon_sym_LBRACE, - STATE(770), 1, - sym_block, - STATE(3648), 1, + STATE(3872), 1, sym_comment, - [145293] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4980), 1, + ACTIONS(2317), 2, + anon_sym_COLON, anon_sym_LBRACE, - STATE(954), 1, - sym_val_record, - STATE(3649), 1, - sym_comment, - [145306] = 4, - ACTIONS(147), 1, + [153107] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(989), 1, sym_block, - STATE(3650), 1, + STATE(3873), 1, sym_comment, - [145319] = 4, - ACTIONS(147), 1, + [153120] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(1011), 1, sym_block, - STATE(3651), 1, + STATE(3874), 1, sym_comment, - [145332] = 4, - ACTIONS(147), 1, + [153133] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(823), 1, + STATE(1085), 1, sym_block, - STATE(3652), 1, + STATE(3875), 1, sym_comment, - [145345] = 4, - ACTIONS(147), 1, + [153146] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(784), 1, + STATE(1086), 1, sym_block, - STATE(3653), 1, + STATE(3876), 1, sym_comment, - [145358] = 4, - ACTIONS(147), 1, + [153159] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(946), 1, sym_block, - STATE(3654), 1, - sym_comment, - [145371] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(4989), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_val_record, - STATE(3655), 1, + STATE(3877), 1, sym_comment, - [145384] = 4, - ACTIONS(147), 1, + [153172] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(968), 1, + STATE(1050), 1, sym_block, - STATE(3656), 1, + STATE(3878), 1, sym_comment, - [145397] = 4, - ACTIONS(147), 1, + [153185] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(1006), 1, + STATE(920), 1, sym_block, - STATE(3657), 1, + STATE(3879), 1, sym_comment, - [145410] = 4, - ACTIONS(147), 1, + [153198] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(922), 1, sym_block, - STATE(3658), 1, + STATE(3880), 1, sym_comment, - [145423] = 4, - ACTIONS(147), 1, + [153211] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(944), 1, sym_block, - STATE(3659), 1, + STATE(3881), 1, sym_comment, - [145436] = 4, - ACTIONS(147), 1, + [153224] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(888), 1, - sym_block, - STATE(3660), 1, + ACTIONS(6092), 1, + anon_sym_DASH, + STATE(3882), 1, sym_comment, - [145449] = 4, - ACTIONS(147), 1, + STATE(4035), 1, + sym_param_short_flag, + [153237] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(6082), 1, anon_sym_LBRACE, - STATE(1009), 1, + STATE(826), 1, sym_block, - STATE(3661), 1, + STATE(3883), 1, sym_comment, - [145462] = 4, - ACTIONS(147), 1, + [153250] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(820), 1, + STATE(1033), 1, sym_block, - STATE(3662), 1, + STATE(3884), 1, sym_comment, - [145475] = 4, - ACTIONS(147), 1, + [153263] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(818), 1, - sym_block, - STATE(3663), 1, + STATE(3885), 1, sym_comment, - [145488] = 4, - ACTIONS(147), 1, + ACTIONS(2321), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [153274] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(1045), 1, sym_block, - STATE(3664), 1, + STATE(3886), 1, sym_comment, - [145501] = 3, - ACTIONS(147), 1, + [153287] = 3, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3665), 1, + STATE(3887), 1, sym_comment, - ACTIONS(2217), 2, + ACTIONS(2329), 2, anon_sym_COLON, anon_sym_LBRACE, - [145512] = 3, - ACTIONS(147), 1, + [153298] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3666), 1, - sym_comment, - ACTIONS(2201), 2, - anon_sym_COLON, + ACTIONS(5021), 1, anon_sym_LBRACE, - [145523] = 4, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6046), 1, - anon_sym_DASH, - STATE(3667), 1, + STATE(999), 1, + sym_val_record, + STATE(3888), 1, sym_comment, - STATE(3831), 1, - sym_param_short_flag, - [145536] = 3, - ACTIONS(147), 1, + [153311] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3668), 1, - sym_comment, - ACTIONS(2213), 2, - anon_sym_COLON, + ACTIONS(4142), 1, anon_sym_LBRACE, - [145547] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - STATE(3669), 1, + STATE(1004), 1, + sym_block, + STATE(3889), 1, sym_comment, - ACTIONS(2181), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [145558] = 4, - ACTIONS(147), 1, + [153324] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(986), 1, sym_block, - STATE(3670), 1, + STATE(3890), 1, sym_comment, - [145571] = 4, - ACTIONS(147), 1, + [153337] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(1035), 1, sym_block, - STATE(3671), 1, + STATE(3891), 1, sym_comment, - [145584] = 4, - ACTIONS(147), 1, + [153350] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(749), 1, + STATE(1068), 1, sym_block, - STATE(3672), 1, + STATE(3892), 1, sym_comment, - [145597] = 3, - ACTIONS(147), 1, + [153363] = 4, + ACTIONS(157), 1, anon_sym_POUND, - STATE(3673), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_block, + STATE(3893), 1, sym_comment, - ACTIONS(6048), 2, - anon_sym_RBRACK, - sym_hex_digit, - [145608] = 4, - ACTIONS(147), 1, + [153376] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(962), 1, - sym_block, - STATE(3674), 1, + STATE(1051), 1, + sym_val_record, + STATE(3894), 1, sym_comment, - [145621] = 4, - ACTIONS(147), 1, + [153389] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - STATE(3129), 1, + STATE(834), 1, sym_block, - STATE(3675), 1, + STATE(3895), 1, sym_comment, - [145634] = 4, - ACTIONS(147), 1, + [153402] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(976), 1, + STATE(1042), 1, sym_block, - STATE(3676), 1, + STATE(3896), 1, sym_comment, - [145647] = 4, - ACTIONS(147), 1, + [153415] = 3, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6050), 1, - anon_sym_COMMA, - ACTIONS(6052), 1, - anon_sym_RBRACE, - STATE(3677), 1, + STATE(3897), 1, sym_comment, - [145660] = 4, - ACTIONS(147), 1, + ACTIONS(2333), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [153426] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4404), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(3241), 1, sym_block, - STATE(3678), 1, + STATE(3898), 1, sym_comment, - [145673] = 4, - ACTIONS(147), 1, + [153439] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(1049), 1, sym_block, - STATE(3679), 1, + STATE(3899), 1, sym_comment, - [145686] = 4, - ACTIONS(147), 1, + [153452] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(834), 1, - sym_block, - STATE(3680), 1, + ACTIONS(1553), 1, + anon_sym_in, + ACTIONS(6094), 1, + aux_sym_long_flag_token1, + STATE(3900), 1, sym_comment, - [145699] = 4, - ACTIONS(147), 1, + [153465] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4396), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(859), 1, sym_block, - STATE(3681), 1, + STATE(3901), 1, sym_comment, - [145712] = 4, - ACTIONS(147), 1, + [153478] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(936), 1, sym_block, - STATE(3682), 1, + STATE(3902), 1, sym_comment, - [145725] = 4, - ACTIONS(147), 1, + [153491] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(937), 1, sym_block, - STATE(3683), 1, + STATE(3903), 1, sym_comment, - [145738] = 4, - ACTIONS(147), 1, + [153504] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4043), 1, + ACTIONS(6096), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(901), 1, sym_block, - STATE(3684), 1, + STATE(3904), 1, sym_comment, - [145751] = 4, - ACTIONS(147), 1, + [153517] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(872), 1, + STATE(938), 1, sym_block, - STATE(3685), 1, + STATE(3905), 1, sym_comment, - [145764] = 4, - ACTIONS(147), 1, + [153530] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(1077), 1, sym_block, - STATE(3686), 1, + STATE(3906), 1, sym_comment, - [145777] = 4, - ACTIONS(147), 1, + [153543] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(871), 1, + STATE(1082), 1, sym_block, - STATE(3687), 1, - sym_comment, - [145790] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6054), 1, - anon_sym_RBRACE, - STATE(3688), 1, - sym_comment, - [145800] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6056), 1, - anon_sym_LBRACK2, - STATE(3689), 1, - sym_comment, - [145810] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2681), 1, - anon_sym_RBRACE, - STATE(3690), 1, - sym_comment, - [145820] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6058), 1, - anon_sym_EQ_GT, - STATE(3691), 1, - sym_comment, - [145830] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - anon_sym_EQ, - STATE(3692), 1, - sym_comment, - [145840] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6062), 1, - anon_sym_RPAREN, - STATE(3693), 1, - sym_comment, - [145850] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6064), 1, - anon_sym_RBRACE, - STATE(3694), 1, - sym_comment, - [145860] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6066), 1, - anon_sym_EQ, - STATE(3695), 1, - sym_comment, - [145870] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_EQ, - STATE(3696), 1, - sym_comment, - [145880] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_RPAREN, - STATE(3697), 1, - sym_comment, - [145890] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_RPAREN, - STATE(3698), 1, - sym_comment, - [145900] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6074), 1, - anon_sym_RBRACE, - STATE(3699), 1, - sym_comment, - [145910] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6076), 1, - anon_sym_RBRACE, - STATE(3700), 1, - sym_comment, - [145920] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6078), 1, - anon_sym_RPAREN, - STATE(3701), 1, - sym_comment, - [145930] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6080), 1, - anon_sym_RPAREN, - STATE(3702), 1, - sym_comment, - [145940] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_RBRACE, - STATE(3703), 1, - sym_comment, - [145950] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6084), 1, - anon_sym_RBRACE, - STATE(3704), 1, + STATE(3907), 1, sym_comment, - [145960] = 3, - ACTIONS(147), 1, + [153556] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6086), 1, - anon_sym_RBRACE, - STATE(3705), 1, - sym_comment, - [145970] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6088), 1, - anon_sym_RPAREN, - STATE(3706), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_block, + STATE(3908), 1, sym_comment, - [145980] = 3, - ACTIONS(147), 1, + [153569] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6090), 1, - anon_sym_RBRACE, - STATE(3707), 1, + ACTIONS(6096), 1, + anon_sym_LBRACE, + STATE(3330), 1, + sym_block, + STATE(3909), 1, sym_comment, - [145990] = 3, - ACTIONS(147), 1, + [153582] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_RPAREN, - STATE(3708), 1, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_block, + STATE(3910), 1, sym_comment, - [146000] = 3, - ACTIONS(147), 1, + [153595] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6094), 1, - anon_sym_RPAREN, - STATE(3709), 1, + ACTIONS(4394), 1, + anon_sym_LBRACE, + STATE(3444), 1, + sym_block, + STATE(3911), 1, sym_comment, - [146010] = 3, - ACTIONS(147), 1, + [153608] = 4, + ACTIONS(157), 1, anon_sym_POUND, - ACTIONS(6096), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(3710), 1, + STATE(1048), 1, + sym_block, + STATE(3912), 1, sym_comment, - [146020] = 3, - ACTIONS(147), 1, + [153621] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6098), 1, anon_sym_RPAREN, - STATE(3711), 1, - sym_comment, - [146030] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1573), 1, - anon_sym_in, - STATE(3712), 1, - sym_comment, - [146040] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(3609), 1, - anon_sym_PIPE, - STATE(3713), 1, + STATE(3913), 1, sym_comment, - [146050] = 3, - ACTIONS(147), 1, + [153631] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6100), 1, - anon_sym_RPAREN, - STATE(3714), 1, + anon_sym_LBRACK2, + STATE(3914), 1, sym_comment, - [146060] = 3, - ACTIONS(147), 1, + [153641] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6102), 1, anon_sym_RBRACE, - STATE(3715), 1, + STATE(3915), 1, sym_comment, - [146070] = 3, - ACTIONS(147), 1, + [153651] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6104), 1, - anon_sym_EQ, - STATE(3716), 1, + sym_identifier, + STATE(3916), 1, sym_comment, - [146080] = 3, - ACTIONS(147), 1, + [153661] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6106), 1, - anon_sym_make, - STATE(3717), 1, + anon_sym_RPAREN, + STATE(3917), 1, sym_comment, - [146090] = 3, - ACTIONS(147), 1, + [153671] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6108), 1, - anon_sym_LBRACE, - STATE(3718), 1, + anon_sym_RBRACE, + STATE(3918), 1, sym_comment, - [146100] = 3, - ACTIONS(147), 1, + [153681] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6110), 1, - anon_sym_DASH_GT, - STATE(3719), 1, + sym_identifier, + STATE(3919), 1, sym_comment, - [146110] = 3, - ACTIONS(147), 1, + [153691] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6112), 1, - anon_sym_LBRACK2, - STATE(3720), 1, + aux_sym_param_short_flag_token1, + STATE(3920), 1, sym_comment, - [146120] = 3, - ACTIONS(147), 1, + [153701] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6114), 1, - anon_sym_EQ_GT, - STATE(3721), 1, + anon_sym_RPAREN, + STATE(3921), 1, sym_comment, - [146130] = 3, - ACTIONS(147), 1, + [153711] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6116), 1, - anon_sym_RPAREN, - STATE(3722), 1, + anon_sym_in, + STATE(3922), 1, sym_comment, - [146140] = 3, - ACTIONS(147), 1, + [153721] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(3723), 1, + anon_sym_EQ, + STATE(3923), 1, sym_comment, - [146150] = 3, - ACTIONS(147), 1, + [153731] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6120), 1, - anon_sym_EQ, - STATE(3724), 1, + anon_sym_RPAREN, + STATE(3924), 1, sym_comment, - [146160] = 3, - ACTIONS(147), 1, + [153741] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6122), 1, - anon_sym_DASH_GT, - STATE(3725), 1, + anon_sym_RPAREN, + STATE(3925), 1, sym_comment, - [146170] = 3, - ACTIONS(3), 1, + [153751] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6124), 1, - aux_sym_comment_token1, - STATE(3726), 1, + anon_sym_SEMI, + STATE(3926), 1, sym_comment, - [146180] = 3, - ACTIONS(147), 1, + [153761] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6126), 1, - aux_sym_param_short_flag_token1, - STATE(3727), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_comment, - [146190] = 3, - ACTIONS(147), 1, + [153771] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6128), 1, - sym_cmd_identifier, - STATE(3728), 1, + anon_sym_RBRACE, + STATE(3928), 1, sym_comment, - [146200] = 3, - ACTIONS(147), 1, + [153781] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6130), 1, anon_sym_RPAREN, - STATE(3729), 1, + STATE(3929), 1, sym_comment, - [146210] = 3, - ACTIONS(147), 1, + [153791] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6132), 1, anon_sym_RBRACE, - STATE(3730), 1, + STATE(3930), 1, sym_comment, - [146220] = 3, - ACTIONS(147), 1, + [153801] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6134), 1, - anon_sym_RBRACE, - STATE(3731), 1, + sym_identifier, + STATE(3931), 1, + sym_comment, + [153811] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1710), 1, + anon_sym_in, + STATE(3932), 1, + sym_comment, + [153821] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(1718), 1, + anon_sym_in, + STATE(3933), 1, sym_comment, - [146230] = 3, - ACTIONS(147), 1, + [153831] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6136), 1, anon_sym_RPAREN, - STATE(3732), 1, + STATE(3934), 1, + sym_comment, + [153841] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2813), 1, + anon_sym_RBRACE, + STATE(3935), 1, sym_comment, - [146240] = 3, - ACTIONS(147), 1, + [153851] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6138), 1, anon_sym_RPAREN, - STATE(3733), 1, + STATE(3936), 1, sym_comment, - [146250] = 3, - ACTIONS(147), 1, + [153861] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6140), 1, anon_sym_RPAREN, - STATE(3734), 1, + STATE(3937), 1, sym_comment, - [146260] = 3, - ACTIONS(147), 1, + [153871] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6142), 1, - anon_sym_DOT, - STATE(3735), 1, + anon_sym_RBRACE, + STATE(3938), 1, sym_comment, - [146270] = 3, - ACTIONS(147), 1, + [153881] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6144), 1, - anon_sym_DOLLAR, - STATE(3736), 1, + anon_sym_RPAREN, + STATE(3939), 1, sym_comment, - [146280] = 3, - ACTIONS(147), 1, + [153891] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6146), 1, anon_sym_RBRACE, - STATE(3737), 1, + STATE(3940), 1, sym_comment, - [146290] = 3, - ACTIONS(147), 1, + [153901] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6148), 1, - anon_sym_RBRACE, - STATE(3738), 1, + anon_sym_RPAREN, + STATE(3941), 1, sym_comment, - [146300] = 3, - ACTIONS(147), 1, + [153911] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6150), 1, anon_sym_RPAREN, - STATE(3739), 1, + STATE(3942), 1, sym_comment, - [146310] = 3, - ACTIONS(147), 1, + [153921] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6152), 1, - anon_sym_DOLLAR, - STATE(3740), 1, + anon_sym_make, + STATE(3943), 1, sym_comment, - [146320] = 3, - ACTIONS(147), 1, + [153931] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6154), 1, - sym_identifier, - STATE(3741), 1, + anon_sym_RBRACE, + STATE(3944), 1, sym_comment, - [146330] = 3, - ACTIONS(147), 1, + [153941] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6156), 1, - anon_sym_EQ, - STATE(3742), 1, + anon_sym_RBRACE, + STATE(3945), 1, sym_comment, - [146340] = 3, - ACTIONS(147), 1, + [153951] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6158), 1, - anon_sym_EQ, - STATE(3743), 1, + anon_sym_LBRACK2, + STATE(3946), 1, sym_comment, - [146350] = 3, - ACTIONS(147), 1, + [153961] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6160), 1, - anon_sym_RPAREN, - STATE(3744), 1, + anon_sym_GT, + STATE(3947), 1, sym_comment, - [146360] = 3, - ACTIONS(147), 1, + [153971] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6162), 1, - anon_sym_RBRACE, - STATE(3745), 1, - sym_comment, - [146370] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(6108), 1, - anon_sym_LBRACE, - STATE(3746), 1, + anon_sym_RPAREN, + STATE(3948), 1, sym_comment, - [146380] = 3, - ACTIONS(147), 1, + [153981] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6164), 1, - sym_identifier, - STATE(3747), 1, + anon_sym_EQ, + STATE(3949), 1, sym_comment, - [146390] = 3, - ACTIONS(147), 1, + [153991] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6166), 1, - anon_sym_LBRACK2, - STATE(3748), 1, + anon_sym_RPAREN, + STATE(3950), 1, sym_comment, - [146400] = 3, - ACTIONS(147), 1, + [154001] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6168), 1, - anon_sym_RBRACK, - STATE(3749), 1, + anon_sym_RBRACE, + STATE(3951), 1, sym_comment, - [146410] = 3, - ACTIONS(147), 1, + [154011] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6170), 1, - anon_sym_RBRACE, - STATE(3750), 1, + aux_sym_comment_token1, + STATE(3952), 1, sym_comment, - [146420] = 3, - ACTIONS(147), 1, + [154021] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6172), 1, - anon_sym_EQ, - STATE(3751), 1, + anon_sym_RBRACE, + STATE(3953), 1, sym_comment, - [146430] = 3, - ACTIONS(147), 1, + [154031] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6174), 1, - anon_sym_RPAREN, - STATE(3752), 1, + anon_sym_RBRACE, + STATE(3954), 1, sym_comment, - [146440] = 3, - ACTIONS(147), 1, + [154041] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6176), 1, - anon_sym_RBRACK, - STATE(3753), 1, + anon_sym_RBRACE, + STATE(3955), 1, sym_comment, - [146450] = 3, - ACTIONS(147), 1, + [154051] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6178), 1, - anon_sym_LBRACK2, - STATE(3754), 1, + anon_sym_RPAREN, + STATE(3956), 1, sym_comment, - [146460] = 3, - ACTIONS(147), 1, + [154061] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6180), 1, - anon_sym_EQ_GT, - STATE(3755), 1, - sym_comment, - [146470] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(2817), 1, - anon_sym_RBRACE, - STATE(3756), 1, + anon_sym_RPAREN, + STATE(3957), 1, sym_comment, - [146480] = 3, - ACTIONS(147), 1, + [154071] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6182), 1, - anon_sym_RPAREN, - STATE(3757), 1, + anon_sym_RBRACE, + STATE(3958), 1, sym_comment, - [146490] = 3, - ACTIONS(147), 1, + [154081] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6184), 1, - anon_sym_in, - STATE(3758), 1, + anon_sym_RBRACE, + STATE(3959), 1, sym_comment, - [146500] = 3, - ACTIONS(147), 1, + [154091] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6186), 1, - anon_sym_LBRACK2, - STATE(3759), 1, + anon_sym_RPAREN, + STATE(3960), 1, sym_comment, - [146510] = 3, - ACTIONS(147), 1, + [154101] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6188), 1, - anon_sym_EQ_GT, - STATE(3760), 1, + anon_sym_RPAREN, + STATE(3961), 1, sym_comment, - [146520] = 3, - ACTIONS(147), 1, + [154111] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6190), 1, - anon_sym_EQ, - STATE(3761), 1, + anon_sym_RBRACE, + STATE(3962), 1, sym_comment, - [146530] = 3, - ACTIONS(147), 1, + [154121] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6192), 1, anon_sym_RPAREN, - STATE(3762), 1, + STATE(3963), 1, sym_comment, - [146540] = 3, - ACTIONS(147), 1, + [154131] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6194), 1, anon_sym_RBRACE, - STATE(3763), 1, + STATE(3964), 1, sym_comment, - [146550] = 3, - ACTIONS(147), 1, + [154141] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6196), 1, - anon_sym_LBRACK2, - STATE(3764), 1, + anon_sym_RPAREN, + STATE(3965), 1, sym_comment, - [146560] = 3, - ACTIONS(147), 1, + [154151] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6198), 1, - anon_sym_EQ_GT, - STATE(3765), 1, + anon_sym_RBRACE, + STATE(3966), 1, sym_comment, - [146570] = 3, - ACTIONS(147), 1, + [154161] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6200), 1, - sym_cmd_identifier, - STATE(3766), 1, + anon_sym_EQ_GT, + STATE(3967), 1, sym_comment, - [146580] = 3, - ACTIONS(147), 1, + [154171] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6202), 1, - anon_sym_RPAREN, - STATE(3767), 1, + anon_sym_DASH_GT, + STATE(3968), 1, sym_comment, - [146590] = 3, - ACTIONS(147), 1, + [154181] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6204), 1, anon_sym_RBRACE, - STATE(3768), 1, + STATE(3969), 1, sym_comment, - [146600] = 3, - ACTIONS(147), 1, + [154191] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6206), 1, - anon_sym_LBRACK2, - STATE(3769), 1, + anon_sym_RPAREN, + STATE(3970), 1, sym_comment, - [146610] = 3, - ACTIONS(147), 1, + [154201] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6208), 1, - anon_sym_RBRACE, - STATE(3770), 1, + anon_sym_RPAREN, + STATE(3971), 1, sym_comment, - [146620] = 3, - ACTIONS(147), 1, + [154211] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6210), 1, - anon_sym_RPAREN, - STATE(3771), 1, + anon_sym_RBRACE, + STATE(3972), 1, sym_comment, - [146630] = 3, - ACTIONS(147), 1, + [154221] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6212), 1, - anon_sym_RBRACE, - STATE(3772), 1, + anon_sym_LBRACK2, + STATE(3973), 1, sym_comment, - [146640] = 3, - ACTIONS(147), 1, + [154231] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6214), 1, - ts_builtin_sym_end, - STATE(3773), 1, + anon_sym_EQ, + STATE(3974), 1, sym_comment, - [146650] = 3, - ACTIONS(147), 1, + [154241] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6216), 1, - anon_sym_LBRACK2, - STATE(3774), 1, + anon_sym_RBRACE, + STATE(3975), 1, sym_comment, - [146660] = 3, - ACTIONS(147), 1, + [154251] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6218), 1, anon_sym_RBRACE, - STATE(3775), 1, + STATE(3976), 1, sym_comment, - [146670] = 3, - ACTIONS(147), 1, + [154261] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6220), 1, - anon_sym_RBRACE, - STATE(3776), 1, + anon_sym_RPAREN, + STATE(3977), 1, sym_comment, - [146680] = 3, - ACTIONS(147), 1, + [154271] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6222), 1, - anon_sym_RPAREN, - STATE(3777), 1, + anon_sym_RBRACE, + STATE(3978), 1, sym_comment, - [146690] = 3, - ACTIONS(147), 1, + [154281] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6224), 1, - anon_sym_EQ, - STATE(3778), 1, + anon_sym_LBRACK2, + STATE(3979), 1, sym_comment, - [146700] = 3, - ACTIONS(147), 1, + [154291] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6226), 1, - anon_sym_EQ, - STATE(3779), 1, + anon_sym_RPAREN, + STATE(3980), 1, sym_comment, - [146710] = 3, - ACTIONS(147), 1, + [154301] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6228), 1, anon_sym_RBRACE, - STATE(3780), 1, + STATE(3981), 1, sym_comment, - [146720] = 3, - ACTIONS(147), 1, + [154311] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6230), 1, - anon_sym_RPAREN, - STATE(3781), 1, + anon_sym_RBRACE, + STATE(3982), 1, sym_comment, - [146730] = 3, - ACTIONS(147), 1, + [154321] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6232), 1, - anon_sym_GT, - STATE(3782), 1, + anon_sym_EQ_GT, + STATE(3983), 1, sym_comment, - [146740] = 3, - ACTIONS(147), 1, + [154331] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6234), 1, - ts_builtin_sym_end, - STATE(3783), 1, + anon_sym_LBRACK2, + STATE(3984), 1, sym_comment, - [146750] = 3, - ACTIONS(147), 1, + [154341] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6236), 1, - anon_sym_LBRACK2, - STATE(3784), 1, + anon_sym_EQ_GT, + STATE(3985), 1, sym_comment, - [146760] = 3, - ACTIONS(147), 1, + [154351] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6238), 1, - anon_sym_RPAREN, - STATE(3785), 1, + ts_builtin_sym_end, + STATE(3986), 1, sym_comment, - [146770] = 3, - ACTIONS(147), 1, + [154361] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6240), 1, - sym_cmd_identifier, - STATE(3786), 1, - sym_comment, - [146780] = 3, - ACTIONS(147), 1, - anon_sym_POUND, - ACTIONS(1561), 1, - anon_sym_in, - STATE(3787), 1, + anon_sym_EQ, + STATE(3987), 1, sym_comment, - [146790] = 3, - ACTIONS(147), 1, + [154371] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6242), 1, - anon_sym_RPAREN, - STATE(3788), 1, + anon_sym_RBRACK, + STATE(3988), 1, sym_comment, - [146800] = 3, - ACTIONS(147), 1, + [154381] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6244), 1, anon_sym_LBRACK2, - STATE(3789), 1, + STATE(3989), 1, sym_comment, - [146810] = 3, - ACTIONS(147), 1, + [154391] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6246), 1, - anon_sym_RPAREN, - STATE(3790), 1, + anon_sym_EQ, + STATE(3990), 1, sym_comment, - [146820] = 3, - ACTIONS(147), 1, + [154401] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6248), 1, - anon_sym_RBRACE, - STATE(3791), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_comment, - [146830] = 3, - ACTIONS(147), 1, + [154411] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6250), 1, - anon_sym_RPAREN, - STATE(3792), 1, + anon_sym_RBRACK, + STATE(3992), 1, sym_comment, - [146840] = 3, - ACTIONS(147), 1, + [154421] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6252), 1, - anon_sym_LBRACK2, - STATE(3793), 1, + anon_sym_EQ, + STATE(3993), 1, sym_comment, - [146850] = 3, - ACTIONS(147), 1, + [154431] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6254), 1, anon_sym_LBRACK2, - STATE(3794), 1, + STATE(3994), 1, sym_comment, - [146860] = 3, - ACTIONS(147), 1, + [154441] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6256), 1, - anon_sym_RBRACE, - STATE(3795), 1, + anon_sym_EQ, + STATE(3995), 1, sym_comment, - [146870] = 3, - ACTIONS(147), 1, + [154451] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6258), 1, - anon_sym_RPAREN, - STATE(3796), 1, + sym_identifier, + STATE(3996), 1, sym_comment, - [146880] = 3, - ACTIONS(147), 1, + [154461] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6260), 1, sym_identifier, - STATE(3797), 1, + STATE(3997), 1, sym_comment, - [146890] = 3, - ACTIONS(147), 1, + [154471] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6262), 1, - anon_sym_RBRACE, - STATE(3798), 1, + anon_sym_DOLLAR, + STATE(3998), 1, sym_comment, - [146900] = 3, - ACTIONS(147), 1, + [154481] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6264), 1, anon_sym_LBRACK2, - STATE(3799), 1, + STATE(3999), 1, sym_comment, - [146910] = 3, - ACTIONS(147), 1, + [154491] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6266), 1, - anon_sym_RPAREN, - STATE(3800), 1, + anon_sym_EQ, + STATE(4000), 1, + sym_comment, + [154501] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(2811), 1, + anon_sym_RBRACE, + STATE(4001), 1, sym_comment, - [146920] = 3, - ACTIONS(147), 1, + [154511] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6268), 1, - anon_sym_RPAREN, - STATE(3801), 1, + anon_sym_EQ, + STATE(4002), 1, sym_comment, - [146930] = 3, - ACTIONS(147), 1, + [154521] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6270), 1, - sym_identifier, - STATE(3802), 1, + ts_builtin_sym_end, + STATE(4003), 1, sym_comment, - [146940] = 3, - ACTIONS(147), 1, + [154531] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6272), 1, - anon_sym_RPAREN, - STATE(3803), 1, + anon_sym_RBRACE, + STATE(4004), 1, sym_comment, - [146950] = 3, - ACTIONS(147), 1, + [154541] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6274), 1, - anon_sym_LBRACK2, - STATE(3804), 1, + anon_sym_RBRACE, + STATE(4005), 1, sym_comment, - [146960] = 3, - ACTIONS(147), 1, + [154551] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6276), 1, - anon_sym_RBRACE, - STATE(3805), 1, + sym_cmd_identifier, + STATE(4006), 1, sym_comment, - [146970] = 3, - ACTIONS(147), 1, + [154561] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6278), 1, - anon_sym_RBRACE, - STATE(3806), 1, + anon_sym_DOLLAR, + STATE(4007), 1, + sym_comment, + [154571] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(3617), 1, + anon_sym_PIPE, + STATE(4008), 1, sym_comment, - [146980] = 3, - ACTIONS(147), 1, + [154581] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6280), 1, - anon_sym_RBRACE, - STATE(3807), 1, + anon_sym_LBRACK2, + STATE(4009), 1, sym_comment, - [146990] = 3, - ACTIONS(147), 1, + [154591] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6282), 1, anon_sym_RPAREN, - STATE(3808), 1, + STATE(4010), 1, sym_comment, - [147000] = 3, - ACTIONS(147), 1, + [154601] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6284), 1, - anon_sym_LBRACK2, - STATE(3809), 1, + anon_sym_LBRACE, + STATE(4011), 1, sym_comment, - [147010] = 3, - ACTIONS(147), 1, + [154611] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6286), 1, - anon_sym_LBRACE, - STATE(3810), 1, + anon_sym_DOT, + STATE(4012), 1, sym_comment, - [147020] = 3, - ACTIONS(147), 1, + [154621] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6288), 1, - anon_sym_GT, - STATE(3811), 1, + anon_sym_LBRACK2, + STATE(4013), 1, sym_comment, - [147030] = 3, - ACTIONS(147), 1, + [154631] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6290), 1, - anon_sym_EQ, - STATE(3812), 1, + anon_sym_LBRACK2, + STATE(4014), 1, sym_comment, - [147040] = 3, - ACTIONS(147), 1, + [154641] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6292), 1, - anon_sym_RPAREN, - STATE(3813), 1, + anon_sym_GT, + STATE(4015), 1, sym_comment, - [147050] = 3, - ACTIONS(147), 1, + [154651] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6294), 1, - anon_sym_LBRACK2, - STATE(3814), 1, + ts_builtin_sym_end, + STATE(4016), 1, sym_comment, - [147060] = 3, - ACTIONS(147), 1, + [154661] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6296), 1, - anon_sym_SEMI, - STATE(3815), 1, + anon_sym_RPAREN, + STATE(4017), 1, sym_comment, - [147070] = 3, - ACTIONS(147), 1, + [154671] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6298), 1, anon_sym_RPAREN, - STATE(3816), 1, + STATE(4018), 1, sym_comment, - [147080] = 3, - ACTIONS(147), 1, + [154681] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6300), 1, - anon_sym_RPAREN, - STATE(3817), 1, + anon_sym_LBRACK2, + STATE(4019), 1, sym_comment, - [147090] = 3, - ACTIONS(147), 1, + [154691] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6302), 1, - anon_sym_RBRACE, - STATE(3818), 1, + anon_sym_EQ, + STATE(4020), 1, sym_comment, - [147100] = 3, - ACTIONS(147), 1, + [154701] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6304), 1, - anon_sym_LBRACK2, - STATE(3819), 1, + anon_sym_RPAREN, + STATE(4021), 1, sym_comment, - [147110] = 3, - ACTIONS(147), 1, + [154711] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6306), 1, anon_sym_RPAREN, - STATE(3820), 1, + STATE(4022), 1, sym_comment, - [147120] = 3, - ACTIONS(147), 1, + [154721] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6308), 1, - anon_sym_RBRACE, - STATE(3821), 1, + anon_sym_RPAREN, + STATE(4023), 1, sym_comment, - [147130] = 3, - ACTIONS(147), 1, + [154731] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6310), 1, - anon_sym_EQ, - STATE(3822), 1, + anon_sym_LBRACK2, + STATE(4024), 1, sym_comment, - [147140] = 3, - ACTIONS(147), 1, + [154741] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6312), 1, - anon_sym_LBRACK2, - STATE(3823), 1, + anon_sym_EQ, + STATE(4025), 1, sym_comment, - [147150] = 3, - ACTIONS(147), 1, + [154751] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6314), 1, - anon_sym_DOT, - STATE(3824), 1, + sym_cmd_identifier, + STATE(4026), 1, sym_comment, - [147160] = 3, - ACTIONS(147), 1, + [154761] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6316), 1, - anon_sym_RPAREN, - STATE(3825), 1, + anon_sym_RBRACE, + STATE(4027), 1, sym_comment, - [147170] = 3, - ACTIONS(147), 1, + [154771] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6318), 1, - anon_sym_LPAREN2, - STATE(3826), 1, + anon_sym_RBRACE, + STATE(4028), 1, sym_comment, - [147180] = 3, - ACTIONS(147), 1, + [154781] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6320), 1, - anon_sym_make, - STATE(3827), 1, + anon_sym_LBRACK2, + STATE(4029), 1, sym_comment, - [147190] = 3, - ACTIONS(147), 1, + [154791] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6322), 1, - ts_builtin_sym_end, - STATE(3828), 1, + anon_sym_RPAREN, + STATE(4030), 1, sym_comment, - [147200] = 3, - ACTIONS(147), 1, + [154801] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6324), 1, anon_sym_RBRACE, - STATE(3829), 1, + STATE(4031), 1, sym_comment, - [147210] = 3, - ACTIONS(147), 1, + [154811] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6326), 1, - anon_sym_RPAREN, - STATE(3830), 1, + anon_sym_RBRACE, + STATE(4032), 1, sym_comment, - [147220] = 3, - ACTIONS(147), 1, + [154821] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6328), 1, - anon_sym_RPAREN, - STATE(3831), 1, + anon_sym_EQ, + STATE(4033), 1, sym_comment, - [147230] = 3, - ACTIONS(147), 1, + [154831] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6330), 1, - anon_sym_in, - STATE(3832), 1, + anon_sym_LBRACK2, + STATE(4034), 1, sym_comment, - [147240] = 3, - ACTIONS(147), 1, + [154841] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6332), 1, - anon_sym_EQ, - STATE(3833), 1, + anon_sym_RPAREN, + STATE(4035), 1, sym_comment, - [147250] = 3, - ACTIONS(147), 1, + [154851] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6334), 1, - anon_sym_RBRACE, - STATE(3834), 1, + anon_sym_DASH_GT, + STATE(4036), 1, sym_comment, - [147260] = 3, - ACTIONS(147), 1, + [154861] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6336), 1, - anon_sym_RBRACE, - STATE(3835), 1, + anon_sym_LBRACE, + STATE(4037), 1, + sym_comment, + [154871] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6336), 1, + anon_sym_LBRACE, + STATE(4038), 1, sym_comment, - [147270] = 3, - ACTIONS(147), 1, + [154881] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6338), 1, - anon_sym_RPAREN, - STATE(3836), 1, + anon_sym_LBRACK2, + STATE(4039), 1, sym_comment, - [147280] = 3, - ACTIONS(147), 1, + [154891] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6340), 1, - anon_sym_RPAREN, - STATE(3837), 1, + anon_sym_EQ_GT, + STATE(4040), 1, sym_comment, - [147290] = 3, - ACTIONS(147), 1, + [154901] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6342), 1, - anon_sym_COLON, - STATE(3838), 1, + anon_sym_RPAREN, + STATE(4041), 1, sym_comment, - [147300] = 3, - ACTIONS(147), 1, + [154911] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6344), 1, anon_sym_RPAREN, - STATE(3839), 1, + STATE(4042), 1, sym_comment, - [147310] = 3, - ACTIONS(147), 1, + [154921] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6346), 1, - anon_sym_SEMI, - STATE(3840), 1, + anon_sym_RPAREN, + STATE(4043), 1, sym_comment, - [147320] = 3, - ACTIONS(147), 1, + [154931] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6348), 1, - anon_sym_LPAREN2, - STATE(3841), 1, + anon_sym_LBRACK2, + STATE(4044), 1, sym_comment, - [147330] = 3, - ACTIONS(147), 1, + [154941] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6350), 1, - anon_sym_RBRACE, - STATE(3842), 1, + anon_sym_SEMI, + STATE(4045), 1, sym_comment, - [147340] = 3, - ACTIONS(147), 1, + [154951] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6352), 1, - anon_sym_RBRACE, - STATE(3843), 1, + anon_sym_RPAREN, + STATE(4046), 1, sym_comment, - [147350] = 3, - ACTIONS(147), 1, + [154961] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6354), 1, anon_sym_RBRACE, - STATE(3844), 1, + STATE(4047), 1, sym_comment, - [147360] = 3, - ACTIONS(147), 1, + [154971] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6356), 1, - anon_sym_RPAREN, - STATE(3845), 1, + anon_sym_LBRACK2, + STATE(4048), 1, sym_comment, - [147370] = 3, - ACTIONS(147), 1, + [154981] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6358), 1, - anon_sym_in, - STATE(3846), 1, + anon_sym_RPAREN, + STATE(4049), 1, sym_comment, - [147380] = 3, - ACTIONS(147), 1, + [154991] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6360), 1, - anon_sym_RPAREN, - STATE(3847), 1, + anon_sym_LPAREN2, + STATE(4050), 1, sym_comment, - [147390] = 3, - ACTIONS(147), 1, + [155001] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6362), 1, - anon_sym_in, - STATE(3848), 1, + anon_sym_make, + STATE(4051), 1, sym_comment, - [147400] = 3, - ACTIONS(147), 1, + [155011] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6364), 1, - sym_identifier, - STATE(3849), 1, + anon_sym_COLON, + STATE(4052), 1, sym_comment, - [147410] = 3, - ACTIONS(147), 1, + [155021] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6366), 1, anon_sym_RBRACE, - STATE(3850), 1, + STATE(4053), 1, sym_comment, - [147420] = 3, - ACTIONS(147), 1, + [155031] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6368), 1, - anon_sym_EQ_GT, - STATE(3851), 1, + anon_sym_EQ, + STATE(4054), 1, sym_comment, - [147430] = 3, - ACTIONS(147), 1, + [155041] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6370), 1, - anon_sym_DOT, - STATE(3852), 1, + anon_sym_in, + STATE(4055), 1, sym_comment, - [147440] = 3, - ACTIONS(3), 1, + [155051] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6372), 1, - aux_sym_shebang_token1, - STATE(3853), 1, + anon_sym_LBRACE, + STATE(4056), 1, sym_comment, - [147450] = 3, - ACTIONS(147), 1, + [155061] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6374), 1, - anon_sym_LPAREN2, - STATE(3854), 1, + anon_sym_EQ_GT, + STATE(4057), 1, sym_comment, - [147460] = 3, - ACTIONS(147), 1, + [155071] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6376), 1, - anon_sym_LPAREN2, - STATE(3855), 1, + anon_sym_RPAREN, + STATE(4058), 1, sym_comment, - [147470] = 3, - ACTIONS(147), 1, + [155081] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6378), 1, - anon_sym_LPAREN2, - STATE(3856), 1, + anon_sym_RBRACE, + STATE(4059), 1, sym_comment, - [147480] = 3, - ACTIONS(147), 1, + [155091] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6380), 1, - anon_sym_LPAREN2, - STATE(3857), 1, + anon_sym_RBRACE, + STATE(4060), 1, sym_comment, - [147490] = 3, - ACTIONS(147), 1, + [155101] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6382), 1, - anon_sym_LPAREN2, - STATE(3858), 1, + anon_sym_RPAREN, + STATE(4061), 1, sym_comment, - [147500] = 3, - ACTIONS(147), 1, + [155111] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6384), 1, - anon_sym_LPAREN2, - STATE(3859), 1, + anon_sym_RBRACE, + STATE(4062), 1, sym_comment, - [147510] = 3, - ACTIONS(147), 1, + [155121] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6386), 1, - anon_sym_LPAREN2, - STATE(3860), 1, + anon_sym_EQ, + STATE(4063), 1, sym_comment, - [147520] = 3, - ACTIONS(147), 1, + [155131] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6388), 1, - anon_sym_LPAREN2, - STATE(3861), 1, + sym_cmd_identifier, + STATE(4064), 1, sym_comment, - [147530] = 3, - ACTIONS(147), 1, + [155141] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6390), 1, - anon_sym_LPAREN2, - STATE(3862), 1, + anon_sym_DOT, + STATE(4065), 1, sym_comment, - [147540] = 3, - ACTIONS(147), 1, + [155151] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6392), 1, anon_sym_LPAREN2, - STATE(3863), 1, + STATE(4066), 1, sym_comment, - [147550] = 3, - ACTIONS(147), 1, + [155161] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3864), 1, + anon_sym_RPAREN, + STATE(4067), 1, sym_comment, - [147560] = 3, - ACTIONS(147), 1, + [155171] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6396), 1, - anon_sym_LPAREN2, - STATE(3865), 1, + anon_sym_DOT, + STATE(4068), 1, sym_comment, - [147570] = 3, - ACTIONS(147), 1, + [155181] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6398), 1, - anon_sym_LPAREN2, - STATE(3866), 1, + anon_sym_EQ_GT, + STATE(4069), 1, sym_comment, - [147580] = 3, - ACTIONS(147), 1, + [155191] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6400), 1, - anon_sym_LPAREN2, - STATE(3867), 1, + anon_sym_RPAREN, + STATE(4070), 1, sym_comment, - [147590] = 3, - ACTIONS(147), 1, + [155201] = 3, + ACTIONS(157), 1, anon_sym_POUND, ACTIONS(6402), 1, - anon_sym_EQ, - STATE(3868), 1, + anon_sym_in, + STATE(4071), 1, sym_comment, - [147600] = 1, + [155211] = 3, + ACTIONS(157), 1, + anon_sym_POUND, ACTIONS(6404), 1, + anon_sym_RBRACE, + STATE(4072), 1, + sym_comment, + [155221] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6406), 1, + anon_sym_in, + STATE(4073), 1, + sym_comment, + [155231] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_RBRACE, + STATE(4074), 1, + sym_comment, + [155241] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6410), 1, + anon_sym_RPAREN, + STATE(4075), 1, + sym_comment, + [155251] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_RBRACE, + STATE(4076), 1, + sym_comment, + [155261] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6414), 1, + anon_sym_RPAREN, + STATE(4077), 1, + sym_comment, + [155271] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6416), 1, + aux_sym_shebang_token1, + STATE(4078), 1, + sym_comment, + [155281] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6418), 1, + anon_sym_LPAREN2, + STATE(4079), 1, + sym_comment, + [155291] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6420), 1, + anon_sym_LPAREN2, + STATE(4080), 1, + sym_comment, + [155301] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6422), 1, + anon_sym_LPAREN2, + STATE(4081), 1, + sym_comment, + [155311] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6424), 1, + anon_sym_LPAREN2, + STATE(4082), 1, + sym_comment, + [155321] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6426), 1, + anon_sym_LPAREN2, + STATE(4083), 1, + sym_comment, + [155331] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6428), 1, + anon_sym_LPAREN2, + STATE(4084), 1, + sym_comment, + [155341] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6430), 1, + anon_sym_LPAREN2, + STATE(4085), 1, + sym_comment, + [155351] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6432), 1, + anon_sym_LPAREN2, + STATE(4086), 1, + sym_comment, + [155361] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6434), 1, + anon_sym_LPAREN2, + STATE(4087), 1, + sym_comment, + [155371] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + anon_sym_LPAREN2, + STATE(4088), 1, + sym_comment, + [155381] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6438), 1, + anon_sym_LPAREN2, + STATE(4089), 1, + sym_comment, + [155391] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6440), 1, + anon_sym_LPAREN2, + STATE(4090), 1, + sym_comment, + [155401] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6442), 1, + anon_sym_LPAREN2, + STATE(4091), 1, + sym_comment, + [155411] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6444), 1, + anon_sym_LPAREN2, + STATE(4092), 1, + sym_comment, + [155421] = 3, + ACTIONS(157), 1, + anon_sym_POUND, + ACTIONS(6446), 1, + anon_sym_EQ, + STATE(4093), 1, + sym_comment, + [155431] = 1, + ACTIONS(6448), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1055)] = 0, - [SMALL_STATE(1056)] = 77, - [SMALL_STATE(1057)] = 150, - [SMALL_STATE(1058)] = 229, - [SMALL_STATE(1059)] = 308, - [SMALL_STATE(1060)] = 437, - [SMALL_STATE(1061)] = 516, - [SMALL_STATE(1062)] = 595, - [SMALL_STATE(1063)] = 674, - [SMALL_STATE(1064)] = 753, - [SMALL_STATE(1065)] = 832, - [SMALL_STATE(1066)] = 907, - [SMALL_STATE(1067)] = 982, - [SMALL_STATE(1068)] = 1061, - [SMALL_STATE(1069)] = 1140, - [SMALL_STATE(1070)] = 1219, - [SMALL_STATE(1071)] = 1298, - [SMALL_STATE(1072)] = 1377, - [SMALL_STATE(1073)] = 1460, - [SMALL_STATE(1074)] = 1539, - [SMALL_STATE(1075)] = 1618, - [SMALL_STATE(1076)] = 1697, - [SMALL_STATE(1077)] = 1776, - [SMALL_STATE(1078)] = 1850, - [SMALL_STATE(1079)] = 1930, - [SMALL_STATE(1080)] = 2002, - [SMALL_STATE(1081)] = 2074, - [SMALL_STATE(1082)] = 2148, - [SMALL_STATE(1083)] = 2220, - [SMALL_STATE(1084)] = 2292, - [SMALL_STATE(1085)] = 2364, - [SMALL_STATE(1086)] = 2436, - [SMALL_STATE(1087)] = 2516, - [SMALL_STATE(1088)] = 2588, - [SMALL_STATE(1089)] = 2660, - [SMALL_STATE(1090)] = 2787, - [SMALL_STATE(1091)] = 2914, - [SMALL_STATE(1092)] = 3041, - [SMALL_STATE(1093)] = 3168, - [SMALL_STATE(1094)] = 3295, - [SMALL_STATE(1095)] = 3368, - [SMALL_STATE(1096)] = 3495, - [SMALL_STATE(1097)] = 3622, - [SMALL_STATE(1098)] = 3749, - [SMALL_STATE(1099)] = 3876, - [SMALL_STATE(1100)] = 3949, - [SMALL_STATE(1101)] = 4076, - [SMALL_STATE(1102)] = 4203, - [SMALL_STATE(1103)] = 4330, - [SMALL_STATE(1104)] = 4457, - [SMALL_STATE(1105)] = 4584, - [SMALL_STATE(1106)] = 4711, - [SMALL_STATE(1107)] = 4784, - [SMALL_STATE(1108)] = 4911, - [SMALL_STATE(1109)] = 5038, - [SMALL_STATE(1110)] = 5165, - [SMALL_STATE(1111)] = 5236, - [SMALL_STATE(1112)] = 5363, - [SMALL_STATE(1113)] = 5436, - [SMALL_STATE(1114)] = 5507, - [SMALL_STATE(1115)] = 5580, - [SMALL_STATE(1116)] = 5653, - [SMALL_STATE(1117)] = 5726, - [SMALL_STATE(1118)] = 5799, - [SMALL_STATE(1119)] = 5870, - [SMALL_STATE(1120)] = 5943, - [SMALL_STATE(1121)] = 6016, - [SMALL_STATE(1122)] = 6089, - [SMALL_STATE(1123)] = 6162, - [SMALL_STATE(1124)] = 6235, - [SMALL_STATE(1125)] = 6306, - [SMALL_STATE(1126)] = 6379, - [SMALL_STATE(1127)] = 6452, - [SMALL_STATE(1128)] = 6579, - [SMALL_STATE(1129)] = 6706, - [SMALL_STATE(1130)] = 6779, - [SMALL_STATE(1131)] = 6906, - [SMALL_STATE(1132)] = 7033, - [SMALL_STATE(1133)] = 7104, - [SMALL_STATE(1134)] = 7177, - [SMALL_STATE(1135)] = 7248, - [SMALL_STATE(1136)] = 7375, - [SMALL_STATE(1137)] = 7450, - [SMALL_STATE(1138)] = 7577, - [SMALL_STATE(1139)] = 7650, - [SMALL_STATE(1140)] = 7726, - [SMALL_STATE(1141)] = 7796, - [SMALL_STATE(1142)] = 7930, - [SMALL_STATE(1143)] = 8064, - [SMALL_STATE(1144)] = 8166, - [SMALL_STATE(1145)] = 8236, - [SMALL_STATE(1146)] = 8306, - [SMALL_STATE(1147)] = 8376, - [SMALL_STATE(1148)] = 8446, - [SMALL_STATE(1149)] = 8572, - [SMALL_STATE(1150)] = 8706, - [SMALL_STATE(1151)] = 8776, - [SMALL_STATE(1152)] = 8846, - [SMALL_STATE(1153)] = 8916, - [SMALL_STATE(1154)] = 8986, - [SMALL_STATE(1155)] = 9056, - [SMALL_STATE(1156)] = 9182, - [SMALL_STATE(1157)] = 9308, - [SMALL_STATE(1158)] = 9378, - [SMALL_STATE(1159)] = 9448, - [SMALL_STATE(1160)] = 9518, - [SMALL_STATE(1161)] = 9588, - [SMALL_STATE(1162)] = 9658, - [SMALL_STATE(1163)] = 9728, - [SMALL_STATE(1164)] = 9798, - [SMALL_STATE(1165)] = 9924, - [SMALL_STATE(1166)] = 10050, - [SMALL_STATE(1167)] = 10176, - [SMALL_STATE(1168)] = 10246, - [SMALL_STATE(1169)] = 10316, - [SMALL_STATE(1170)] = 10386, - [SMALL_STATE(1171)] = 10512, - [SMALL_STATE(1172)] = 10638, - [SMALL_STATE(1173)] = 10764, - [SMALL_STATE(1174)] = 10890, - [SMALL_STATE(1175)] = 10960, - [SMALL_STATE(1176)] = 11086, - [SMALL_STATE(1177)] = 11212, - [SMALL_STATE(1178)] = 11338, - [SMALL_STATE(1179)] = 11464, - [SMALL_STATE(1180)] = 11590, - [SMALL_STATE(1181)] = 11716, - [SMALL_STATE(1182)] = 11842, - [SMALL_STATE(1183)] = 11968, - [SMALL_STATE(1184)] = 12094, - [SMALL_STATE(1185)] = 12220, - [SMALL_STATE(1186)] = 12346, - [SMALL_STATE(1187)] = 12472, - [SMALL_STATE(1188)] = 12598, - [SMALL_STATE(1189)] = 12724, - [SMALL_STATE(1190)] = 12850, - [SMALL_STATE(1191)] = 12920, - [SMALL_STATE(1192)] = 12990, - [SMALL_STATE(1193)] = 13060, - [SMALL_STATE(1194)] = 13162, - [SMALL_STATE(1195)] = 13246, - [SMALL_STATE(1196)] = 13324, - [SMALL_STATE(1197)] = 13410, - [SMALL_STATE(1198)] = 13486, - [SMALL_STATE(1199)] = 13558, - [SMALL_STATE(1200)] = 13638, - [SMALL_STATE(1201)] = 13726, - [SMALL_STATE(1202)] = 13816, - [SMALL_STATE(1203)] = 13908, - [SMALL_STATE(1204)] = 14002, - [SMALL_STATE(1205)] = 14098, - [SMALL_STATE(1206)] = 14196, - [SMALL_STATE(1207)] = 14296, - [SMALL_STATE(1208)] = 14366, - [SMALL_STATE(1209)] = 14436, - [SMALL_STATE(1210)] = 14506, - [SMALL_STATE(1211)] = 14576, - [SMALL_STATE(1212)] = 14646, - [SMALL_STATE(1213)] = 14716, - [SMALL_STATE(1214)] = 14786, - [SMALL_STATE(1215)] = 14860, - [SMALL_STATE(1216)] = 14930, - [SMALL_STATE(1217)] = 15000, - [SMALL_STATE(1218)] = 15070, - [SMALL_STATE(1219)] = 15140, - [SMALL_STATE(1220)] = 15210, - [SMALL_STATE(1221)] = 15280, - [SMALL_STATE(1222)] = 15350, - [SMALL_STATE(1223)] = 15420, - [SMALL_STATE(1224)] = 15490, - [SMALL_STATE(1225)] = 15560, - [SMALL_STATE(1226)] = 15694, - [SMALL_STATE(1227)] = 15764, - [SMALL_STATE(1228)] = 15834, - [SMALL_STATE(1229)] = 15904, - [SMALL_STATE(1230)] = 15974, - [SMALL_STATE(1231)] = 16048, - [SMALL_STATE(1232)] = 16118, - [SMALL_STATE(1233)] = 16188, - [SMALL_STATE(1234)] = 16258, - [SMALL_STATE(1235)] = 16328, - [SMALL_STATE(1236)] = 16398, - [SMALL_STATE(1237)] = 16500, - [SMALL_STATE(1238)] = 16600, - [SMALL_STATE(1239)] = 16698, - [SMALL_STATE(1240)] = 16768, - [SMALL_STATE(1241)] = 16864, - [SMALL_STATE(1242)] = 16958, - [SMALL_STATE(1243)] = 17050, - [SMALL_STATE(1244)] = 17140, - [SMALL_STATE(1245)] = 17220, - [SMALL_STATE(1246)] = 17292, - [SMALL_STATE(1247)] = 17380, - [SMALL_STATE(1248)] = 17464, - [SMALL_STATE(1249)] = 17542, - [SMALL_STATE(1250)] = 17671, - [SMALL_STATE(1251)] = 17793, - [SMALL_STATE(1252)] = 17915, - [SMALL_STATE(1253)] = 18037, - [SMALL_STATE(1254)] = 18159, - [SMALL_STATE(1255)] = 18281, - [SMALL_STATE(1256)] = 18403, - [SMALL_STATE(1257)] = 18525, - [SMALL_STATE(1258)] = 18647, - [SMALL_STATE(1259)] = 18770, - [SMALL_STATE(1260)] = 18893, - [SMALL_STATE(1261)] = 19016, - [SMALL_STATE(1262)] = 19137, - [SMALL_STATE(1263)] = 19258, - [SMALL_STATE(1264)] = 19379, - [SMALL_STATE(1265)] = 19500, - [SMALL_STATE(1266)] = 19621, - [SMALL_STATE(1267)] = 19744, - [SMALL_STATE(1268)] = 19865, - [SMALL_STATE(1269)] = 19988, - [SMALL_STATE(1270)] = 20109, - [SMALL_STATE(1271)] = 20232, - [SMALL_STATE(1272)] = 20353, - [SMALL_STATE(1273)] = 20476, - [SMALL_STATE(1274)] = 20599, - [SMALL_STATE(1275)] = 20720, - [SMALL_STATE(1276)] = 20841, - [SMALL_STATE(1277)] = 20964, - [SMALL_STATE(1278)] = 21083, - [SMALL_STATE(1279)] = 21206, - [SMALL_STATE(1280)] = 21327, - [SMALL_STATE(1281)] = 21450, - [SMALL_STATE(1282)] = 21571, - [SMALL_STATE(1283)] = 21694, - [SMALL_STATE(1284)] = 21817, - [SMALL_STATE(1285)] = 21938, - [SMALL_STATE(1286)] = 22059, - [SMALL_STATE(1287)] = 22180, - [SMALL_STATE(1288)] = 22301, - [SMALL_STATE(1289)] = 22424, - [SMALL_STATE(1290)] = 22547, - [SMALL_STATE(1291)] = 22668, - [SMALL_STATE(1292)] = 22791, - [SMALL_STATE(1293)] = 22914, - [SMALL_STATE(1294)] = 23037, - [SMALL_STATE(1295)] = 23158, - [SMALL_STATE(1296)] = 23279, - [SMALL_STATE(1297)] = 23402, - [SMALL_STATE(1298)] = 23523, - [SMALL_STATE(1299)] = 23643, - [SMALL_STATE(1300)] = 23763, - [SMALL_STATE(1301)] = 23883, - [SMALL_STATE(1302)] = 24003, - [SMALL_STATE(1303)] = 24123, - [SMALL_STATE(1304)] = 24243, - [SMALL_STATE(1305)] = 24363, - [SMALL_STATE(1306)] = 24483, - [SMALL_STATE(1307)] = 24603, - [SMALL_STATE(1308)] = 24723, - [SMALL_STATE(1309)] = 24843, - [SMALL_STATE(1310)] = 24963, - [SMALL_STATE(1311)] = 25083, - [SMALL_STATE(1312)] = 25199, - [SMALL_STATE(1313)] = 25315, - [SMALL_STATE(1314)] = 25435, - [SMALL_STATE(1315)] = 25555, - [SMALL_STATE(1316)] = 25675, - [SMALL_STATE(1317)] = 25795, - [SMALL_STATE(1318)] = 25915, - [SMALL_STATE(1319)] = 26035, - [SMALL_STATE(1320)] = 26155, - [SMALL_STATE(1321)] = 26275, - [SMALL_STATE(1322)] = 26395, - [SMALL_STATE(1323)] = 26515, - [SMALL_STATE(1324)] = 26635, - [SMALL_STATE(1325)] = 26755, - [SMALL_STATE(1326)] = 26875, - [SMALL_STATE(1327)] = 26995, - [SMALL_STATE(1328)] = 27115, - [SMALL_STATE(1329)] = 27235, - [SMALL_STATE(1330)] = 27355, - [SMALL_STATE(1331)] = 27475, - [SMALL_STATE(1332)] = 27595, - [SMALL_STATE(1333)] = 27715, - [SMALL_STATE(1334)] = 27835, - [SMALL_STATE(1335)] = 27955, - [SMALL_STATE(1336)] = 28075, - [SMALL_STATE(1337)] = 28195, - [SMALL_STATE(1338)] = 28315, - [SMALL_STATE(1339)] = 28435, - [SMALL_STATE(1340)] = 28555, - [SMALL_STATE(1341)] = 28675, - [SMALL_STATE(1342)] = 28795, - [SMALL_STATE(1343)] = 28915, - [SMALL_STATE(1344)] = 29035, - [SMALL_STATE(1345)] = 29155, - [SMALL_STATE(1346)] = 29275, - [SMALL_STATE(1347)] = 29395, - [SMALL_STATE(1348)] = 29515, - [SMALL_STATE(1349)] = 29635, - [SMALL_STATE(1350)] = 29755, - [SMALL_STATE(1351)] = 29875, - [SMALL_STATE(1352)] = 29995, - [SMALL_STATE(1353)] = 30115, - [SMALL_STATE(1354)] = 30235, - [SMALL_STATE(1355)] = 30355, - [SMALL_STATE(1356)] = 30475, - [SMALL_STATE(1357)] = 30595, - [SMALL_STATE(1358)] = 30715, - [SMALL_STATE(1359)] = 30835, - [SMALL_STATE(1360)] = 30955, - [SMALL_STATE(1361)] = 31075, - [SMALL_STATE(1362)] = 31195, - [SMALL_STATE(1363)] = 31315, - [SMALL_STATE(1364)] = 31435, - [SMALL_STATE(1365)] = 31555, - [SMALL_STATE(1366)] = 31675, - [SMALL_STATE(1367)] = 31795, - [SMALL_STATE(1368)] = 31915, - [SMALL_STATE(1369)] = 32035, - [SMALL_STATE(1370)] = 32155, - [SMALL_STATE(1371)] = 32275, - [SMALL_STATE(1372)] = 32395, - [SMALL_STATE(1373)] = 32515, - [SMALL_STATE(1374)] = 32635, - [SMALL_STATE(1375)] = 32755, - [SMALL_STATE(1376)] = 32875, - [SMALL_STATE(1377)] = 32995, - [SMALL_STATE(1378)] = 33115, - [SMALL_STATE(1379)] = 33235, - [SMALL_STATE(1380)] = 33355, - [SMALL_STATE(1381)] = 33475, - [SMALL_STATE(1382)] = 33595, - [SMALL_STATE(1383)] = 33715, - [SMALL_STATE(1384)] = 33835, - [SMALL_STATE(1385)] = 33955, - [SMALL_STATE(1386)] = 34075, - [SMALL_STATE(1387)] = 34195, - [SMALL_STATE(1388)] = 34315, - [SMALL_STATE(1389)] = 34435, - [SMALL_STATE(1390)] = 34555, - [SMALL_STATE(1391)] = 34675, - [SMALL_STATE(1392)] = 34795, - [SMALL_STATE(1393)] = 34915, - [SMALL_STATE(1394)] = 35035, - [SMALL_STATE(1395)] = 35155, - [SMALL_STATE(1396)] = 35275, - [SMALL_STATE(1397)] = 35395, - [SMALL_STATE(1398)] = 35515, - [SMALL_STATE(1399)] = 35635, - [SMALL_STATE(1400)] = 35755, - [SMALL_STATE(1401)] = 35875, - [SMALL_STATE(1402)] = 35995, - [SMALL_STATE(1403)] = 36115, - [SMALL_STATE(1404)] = 36235, - [SMALL_STATE(1405)] = 36355, - [SMALL_STATE(1406)] = 36475, - [SMALL_STATE(1407)] = 36595, - [SMALL_STATE(1408)] = 36715, - [SMALL_STATE(1409)] = 36835, - [SMALL_STATE(1410)] = 36955, - [SMALL_STATE(1411)] = 37075, - [SMALL_STATE(1412)] = 37195, - [SMALL_STATE(1413)] = 37315, - [SMALL_STATE(1414)] = 37435, - [SMALL_STATE(1415)] = 37555, - [SMALL_STATE(1416)] = 37675, - [SMALL_STATE(1417)] = 37795, - [SMALL_STATE(1418)] = 37915, - [SMALL_STATE(1419)] = 38035, - [SMALL_STATE(1420)] = 38155, - [SMALL_STATE(1421)] = 38275, - [SMALL_STATE(1422)] = 38395, - [SMALL_STATE(1423)] = 38515, - [SMALL_STATE(1424)] = 38635, - [SMALL_STATE(1425)] = 38755, - [SMALL_STATE(1426)] = 38875, - [SMALL_STATE(1427)] = 38995, - [SMALL_STATE(1428)] = 39115, - [SMALL_STATE(1429)] = 39235, - [SMALL_STATE(1430)] = 39355, - [SMALL_STATE(1431)] = 39475, - [SMALL_STATE(1432)] = 39595, - [SMALL_STATE(1433)] = 39715, - [SMALL_STATE(1434)] = 39835, - [SMALL_STATE(1435)] = 39955, - [SMALL_STATE(1436)] = 40075, - [SMALL_STATE(1437)] = 40195, - [SMALL_STATE(1438)] = 40315, - [SMALL_STATE(1439)] = 40435, - [SMALL_STATE(1440)] = 40555, - [SMALL_STATE(1441)] = 40675, - [SMALL_STATE(1442)] = 40795, - [SMALL_STATE(1443)] = 40915, - [SMALL_STATE(1444)] = 41035, - [SMALL_STATE(1445)] = 41155, - [SMALL_STATE(1446)] = 41275, - [SMALL_STATE(1447)] = 41395, - [SMALL_STATE(1448)] = 41515, - [SMALL_STATE(1449)] = 41635, - [SMALL_STATE(1450)] = 41755, - [SMALL_STATE(1451)] = 41875, - [SMALL_STATE(1452)] = 41995, - [SMALL_STATE(1453)] = 42115, - [SMALL_STATE(1454)] = 42235, - [SMALL_STATE(1455)] = 42355, - [SMALL_STATE(1456)] = 42475, - [SMALL_STATE(1457)] = 42590, - [SMALL_STATE(1458)] = 42705, - [SMALL_STATE(1459)] = 42820, - [SMALL_STATE(1460)] = 42935, - [SMALL_STATE(1461)] = 43050, - [SMALL_STATE(1462)] = 43160, - [SMALL_STATE(1463)] = 43270, - [SMALL_STATE(1464)] = 43380, - [SMALL_STATE(1465)] = 43490, - [SMALL_STATE(1466)] = 43600, - [SMALL_STATE(1467)] = 43710, - [SMALL_STATE(1468)] = 43820, - [SMALL_STATE(1469)] = 43930, - [SMALL_STATE(1470)] = 44040, - [SMALL_STATE(1471)] = 44150, - [SMALL_STATE(1472)] = 44260, - [SMALL_STATE(1473)] = 44370, - [SMALL_STATE(1474)] = 44480, - [SMALL_STATE(1475)] = 44590, - [SMALL_STATE(1476)] = 44700, - [SMALL_STATE(1477)] = 44810, - [SMALL_STATE(1478)] = 44920, - [SMALL_STATE(1479)] = 45030, - [SMALL_STATE(1480)] = 45140, - [SMALL_STATE(1481)] = 45250, - [SMALL_STATE(1482)] = 45360, - [SMALL_STATE(1483)] = 45470, - [SMALL_STATE(1484)] = 45580, - [SMALL_STATE(1485)] = 45690, - [SMALL_STATE(1486)] = 45800, - [SMALL_STATE(1487)] = 45910, - [SMALL_STATE(1488)] = 46020, - [SMALL_STATE(1489)] = 46130, - [SMALL_STATE(1490)] = 46240, - [SMALL_STATE(1491)] = 46350, - [SMALL_STATE(1492)] = 46460, - [SMALL_STATE(1493)] = 46570, - [SMALL_STATE(1494)] = 46680, - [SMALL_STATE(1495)] = 46790, - [SMALL_STATE(1496)] = 46900, - [SMALL_STATE(1497)] = 47010, - [SMALL_STATE(1498)] = 47120, - [SMALL_STATE(1499)] = 47230, - [SMALL_STATE(1500)] = 47340, - [SMALL_STATE(1501)] = 47450, - [SMALL_STATE(1502)] = 47560, - [SMALL_STATE(1503)] = 47670, - [SMALL_STATE(1504)] = 47780, - [SMALL_STATE(1505)] = 47890, - [SMALL_STATE(1506)] = 48000, - [SMALL_STATE(1507)] = 48110, - [SMALL_STATE(1508)] = 48220, - [SMALL_STATE(1509)] = 48330, - [SMALL_STATE(1510)] = 48440, - [SMALL_STATE(1511)] = 48550, - [SMALL_STATE(1512)] = 48660, - [SMALL_STATE(1513)] = 48770, - [SMALL_STATE(1514)] = 48880, - [SMALL_STATE(1515)] = 48990, - [SMALL_STATE(1516)] = 49100, - [SMALL_STATE(1517)] = 49210, - [SMALL_STATE(1518)] = 49320, - [SMALL_STATE(1519)] = 49430, - [SMALL_STATE(1520)] = 49540, - [SMALL_STATE(1521)] = 49650, - [SMALL_STATE(1522)] = 49760, - [SMALL_STATE(1523)] = 49870, - [SMALL_STATE(1524)] = 49980, - [SMALL_STATE(1525)] = 50090, - [SMALL_STATE(1526)] = 50200, - [SMALL_STATE(1527)] = 50310, - [SMALL_STATE(1528)] = 50420, - [SMALL_STATE(1529)] = 50530, - [SMALL_STATE(1530)] = 50640, - [SMALL_STATE(1531)] = 50750, - [SMALL_STATE(1532)] = 50860, - [SMALL_STATE(1533)] = 50970, - [SMALL_STATE(1534)] = 51080, - [SMALL_STATE(1535)] = 51190, - [SMALL_STATE(1536)] = 51300, - [SMALL_STATE(1537)] = 51410, - [SMALL_STATE(1538)] = 51520, - [SMALL_STATE(1539)] = 51630, - [SMALL_STATE(1540)] = 51740, - [SMALL_STATE(1541)] = 51850, - [SMALL_STATE(1542)] = 51960, - [SMALL_STATE(1543)] = 52070, - [SMALL_STATE(1544)] = 52180, - [SMALL_STATE(1545)] = 52290, - [SMALL_STATE(1546)] = 52400, - [SMALL_STATE(1547)] = 52510, - [SMALL_STATE(1548)] = 52620, - [SMALL_STATE(1549)] = 52730, - [SMALL_STATE(1550)] = 52840, - [SMALL_STATE(1551)] = 52950, - [SMALL_STATE(1552)] = 53060, - [SMALL_STATE(1553)] = 53170, - [SMALL_STATE(1554)] = 53280, - [SMALL_STATE(1555)] = 53390, - [SMALL_STATE(1556)] = 53500, - [SMALL_STATE(1557)] = 53610, - [SMALL_STATE(1558)] = 53720, - [SMALL_STATE(1559)] = 53830, - [SMALL_STATE(1560)] = 53940, - [SMALL_STATE(1561)] = 54050, - [SMALL_STATE(1562)] = 54160, - [SMALL_STATE(1563)] = 54270, - [SMALL_STATE(1564)] = 54380, - [SMALL_STATE(1565)] = 54490, - [SMALL_STATE(1566)] = 54600, - [SMALL_STATE(1567)] = 54710, - [SMALL_STATE(1568)] = 54820, - [SMALL_STATE(1569)] = 54930, - [SMALL_STATE(1570)] = 55040, - [SMALL_STATE(1571)] = 55150, - [SMALL_STATE(1572)] = 55260, - [SMALL_STATE(1573)] = 55370, - [SMALL_STATE(1574)] = 55480, - [SMALL_STATE(1575)] = 55590, - [SMALL_STATE(1576)] = 55700, - [SMALL_STATE(1577)] = 55810, - [SMALL_STATE(1578)] = 55920, - [SMALL_STATE(1579)] = 56030, - [SMALL_STATE(1580)] = 56140, - [SMALL_STATE(1581)] = 56250, - [SMALL_STATE(1582)] = 56360, - [SMALL_STATE(1583)] = 56470, - [SMALL_STATE(1584)] = 56580, - [SMALL_STATE(1585)] = 56690, - [SMALL_STATE(1586)] = 56800, - [SMALL_STATE(1587)] = 56910, - [SMALL_STATE(1588)] = 57020, - [SMALL_STATE(1589)] = 57130, - [SMALL_STATE(1590)] = 57240, - [SMALL_STATE(1591)] = 57350, - [SMALL_STATE(1592)] = 57460, - [SMALL_STATE(1593)] = 57570, - [SMALL_STATE(1594)] = 57680, - [SMALL_STATE(1595)] = 57790, - [SMALL_STATE(1596)] = 57900, - [SMALL_STATE(1597)] = 58010, - [SMALL_STATE(1598)] = 58120, - [SMALL_STATE(1599)] = 58230, - [SMALL_STATE(1600)] = 58340, - [SMALL_STATE(1601)] = 58450, - [SMALL_STATE(1602)] = 58560, - [SMALL_STATE(1603)] = 58670, - [SMALL_STATE(1604)] = 58780, - [SMALL_STATE(1605)] = 58890, - [SMALL_STATE(1606)] = 59000, - [SMALL_STATE(1607)] = 59110, - [SMALL_STATE(1608)] = 59220, - [SMALL_STATE(1609)] = 59330, - [SMALL_STATE(1610)] = 59440, - [SMALL_STATE(1611)] = 59550, - [SMALL_STATE(1612)] = 59660, - [SMALL_STATE(1613)] = 59770, - [SMALL_STATE(1614)] = 59880, - [SMALL_STATE(1615)] = 59990, - [SMALL_STATE(1616)] = 60100, - [SMALL_STATE(1617)] = 60210, - [SMALL_STATE(1618)] = 60320, - [SMALL_STATE(1619)] = 60430, - [SMALL_STATE(1620)] = 60540, - [SMALL_STATE(1621)] = 60650, - [SMALL_STATE(1622)] = 60760, - [SMALL_STATE(1623)] = 60870, - [SMALL_STATE(1624)] = 60980, - [SMALL_STATE(1625)] = 61090, - [SMALL_STATE(1626)] = 61200, - [SMALL_STATE(1627)] = 61310, - [SMALL_STATE(1628)] = 61420, - [SMALL_STATE(1629)] = 61530, - [SMALL_STATE(1630)] = 61640, - [SMALL_STATE(1631)] = 61750, - [SMALL_STATE(1632)] = 61860, - [SMALL_STATE(1633)] = 61970, - [SMALL_STATE(1634)] = 62080, - [SMALL_STATE(1635)] = 62190, - [SMALL_STATE(1636)] = 62300, - [SMALL_STATE(1637)] = 62410, - [SMALL_STATE(1638)] = 62520, - [SMALL_STATE(1639)] = 62630, - [SMALL_STATE(1640)] = 62740, - [SMALL_STATE(1641)] = 62850, - [SMALL_STATE(1642)] = 62960, - [SMALL_STATE(1643)] = 63070, - [SMALL_STATE(1644)] = 63180, - [SMALL_STATE(1645)] = 63290, - [SMALL_STATE(1646)] = 63400, - [SMALL_STATE(1647)] = 63510, - [SMALL_STATE(1648)] = 63620, - [SMALL_STATE(1649)] = 63730, - [SMALL_STATE(1650)] = 63840, - [SMALL_STATE(1651)] = 63950, - [SMALL_STATE(1652)] = 64060, - [SMALL_STATE(1653)] = 64170, - [SMALL_STATE(1654)] = 64280, - [SMALL_STATE(1655)] = 64390, - [SMALL_STATE(1656)] = 64500, - [SMALL_STATE(1657)] = 64610, - [SMALL_STATE(1658)] = 64720, - [SMALL_STATE(1659)] = 64830, - [SMALL_STATE(1660)] = 64940, - [SMALL_STATE(1661)] = 65050, - [SMALL_STATE(1662)] = 65160, - [SMALL_STATE(1663)] = 65270, - [SMALL_STATE(1664)] = 65380, - [SMALL_STATE(1665)] = 65490, - [SMALL_STATE(1666)] = 65600, - [SMALL_STATE(1667)] = 65710, - [SMALL_STATE(1668)] = 65820, - [SMALL_STATE(1669)] = 65930, - [SMALL_STATE(1670)] = 66040, - [SMALL_STATE(1671)] = 66150, - [SMALL_STATE(1672)] = 66260, - [SMALL_STATE(1673)] = 66370, - [SMALL_STATE(1674)] = 66480, - [SMALL_STATE(1675)] = 66590, - [SMALL_STATE(1676)] = 66700, - [SMALL_STATE(1677)] = 66810, - [SMALL_STATE(1678)] = 66920, - [SMALL_STATE(1679)] = 67030, - [SMALL_STATE(1680)] = 67140, - [SMALL_STATE(1681)] = 67250, - [SMALL_STATE(1682)] = 67360, - [SMALL_STATE(1683)] = 67470, - [SMALL_STATE(1684)] = 67580, - [SMALL_STATE(1685)] = 67690, - [SMALL_STATE(1686)] = 67800, - [SMALL_STATE(1687)] = 67867, - [SMALL_STATE(1688)] = 67930, - [SMALL_STATE(1689)] = 67993, - [SMALL_STATE(1690)] = 68056, - [SMALL_STATE(1691)] = 68119, - [SMALL_STATE(1692)] = 68182, - [SMALL_STATE(1693)] = 68245, - [SMALL_STATE(1694)] = 68308, - [SMALL_STATE(1695)] = 68371, - [SMALL_STATE(1696)] = 68432, - [SMALL_STATE(1697)] = 68495, - [SMALL_STATE(1698)] = 68558, - [SMALL_STATE(1699)] = 68621, - [SMALL_STATE(1700)] = 68685, - [SMALL_STATE(1701)] = 68741, - [SMALL_STATE(1702)] = 68803, - [SMALL_STATE(1703)] = 68865, - [SMALL_STATE(1704)] = 68927, - [SMALL_STATE(1705)] = 68989, - [SMALL_STATE(1706)] = 69051, - [SMALL_STATE(1707)] = 69113, - [SMALL_STATE(1708)] = 69175, - [SMALL_STATE(1709)] = 69237, - [SMALL_STATE(1710)] = 69299, - [SMALL_STATE(1711)] = 69361, - [SMALL_STATE(1712)] = 69423, - [SMALL_STATE(1713)] = 69481, - [SMALL_STATE(1714)] = 69539, - [SMALL_STATE(1715)] = 69601, - [SMALL_STATE(1716)] = 69665, - [SMALL_STATE(1717)] = 69725, - [SMALL_STATE(1718)] = 69781, - [SMALL_STATE(1719)] = 69838, - [SMALL_STATE(1720)] = 69899, - [SMALL_STATE(1721)] = 69956, - [SMALL_STATE(1722)] = 70017, - [SMALL_STATE(1723)] = 70072, - [SMALL_STATE(1724)] = 70127, - [SMALL_STATE(1725)] = 70182, - [SMALL_STATE(1726)] = 70237, - [SMALL_STATE(1727)] = 70292, - [SMALL_STATE(1728)] = 70349, - [SMALL_STATE(1729)] = 70409, - [SMALL_STATE(1730)] = 70463, - [SMALL_STATE(1731)] = 70517, - [SMALL_STATE(1732)] = 70571, - [SMALL_STATE(1733)] = 70625, - [SMALL_STATE(1734)] = 70679, - [SMALL_STATE(1735)] = 70733, - [SMALL_STATE(1736)] = 70787, - [SMALL_STATE(1737)] = 70841, - [SMALL_STATE(1738)] = 70895, - [SMALL_STATE(1739)] = 70949, - [SMALL_STATE(1740)] = 71003, - [SMALL_STATE(1741)] = 71057, - [SMALL_STATE(1742)] = 71111, - [SMALL_STATE(1743)] = 71171, - [SMALL_STATE(1744)] = 71225, - [SMALL_STATE(1745)] = 71279, - [SMALL_STATE(1746)] = 71333, - [SMALL_STATE(1747)] = 71387, - [SMALL_STATE(1748)] = 71441, - [SMALL_STATE(1749)] = 71495, - [SMALL_STATE(1750)] = 71549, - [SMALL_STATE(1751)] = 71603, - [SMALL_STATE(1752)] = 71657, - [SMALL_STATE(1753)] = 71713, - [SMALL_STATE(1754)] = 71767, - [SMALL_STATE(1755)] = 71821, - [SMALL_STATE(1756)] = 71877, - [SMALL_STATE(1757)] = 71931, - [SMALL_STATE(1758)] = 71985, - [SMALL_STATE(1759)] = 72039, - [SMALL_STATE(1760)] = 72093, - [SMALL_STATE(1761)] = 72147, - [SMALL_STATE(1762)] = 72201, - [SMALL_STATE(1763)] = 72255, - [SMALL_STATE(1764)] = 72309, - [SMALL_STATE(1765)] = 72363, - [SMALL_STATE(1766)] = 72423, - [SMALL_STATE(1767)] = 72481, - [SMALL_STATE(1768)] = 72535, - [SMALL_STATE(1769)] = 72595, - [SMALL_STATE(1770)] = 72649, - [SMALL_STATE(1771)] = 72703, - [SMALL_STATE(1772)] = 72757, - [SMALL_STATE(1773)] = 72811, - [SMALL_STATE(1774)] = 72865, - [SMALL_STATE(1775)] = 72918, - [SMALL_STATE(1776)] = 72971, - [SMALL_STATE(1777)] = 73024, - [SMALL_STATE(1778)] = 73081, - [SMALL_STATE(1779)] = 73138, - [SMALL_STATE(1780)] = 73193, - [SMALL_STATE(1781)] = 73252, - [SMALL_STATE(1782)] = 73305, - [SMALL_STATE(1783)] = 73358, - [SMALL_STATE(1784)] = 73411, - [SMALL_STATE(1785)] = 73468, - [SMALL_STATE(1786)] = 73521, - [SMALL_STATE(1787)] = 73574, - [SMALL_STATE(1788)] = 73627, - [SMALL_STATE(1789)] = 73680, - [SMALL_STATE(1790)] = 73733, - [SMALL_STATE(1791)] = 73786, - [SMALL_STATE(1792)] = 73839, - [SMALL_STATE(1793)] = 73892, - [SMALL_STATE(1794)] = 73953, - [SMALL_STATE(1795)] = 74012, - [SMALL_STATE(1796)] = 74069, - [SMALL_STATE(1797)] = 74122, - [SMALL_STATE(1798)] = 74177, - [SMALL_STATE(1799)] = 74230, - [SMALL_STATE(1800)] = 74283, - [SMALL_STATE(1801)] = 74336, - [SMALL_STATE(1802)] = 74389, - [SMALL_STATE(1803)] = 74442, - [SMALL_STATE(1804)] = 74495, - [SMALL_STATE(1805)] = 74548, - [SMALL_STATE(1806)] = 74601, - [SMALL_STATE(1807)] = 74656, - [SMALL_STATE(1808)] = 74711, - [SMALL_STATE(1809)] = 74764, - [SMALL_STATE(1810)] = 74823, - [SMALL_STATE(1811)] = 74876, - [SMALL_STATE(1812)] = 74929, - [SMALL_STATE(1813)] = 74982, - [SMALL_STATE(1814)] = 75035, - [SMALL_STATE(1815)] = 75088, - [SMALL_STATE(1816)] = 75141, - [SMALL_STATE(1817)] = 75198, - [SMALL_STATE(1818)] = 75251, - [SMALL_STATE(1819)] = 75308, - [SMALL_STATE(1820)] = 75361, - [SMALL_STATE(1821)] = 75414, - [SMALL_STATE(1822)] = 75467, - [SMALL_STATE(1823)] = 75520, - [SMALL_STATE(1824)] = 75573, - [SMALL_STATE(1825)] = 75626, - [SMALL_STATE(1826)] = 75679, - [SMALL_STATE(1827)] = 75732, - [SMALL_STATE(1828)] = 75785, - [SMALL_STATE(1829)] = 75841, - [SMALL_STATE(1830)] = 75905, - [SMALL_STATE(1831)] = 75969, - [SMALL_STATE(1832)] = 76021, - [SMALL_STATE(1833)] = 76075, - [SMALL_STATE(1834)] = 76133, - [SMALL_STATE(1835)] = 76189, - [SMALL_STATE(1836)] = 76241, - [SMALL_STATE(1837)] = 76299, - [SMALL_STATE(1838)] = 76361, - [SMALL_STATE(1839)] = 76419, - [SMALL_STATE(1840)] = 76477, - [SMALL_STATE(1841)] = 76541, - [SMALL_STATE(1842)] = 76593, - [SMALL_STATE(1843)] = 76645, - [SMALL_STATE(1844)] = 76699, - [SMALL_STATE(1845)] = 76751, - [SMALL_STATE(1846)] = 76803, - [SMALL_STATE(1847)] = 76861, - [SMALL_STATE(1848)] = 76919, - [SMALL_STATE(1849)] = 76976, - [SMALL_STATE(1850)] = 77027, - [SMALL_STATE(1851)] = 77082, - [SMALL_STATE(1852)] = 77139, - [SMALL_STATE(1853)] = 77196, - [SMALL_STATE(1854)] = 77247, - [SMALL_STATE(1855)] = 77300, - [SMALL_STATE(1856)] = 77351, - [SMALL_STATE(1857)] = 77404, - [SMALL_STATE(1858)] = 77461, - [SMALL_STATE(1859)] = 77514, - [SMALL_STATE(1860)] = 77571, - [SMALL_STATE(1861)] = 77622, - [SMALL_STATE(1862)] = 77675, - [SMALL_STATE(1863)] = 77732, - [SMALL_STATE(1864)] = 77789, - [SMALL_STATE(1865)] = 77846, - [SMALL_STATE(1866)] = 77903, - [SMALL_STATE(1867)] = 77954, - [SMALL_STATE(1868)] = 78005, - [SMALL_STATE(1869)] = 78058, - [SMALL_STATE(1870)] = 78111, - [SMALL_STATE(1871)] = 78168, - [SMALL_STATE(1872)] = 78219, - [SMALL_STATE(1873)] = 78270, - [SMALL_STATE(1874)] = 78321, - [SMALL_STATE(1875)] = 78378, - [SMALL_STATE(1876)] = 78435, - [SMALL_STATE(1877)] = 78488, - [SMALL_STATE(1878)] = 78543, - [SMALL_STATE(1879)] = 78600, - [SMALL_STATE(1880)] = 78655, - [SMALL_STATE(1881)] = 78712, - [SMALL_STATE(1882)] = 78767, - [SMALL_STATE(1883)] = 78824, - [SMALL_STATE(1884)] = 78879, - [SMALL_STATE(1885)] = 78936, - [SMALL_STATE(1886)] = 78989, - [SMALL_STATE(1887)] = 79046, - [SMALL_STATE(1888)] = 79099, - [SMALL_STATE(1889)] = 79150, - [SMALL_STATE(1890)] = 79207, - [SMALL_STATE(1891)] = 79264, - [SMALL_STATE(1892)] = 79320, - [SMALL_STATE(1893)] = 79372, - [SMALL_STATE(1894)] = 79422, - [SMALL_STATE(1895)] = 79472, - [SMALL_STATE(1896)] = 79522, - [SMALL_STATE(1897)] = 79572, - [SMALL_STATE(1898)] = 79622, - [SMALL_STATE(1899)] = 79672, - [SMALL_STATE(1900)] = 79724, - [SMALL_STATE(1901)] = 79780, - [SMALL_STATE(1902)] = 79836, - [SMALL_STATE(1903)] = 79886, - [SMALL_STATE(1904)] = 79936, - [SMALL_STATE(1905)] = 79988, - [SMALL_STATE(1906)] = 80040, - [SMALL_STATE(1907)] = 80092, - [SMALL_STATE(1908)] = 80148, - [SMALL_STATE(1909)] = 80204, - [SMALL_STATE(1910)] = 80260, - [SMALL_STATE(1911)] = 80310, - [SMALL_STATE(1912)] = 80362, - [SMALL_STATE(1913)] = 80414, - [SMALL_STATE(1914)] = 80464, - [SMALL_STATE(1915)] = 80518, - [SMALL_STATE(1916)] = 80568, - [SMALL_STATE(1917)] = 80618, - [SMALL_STATE(1918)] = 80670, - [SMALL_STATE(1919)] = 80720, - [SMALL_STATE(1920)] = 80772, - [SMALL_STATE(1921)] = 80822, - [SMALL_STATE(1922)] = 80872, - [SMALL_STATE(1923)] = 80926, - [SMALL_STATE(1924)] = 80976, - [SMALL_STATE(1925)] = 81029, - [SMALL_STATE(1926)] = 81078, - [SMALL_STATE(1927)] = 81133, - [SMALL_STATE(1928)] = 81188, - [SMALL_STATE(1929)] = 81243, - [SMALL_STATE(1930)] = 81298, - [SMALL_STATE(1931)] = 81353, - [SMALL_STATE(1932)] = 81402, - [SMALL_STATE(1933)] = 81457, - [SMALL_STATE(1934)] = 81506, - [SMALL_STATE(1935)] = 81555, - [SMALL_STATE(1936)] = 81610, - [SMALL_STATE(1937)] = 81661, - [SMALL_STATE(1938)] = 81710, - [SMALL_STATE(1939)] = 81765, - [SMALL_STATE(1940)] = 81814, - [SMALL_STATE(1941)] = 81869, - [SMALL_STATE(1942)] = 81920, - [SMALL_STATE(1943)] = 81971, - [SMALL_STATE(1944)] = 82020, - [SMALL_STATE(1945)] = 82069, - [SMALL_STATE(1946)] = 82124, - [SMALL_STATE(1947)] = 82179, - [SMALL_STATE(1948)] = 82232, - [SMALL_STATE(1949)] = 82281, - [SMALL_STATE(1950)] = 82336, - [SMALL_STATE(1951)] = 82385, - [SMALL_STATE(1952)] = 82440, - [SMALL_STATE(1953)] = 82489, - [SMALL_STATE(1954)] = 82544, - [SMALL_STATE(1955)] = 82599, - [SMALL_STATE(1956)] = 82652, - [SMALL_STATE(1957)] = 82707, - [SMALL_STATE(1958)] = 82762, - [SMALL_STATE(1959)] = 82813, - [SMALL_STATE(1960)] = 82868, - [SMALL_STATE(1961)] = 82923, - [SMALL_STATE(1962)] = 82972, - [SMALL_STATE(1963)] = 83023, - [SMALL_STATE(1964)] = 83072, - [SMALL_STATE(1965)] = 83123, - [SMALL_STATE(1966)] = 83172, - [SMALL_STATE(1967)] = 83227, - [SMALL_STATE(1968)] = 83276, - [SMALL_STATE(1969)] = 83324, - [SMALL_STATE(1970)] = 83378, - [SMALL_STATE(1971)] = 83426, - [SMALL_STATE(1972)] = 83476, - [SMALL_STATE(1973)] = 83556, - [SMALL_STATE(1974)] = 83610, - [SMALL_STATE(1975)] = 83660, - [SMALL_STATE(1976)] = 83708, - [SMALL_STATE(1977)] = 83762, - [SMALL_STATE(1978)] = 83816, - [SMALL_STATE(1979)] = 83864, - [SMALL_STATE(1980)] = 83912, - [SMALL_STATE(1981)] = 83960, - [SMALL_STATE(1982)] = 84010, - [SMALL_STATE(1983)] = 84058, - [SMALL_STATE(1984)] = 84106, - [SMALL_STATE(1985)] = 84160, - [SMALL_STATE(1986)] = 84208, - [SMALL_STATE(1987)] = 84256, - [SMALL_STATE(1988)] = 84304, - [SMALL_STATE(1989)] = 84352, - [SMALL_STATE(1990)] = 84406, - [SMALL_STATE(1991)] = 84454, - [SMALL_STATE(1992)] = 84508, - [SMALL_STATE(1993)] = 84560, - [SMALL_STATE(1994)] = 84614, - [SMALL_STATE(1995)] = 84668, - [SMALL_STATE(1996)] = 84716, - [SMALL_STATE(1997)] = 84764, - [SMALL_STATE(1998)] = 84812, - [SMALL_STATE(1999)] = 84860, - [SMALL_STATE(2000)] = 84914, - [SMALL_STATE(2001)] = 84962, - [SMALL_STATE(2002)] = 85014, - [SMALL_STATE(2003)] = 85062, - [SMALL_STATE(2004)] = 85110, - [SMALL_STATE(2005)] = 85158, - [SMALL_STATE(2006)] = 85206, - [SMALL_STATE(2007)] = 85260, - [SMALL_STATE(2008)] = 85312, - [SMALL_STATE(2009)] = 85364, - [SMALL_STATE(2010)] = 85418, - [SMALL_STATE(2011)] = 85472, - [SMALL_STATE(2012)] = 85520, - [SMALL_STATE(2013)] = 85568, - [SMALL_STATE(2014)] = 85616, - [SMALL_STATE(2015)] = 85666, - [SMALL_STATE(2016)] = 85716, - [SMALL_STATE(2017)] = 85770, - [SMALL_STATE(2018)] = 85824, - [SMALL_STATE(2019)] = 85872, - [SMALL_STATE(2020)] = 85920, - [SMALL_STATE(2021)] = 85968, - [SMALL_STATE(2022)] = 86030, - [SMALL_STATE(2023)] = 86086, - [SMALL_STATE(2024)] = 86152, - [SMALL_STATE(2025)] = 86206, - [SMALL_STATE(2026)] = 86260, - [SMALL_STATE(2027)] = 86314, - [SMALL_STATE(2028)] = 86368, - [SMALL_STATE(2029)] = 86420, - [SMALL_STATE(2030)] = 86468, - [SMALL_STATE(2031)] = 86516, - [SMALL_STATE(2032)] = 86566, - [SMALL_STATE(2033)] = 86624, - [SMALL_STATE(2034)] = 86692, - [SMALL_STATE(2035)] = 86762, - [SMALL_STATE(2036)] = 86834, - [SMALL_STATE(2037)] = 86908, - [SMALL_STATE(2038)] = 86984, - [SMALL_STATE(2039)] = 87038, - [SMALL_STATE(2040)] = 87116, - [SMALL_STATE(2041)] = 87196, - [SMALL_STATE(2042)] = 87250, - [SMALL_STATE(2043)] = 87304, - [SMALL_STATE(2044)] = 87358, - [SMALL_STATE(2045)] = 87406, - [SMALL_STATE(2046)] = 87454, - [SMALL_STATE(2047)] = 87504, - [SMALL_STATE(2048)] = 87554, - [SMALL_STATE(2049)] = 87602, - [SMALL_STATE(2050)] = 87656, - [SMALL_STATE(2051)] = 87710, - [SMALL_STATE(2052)] = 87764, - [SMALL_STATE(2053)] = 87818, - [SMALL_STATE(2054)] = 87866, - [SMALL_STATE(2055)] = 87912, - [SMALL_STATE(2056)] = 87966, - [SMALL_STATE(2057)] = 88014, - [SMALL_STATE(2058)] = 88062, - [SMALL_STATE(2059)] = 88110, - [SMALL_STATE(2060)] = 88192, - [SMALL_STATE(2061)] = 88240, - [SMALL_STATE(2062)] = 88288, - [SMALL_STATE(2063)] = 88340, - [SMALL_STATE(2064)] = 88394, - [SMALL_STATE(2065)] = 88444, - [SMALL_STATE(2066)] = 88494, - [SMALL_STATE(2067)] = 88544, - [SMALL_STATE(2068)] = 88598, - [SMALL_STATE(2069)] = 88646, - [SMALL_STATE(2070)] = 88700, - [SMALL_STATE(2071)] = 88782, - [SMALL_STATE(2072)] = 88830, - [SMALL_STATE(2073)] = 88912, - [SMALL_STATE(2074)] = 88966, - [SMALL_STATE(2075)] = 89048, - [SMALL_STATE(2076)] = 89096, - [SMALL_STATE(2077)] = 89178, - [SMALL_STATE(2078)] = 89226, - [SMALL_STATE(2079)] = 89308, - [SMALL_STATE(2080)] = 89390, - [SMALL_STATE(2081)] = 89438, - [SMALL_STATE(2082)] = 89492, - [SMALL_STATE(2083)] = 89546, - [SMALL_STATE(2084)] = 89628, - [SMALL_STATE(2085)] = 89676, - [SMALL_STATE(2086)] = 89758, - [SMALL_STATE(2087)] = 89840, - [SMALL_STATE(2088)] = 89922, - [SMALL_STATE(2089)] = 89969, - [SMALL_STATE(2090)] = 90018, - [SMALL_STATE(2091)] = 90065, - [SMALL_STATE(2092)] = 90146, - [SMALL_STATE(2093)] = 90193, - [SMALL_STATE(2094)] = 90240, - [SMALL_STATE(2095)] = 90287, - [SMALL_STATE(2096)] = 90334, - [SMALL_STATE(2097)] = 90387, - [SMALL_STATE(2098)] = 90468, - [SMALL_STATE(2099)] = 90515, - [SMALL_STATE(2100)] = 90596, - [SMALL_STATE(2101)] = 90645, - [SMALL_STATE(2102)] = 90726, - [SMALL_STATE(2103)] = 90807, - [SMALL_STATE(2104)] = 90854, - [SMALL_STATE(2105)] = 90907, - [SMALL_STATE(2106)] = 90988, - [SMALL_STATE(2107)] = 91035, - [SMALL_STATE(2108)] = 91088, - [SMALL_STATE(2109)] = 91169, - [SMALL_STATE(2110)] = 91214, - [SMALL_STATE(2111)] = 91259, - [SMALL_STATE(2112)] = 91306, - [SMALL_STATE(2113)] = 91355, - [SMALL_STATE(2114)] = 91402, - [SMALL_STATE(2115)] = 91455, - [SMALL_STATE(2116)] = 91508, - [SMALL_STATE(2117)] = 91555, - [SMALL_STATE(2118)] = 91636, - [SMALL_STATE(2119)] = 91715, - [SMALL_STATE(2120)] = 91764, - [SMALL_STATE(2121)] = 91811, - [SMALL_STATE(2122)] = 91858, - [SMALL_STATE(2123)] = 91907, - [SMALL_STATE(2124)] = 91952, - [SMALL_STATE(2125)] = 92001, - [SMALL_STATE(2126)] = 92082, - [SMALL_STATE(2127)] = 92129, - [SMALL_STATE(2128)] = 92210, - [SMALL_STATE(2129)] = 92291, - [SMALL_STATE(2130)] = 92340, - [SMALL_STATE(2131)] = 92393, - [SMALL_STATE(2132)] = 92442, - [SMALL_STATE(2133)] = 92495, - [SMALL_STATE(2134)] = 92542, - [SMALL_STATE(2135)] = 92589, - [SMALL_STATE(2136)] = 92642, - [SMALL_STATE(2137)] = 92687, - [SMALL_STATE(2138)] = 92766, - [SMALL_STATE(2139)] = 92817, - [SMALL_STATE(2140)] = 92864, - [SMALL_STATE(2141)] = 92917, - [SMALL_STATE(2142)] = 92962, - [SMALL_STATE(2143)] = 93009, - [SMALL_STATE(2144)] = 93056, - [SMALL_STATE(2145)] = 93103, - [SMALL_STATE(2146)] = 93150, - [SMALL_STATE(2147)] = 93199, - [SMALL_STATE(2148)] = 93246, - [SMALL_STATE(2149)] = 93293, - [SMALL_STATE(2150)] = 93342, - [SMALL_STATE(2151)] = 93387, - [SMALL_STATE(2152)] = 93434, - [SMALL_STATE(2153)] = 93487, - [SMALL_STATE(2154)] = 93536, - [SMALL_STATE(2155)] = 93585, - [SMALL_STATE(2156)] = 93632, - [SMALL_STATE(2157)] = 93679, - [SMALL_STATE(2158)] = 93731, - [SMALL_STATE(2159)] = 93791, - [SMALL_STATE(2160)] = 93837, - [SMALL_STATE(2161)] = 93883, - [SMALL_STATE(2162)] = 93929, - [SMALL_STATE(2163)] = 93975, - [SMALL_STATE(2164)] = 94021, - [SMALL_STATE(2165)] = 94067, - [SMALL_STATE(2166)] = 94113, - [SMALL_STATE(2167)] = 94159, - [SMALL_STATE(2168)] = 94205, - [SMALL_STATE(2169)] = 94251, - [SMALL_STATE(2170)] = 94297, - [SMALL_STATE(2171)] = 94343, - [SMALL_STATE(2172)] = 94395, - [SMALL_STATE(2173)] = 94441, - [SMALL_STATE(2174)] = 94487, - [SMALL_STATE(2175)] = 94533, - [SMALL_STATE(2176)] = 94585, - [SMALL_STATE(2177)] = 94631, - [SMALL_STATE(2178)] = 94677, - [SMALL_STATE(2179)] = 94725, - [SMALL_STATE(2180)] = 94771, - [SMALL_STATE(2181)] = 94827, - [SMALL_STATE(2182)] = 94879, - [SMALL_STATE(2183)] = 94937, - [SMALL_STATE(2184)] = 95015, - [SMALL_STATE(2185)] = 95061, - [SMALL_STATE(2186)] = 95107, - [SMALL_STATE(2187)] = 95157, - [SMALL_STATE(2188)] = 95205, - [SMALL_STATE(2189)] = 95257, - [SMALL_STATE(2190)] = 95309, - [SMALL_STATE(2191)] = 95363, - [SMALL_STATE(2192)] = 95409, - [SMALL_STATE(2193)] = 95487, - [SMALL_STATE(2194)] = 95533, - [SMALL_STATE(2195)] = 95579, - [SMALL_STATE(2196)] = 95625, - [SMALL_STATE(2197)] = 95687, - [SMALL_STATE(2198)] = 95751, - [SMALL_STATE(2199)] = 95797, - [SMALL_STATE(2200)] = 95843, - [SMALL_STATE(2201)] = 95889, - [SMALL_STATE(2202)] = 95941, - [SMALL_STATE(2203)] = 95987, - [SMALL_STATE(2204)] = 96033, - [SMALL_STATE(2205)] = 96099, - [SMALL_STATE(2206)] = 96167, - [SMALL_STATE(2207)] = 96213, - [SMALL_STATE(2208)] = 96259, - [SMALL_STATE(2209)] = 96305, - [SMALL_STATE(2210)] = 96351, - [SMALL_STATE(2211)] = 96397, - [SMALL_STATE(2212)] = 96443, - [SMALL_STATE(2213)] = 96489, - [SMALL_STATE(2214)] = 96535, - [SMALL_STATE(2215)] = 96605, - [SMALL_STATE(2216)] = 96677, - [SMALL_STATE(2217)] = 96723, - [SMALL_STATE(2218)] = 96775, - [SMALL_STATE(2219)] = 96821, - [SMALL_STATE(2220)] = 96867, - [SMALL_STATE(2221)] = 96919, - [SMALL_STATE(2222)] = 96971, - [SMALL_STATE(2223)] = 97015, - [SMALL_STATE(2224)] = 97061, - [SMALL_STATE(2225)] = 97107, - [SMALL_STATE(2226)] = 97159, - [SMALL_STATE(2227)] = 97207, - [SMALL_STATE(2228)] = 97255, - [SMALL_STATE(2229)] = 97305, - [SMALL_STATE(2230)] = 97351, - [SMALL_STATE(2231)] = 97397, - [SMALL_STATE(2232)] = 97443, - [SMALL_STATE(2233)] = 97489, - [SMALL_STATE(2234)] = 97534, - [SMALL_STATE(2235)] = 97579, - [SMALL_STATE(2236)] = 97624, - [SMALL_STATE(2237)] = 97669, - [SMALL_STATE(2238)] = 97714, - [SMALL_STATE(2239)] = 97759, - [SMALL_STATE(2240)] = 97804, - [SMALL_STATE(2241)] = 97849, - [SMALL_STATE(2242)] = 97894, - [SMALL_STATE(2243)] = 97939, - [SMALL_STATE(2244)] = 97984, - [SMALL_STATE(2245)] = 98029, - [SMALL_STATE(2246)] = 98080, - [SMALL_STATE(2247)] = 98125, - [SMALL_STATE(2248)] = 98170, - [SMALL_STATE(2249)] = 98215, - [SMALL_STATE(2250)] = 98260, - [SMALL_STATE(2251)] = 98305, - [SMALL_STATE(2252)] = 98350, - [SMALL_STATE(2253)] = 98395, - [SMALL_STATE(2254)] = 98440, - [SMALL_STATE(2255)] = 98491, - [SMALL_STATE(2256)] = 98536, - [SMALL_STATE(2257)] = 98581, - [SMALL_STATE(2258)] = 98626, - [SMALL_STATE(2259)] = 98671, - [SMALL_STATE(2260)] = 98754, - [SMALL_STATE(2261)] = 98799, - [SMALL_STATE(2262)] = 98844, - [SMALL_STATE(2263)] = 98889, - [SMALL_STATE(2264)] = 98934, - [SMALL_STATE(2265)] = 98979, - [SMALL_STATE(2266)] = 99024, - [SMALL_STATE(2267)] = 99069, - [SMALL_STATE(2268)] = 99114, - [SMALL_STATE(2269)] = 99159, - [SMALL_STATE(2270)] = 99204, - [SMALL_STATE(2271)] = 99249, - [SMALL_STATE(2272)] = 99294, - [SMALL_STATE(2273)] = 99339, - [SMALL_STATE(2274)] = 99398, - [SMALL_STATE(2275)] = 99453, - [SMALL_STATE(2276)] = 99498, - [SMALL_STATE(2277)] = 99549, - [SMALL_STATE(2278)] = 99610, - [SMALL_STATE(2279)] = 99659, - [SMALL_STATE(2280)] = 99710, - [SMALL_STATE(2281)] = 99757, - [SMALL_STATE(2282)] = 99814, - [SMALL_STATE(2283)] = 99859, - [SMALL_STATE(2284)] = 99904, - [SMALL_STATE(2285)] = 99969, - [SMALL_STATE(2286)] = 100036, - [SMALL_STATE(2287)] = 100105, - [SMALL_STATE(2288)] = 100176, - [SMALL_STATE(2289)] = 100249, - [SMALL_STATE(2290)] = 100294, - [SMALL_STATE(2291)] = 100369, - [SMALL_STATE(2292)] = 100416, - [SMALL_STATE(2293)] = 100463, - [SMALL_STATE(2294)] = 100546, - [SMALL_STATE(2295)] = 100629, - [SMALL_STATE(2296)] = 100712, - [SMALL_STATE(2297)] = 100757, - [SMALL_STATE(2298)] = 100802, - [SMALL_STATE(2299)] = 100877, - [SMALL_STATE(2300)] = 100928, - [SMALL_STATE(2301)] = 100973, - [SMALL_STATE(2302)] = 101036, - [SMALL_STATE(2303)] = 101117, - [SMALL_STATE(2304)] = 101162, - [SMALL_STATE(2305)] = 101207, - [SMALL_STATE(2306)] = 101252, - [SMALL_STATE(2307)] = 101297, - [SMALL_STATE(2308)] = 101342, - [SMALL_STATE(2309)] = 101387, - [SMALL_STATE(2310)] = 101432, - [SMALL_STATE(2311)] = 101477, - [SMALL_STATE(2312)] = 101522, - [SMALL_STATE(2313)] = 101567, - [SMALL_STATE(2314)] = 101612, - [SMALL_STATE(2315)] = 101657, - [SMALL_STATE(2316)] = 101702, - [SMALL_STATE(2317)] = 101747, - [SMALL_STATE(2318)] = 101792, - [SMALL_STATE(2319)] = 101843, - [SMALL_STATE(2320)] = 101888, - [SMALL_STATE(2321)] = 101933, - [SMALL_STATE(2322)] = 101978, - [SMALL_STATE(2323)] = 102023, - [SMALL_STATE(2324)] = 102068, - [SMALL_STATE(2325)] = 102119, - [SMALL_STATE(2326)] = 102164, - [SMALL_STATE(2327)] = 102209, - [SMALL_STATE(2328)] = 102260, - [SMALL_STATE(2329)] = 102305, - [SMALL_STATE(2330)] = 102350, - [SMALL_STATE(2331)] = 102395, - [SMALL_STATE(2332)] = 102466, - [SMALL_STATE(2333)] = 102535, - [SMALL_STATE(2334)] = 102602, - [SMALL_STATE(2335)] = 102647, - [SMALL_STATE(2336)] = 102692, - [SMALL_STATE(2337)] = 102757, - [SMALL_STATE(2338)] = 102820, - [SMALL_STATE(2339)] = 102881, - [SMALL_STATE(2340)] = 102940, - [SMALL_STATE(2341)] = 102993, - [SMALL_STATE(2342)] = 103044, - [SMALL_STATE(2343)] = 103089, - [SMALL_STATE(2344)] = 103134, - [SMALL_STATE(2345)] = 103185, - [SMALL_STATE(2346)] = 103230, - [SMALL_STATE(2347)] = 103277, - [SMALL_STATE(2348)] = 103332, - [SMALL_STATE(2349)] = 103381, - [SMALL_STATE(2350)] = 103432, - [SMALL_STATE(2351)] = 103477, - [SMALL_STATE(2352)] = 103522, - [SMALL_STATE(2353)] = 103605, - [SMALL_STATE(2354)] = 103650, - [SMALL_STATE(2355)] = 103695, - [SMALL_STATE(2356)] = 103746, - [SMALL_STATE(2357)] = 103791, - [SMALL_STATE(2358)] = 103848, - [SMALL_STATE(2359)] = 103931, - [SMALL_STATE(2360)] = 103976, - [SMALL_STATE(2361)] = 104021, - [SMALL_STATE(2362)] = 104066, - [SMALL_STATE(2363)] = 104149, - [SMALL_STATE(2364)] = 104194, - [SMALL_STATE(2365)] = 104239, - [SMALL_STATE(2366)] = 104284, - [SMALL_STATE(2367)] = 104329, - [SMALL_STATE(2368)] = 104374, - [SMALL_STATE(2369)] = 104457, - [SMALL_STATE(2370)] = 104540, - [SMALL_STATE(2371)] = 104623, - [SMALL_STATE(2372)] = 104706, - [SMALL_STATE(2373)] = 104789, - [SMALL_STATE(2374)] = 104872, - [SMALL_STATE(2375)] = 104933, - [SMALL_STATE(2376)] = 104988, - [SMALL_STATE(2377)] = 105053, - [SMALL_STATE(2378)] = 105104, - [SMALL_STATE(2379)] = 105151, - [SMALL_STATE(2380)] = 105208, - [SMALL_STATE(2381)] = 105275, - [SMALL_STATE(2382)] = 105344, - [SMALL_STATE(2383)] = 105415, - [SMALL_STATE(2384)] = 105488, - [SMALL_STATE(2385)] = 105563, - [SMALL_STATE(2386)] = 105640, - [SMALL_STATE(2387)] = 105719, - [SMALL_STATE(2388)] = 105768, - [SMALL_STATE(2389)] = 105851, - [SMALL_STATE(2390)] = 105934, - [SMALL_STATE(2391)] = 105979, - [SMALL_STATE(2392)] = 106062, - [SMALL_STATE(2393)] = 106106, - [SMALL_STATE(2394)] = 106176, - [SMALL_STATE(2395)] = 106250, - [SMALL_STATE(2396)] = 106294, - [SMALL_STATE(2397)] = 106338, - [SMALL_STATE(2398)] = 106382, - [SMALL_STATE(2399)] = 106426, - [SMALL_STATE(2400)] = 106496, - [SMALL_STATE(2401)] = 106570, - [SMALL_STATE(2402)] = 106614, - [SMALL_STATE(2403)] = 106658, - [SMALL_STATE(2404)] = 106702, - [SMALL_STATE(2405)] = 106746, - [SMALL_STATE(2406)] = 106790, - [SMALL_STATE(2407)] = 106836, - [SMALL_STATE(2408)] = 106888, - [SMALL_STATE(2409)] = 106958, - [SMALL_STATE(2410)] = 107002, - [SMALL_STATE(2411)] = 107046, - [SMALL_STATE(2412)] = 107090, - [SMALL_STATE(2413)] = 107134, - [SMALL_STATE(2414)] = 107178, - [SMALL_STATE(2415)] = 107222, - [SMALL_STATE(2416)] = 107266, - [SMALL_STATE(2417)] = 107310, - [SMALL_STATE(2418)] = 107354, - [SMALL_STATE(2419)] = 107424, - [SMALL_STATE(2420)] = 107468, - [SMALL_STATE(2421)] = 107512, - [SMALL_STATE(2422)] = 107582, - [SMALL_STATE(2423)] = 107626, - [SMALL_STATE(2424)] = 107670, - [SMALL_STATE(2425)] = 107714, - [SMALL_STATE(2426)] = 107784, - [SMALL_STATE(2427)] = 107854, - [SMALL_STATE(2428)] = 107922, - [SMALL_STATE(2429)] = 107988, - [SMALL_STATE(2430)] = 108052, - [SMALL_STATE(2431)] = 108114, - [SMALL_STATE(2432)] = 108174, - [SMALL_STATE(2433)] = 108244, - [SMALL_STATE(2434)] = 108314, - [SMALL_STATE(2435)] = 108372, - [SMALL_STATE(2436)] = 108424, - [SMALL_STATE(2437)] = 108494, - [SMALL_STATE(2438)] = 108540, - [SMALL_STATE(2439)] = 108610, - [SMALL_STATE(2440)] = 108680, - [SMALL_STATE(2441)] = 108750, - [SMALL_STATE(2442)] = 108798, - [SMALL_STATE(2443)] = 108854, - [SMALL_STATE(2444)] = 108904, - [SMALL_STATE(2445)] = 108958, - [SMALL_STATE(2446)] = 109028, - [SMALL_STATE(2447)] = 109098, - [SMALL_STATE(2448)] = 109168, - [SMALL_STATE(2449)] = 109238, - [SMALL_STATE(2450)] = 109308, - [SMALL_STATE(2451)] = 109378, - [SMALL_STATE(2452)] = 109422, - [SMALL_STATE(2453)] = 109466, - [SMALL_STATE(2454)] = 109536, - [SMALL_STATE(2455)] = 109606, - [SMALL_STATE(2456)] = 109650, - [SMALL_STATE(2457)] = 109720, - [SMALL_STATE(2458)] = 109790, - [SMALL_STATE(2459)] = 109834, - [SMALL_STATE(2460)] = 109904, - [SMALL_STATE(2461)] = 109974, - [SMALL_STATE(2462)] = 110044, - [SMALL_STATE(2463)] = 110114, - [SMALL_STATE(2464)] = 110184, - [SMALL_STATE(2465)] = 110254, - [SMALL_STATE(2466)] = 110324, - [SMALL_STATE(2467)] = 110394, - [SMALL_STATE(2468)] = 110464, - [SMALL_STATE(2469)] = 110534, - [SMALL_STATE(2470)] = 110604, - [SMALL_STATE(2471)] = 110674, - [SMALL_STATE(2472)] = 110744, - [SMALL_STATE(2473)] = 110814, - [SMALL_STATE(2474)] = 110858, - [SMALL_STATE(2475)] = 110928, - [SMALL_STATE(2476)] = 110998, - [SMALL_STATE(2477)] = 111068, - [SMALL_STATE(2478)] = 111138, - [SMALL_STATE(2479)] = 111208, - [SMALL_STATE(2480)] = 111278, - [SMALL_STATE(2481)] = 111348, - [SMALL_STATE(2482)] = 111418, - [SMALL_STATE(2483)] = 111488, - [SMALL_STATE(2484)] = 111558, - [SMALL_STATE(2485)] = 111640, - [SMALL_STATE(2486)] = 111710, - [SMALL_STATE(2487)] = 111780, - [SMALL_STATE(2488)] = 111850, - [SMALL_STATE(2489)] = 111920, - [SMALL_STATE(2490)] = 111990, - [SMALL_STATE(2491)] = 112034, - [SMALL_STATE(2492)] = 112104, - [SMALL_STATE(2493)] = 112174, - [SMALL_STATE(2494)] = 112244, - [SMALL_STATE(2495)] = 112314, - [SMALL_STATE(2496)] = 112384, - [SMALL_STATE(2497)] = 112454, - [SMALL_STATE(2498)] = 112524, - [SMALL_STATE(2499)] = 112594, - [SMALL_STATE(2500)] = 112664, - [SMALL_STATE(2501)] = 112734, - [SMALL_STATE(2502)] = 112804, - [SMALL_STATE(2503)] = 112874, - [SMALL_STATE(2504)] = 112944, - [SMALL_STATE(2505)] = 113014, - [SMALL_STATE(2506)] = 113084, - [SMALL_STATE(2507)] = 113154, - [SMALL_STATE(2508)] = 113224, - [SMALL_STATE(2509)] = 113294, - [SMALL_STATE(2510)] = 113364, - [SMALL_STATE(2511)] = 113434, - [SMALL_STATE(2512)] = 113504, - [SMALL_STATE(2513)] = 113574, - [SMALL_STATE(2514)] = 113644, - [SMALL_STATE(2515)] = 113714, - [SMALL_STATE(2516)] = 113784, - [SMALL_STATE(2517)] = 113854, - [SMALL_STATE(2518)] = 113924, - [SMALL_STATE(2519)] = 113994, - [SMALL_STATE(2520)] = 114064, - [SMALL_STATE(2521)] = 114134, - [SMALL_STATE(2522)] = 114204, - [SMALL_STATE(2523)] = 114274, - [SMALL_STATE(2524)] = 114344, - [SMALL_STATE(2525)] = 114414, - [SMALL_STATE(2526)] = 114483, - [SMALL_STATE(2527)] = 114552, - [SMALL_STATE(2528)] = 114621, - [SMALL_STATE(2529)] = 114690, - [SMALL_STATE(2530)] = 114759, - [SMALL_STATE(2531)] = 114828, - [SMALL_STATE(2532)] = 114897, - [SMALL_STATE(2533)] = 114940, - [SMALL_STATE(2534)] = 115009, - [SMALL_STATE(2535)] = 115078, - [SMALL_STATE(2536)] = 115147, - [SMALL_STATE(2537)] = 115216, - [SMALL_STATE(2538)] = 115283, - [SMALL_STATE(2539)] = 115348, - [SMALL_STATE(2540)] = 115411, - [SMALL_STATE(2541)] = 115472, - [SMALL_STATE(2542)] = 115541, - [SMALL_STATE(2543)] = 115600, - [SMALL_STATE(2544)] = 115657, - [SMALL_STATE(2545)] = 115708, - [SMALL_STATE(2546)] = 115753, - [SMALL_STATE(2547)] = 115800, - [SMALL_STATE(2548)] = 115855, - [SMALL_STATE(2549)] = 115898, - [SMALL_STATE(2550)] = 115947, - [SMALL_STATE(2551)] = 116000, - [SMALL_STATE(2552)] = 116069, - [SMALL_STATE(2553)] = 116138, - [SMALL_STATE(2554)] = 116207, - [SMALL_STATE(2555)] = 116276, - [SMALL_STATE(2556)] = 116319, - [SMALL_STATE(2557)] = 116388, - [SMALL_STATE(2558)] = 116457, - [SMALL_STATE(2559)] = 116526, - [SMALL_STATE(2560)] = 116595, - [SMALL_STATE(2561)] = 116664, - [SMALL_STATE(2562)] = 116733, - [SMALL_STATE(2563)] = 116776, - [SMALL_STATE(2564)] = 116845, - [SMALL_STATE(2565)] = 116914, - [SMALL_STATE(2566)] = 116983, - [SMALL_STATE(2567)] = 117052, - [SMALL_STATE(2568)] = 117095, - [SMALL_STATE(2569)] = 117164, - [SMALL_STATE(2570)] = 117207, - [SMALL_STATE(2571)] = 117276, - [SMALL_STATE(2572)] = 117345, - [SMALL_STATE(2573)] = 117388, - [SMALL_STATE(2574)] = 117457, - [SMALL_STATE(2575)] = 117526, - [SMALL_STATE(2576)] = 117569, - [SMALL_STATE(2577)] = 117612, - [SMALL_STATE(2578)] = 117655, - [SMALL_STATE(2579)] = 117698, - [SMALL_STATE(2580)] = 117741, - [SMALL_STATE(2581)] = 117814, - [SMALL_STATE(2582)] = 117857, - [SMALL_STATE(2583)] = 117900, - [SMALL_STATE(2584)] = 117943, - [SMALL_STATE(2585)] = 118012, - [SMALL_STATE(2586)] = 118055, - [SMALL_STATE(2587)] = 118124, - [SMALL_STATE(2588)] = 118193, - [SMALL_STATE(2589)] = 118262, - [SMALL_STATE(2590)] = 118331, - [SMALL_STATE(2591)] = 118400, - [SMALL_STATE(2592)] = 118469, - [SMALL_STATE(2593)] = 118538, - [SMALL_STATE(2594)] = 118607, - [SMALL_STATE(2595)] = 118676, - [SMALL_STATE(2596)] = 118719, - [SMALL_STATE(2597)] = 118788, - [SMALL_STATE(2598)] = 118831, - [SMALL_STATE(2599)] = 118876, - [SMALL_STATE(2600)] = 118945, - [SMALL_STATE(2601)] = 118990, - [SMALL_STATE(2602)] = 119033, - [SMALL_STATE(2603)] = 119102, - [SMALL_STATE(2604)] = 119145, - [SMALL_STATE(2605)] = 119188, - [SMALL_STATE(2606)] = 119231, - [SMALL_STATE(2607)] = 119274, - [SMALL_STATE(2608)] = 119317, - [SMALL_STATE(2609)] = 119360, - [SMALL_STATE(2610)] = 119429, - [SMALL_STATE(2611)] = 119498, - [SMALL_STATE(2612)] = 119567, - [SMALL_STATE(2613)] = 119636, - [SMALL_STATE(2614)] = 119705, - [SMALL_STATE(2615)] = 119774, - [SMALL_STATE(2616)] = 119843, - [SMALL_STATE(2617)] = 119912, - [SMALL_STATE(2618)] = 119981, - [SMALL_STATE(2619)] = 120050, - [SMALL_STATE(2620)] = 120093, - [SMALL_STATE(2621)] = 120162, - [SMALL_STATE(2622)] = 120231, - [SMALL_STATE(2623)] = 120300, - [SMALL_STATE(2624)] = 120369, - [SMALL_STATE(2625)] = 120438, - [SMALL_STATE(2626)] = 120507, - [SMALL_STATE(2627)] = 120576, - [SMALL_STATE(2628)] = 120619, - [SMALL_STATE(2629)] = 120688, - [SMALL_STATE(2630)] = 120757, - [SMALL_STATE(2631)] = 120826, - [SMALL_STATE(2632)] = 120895, - [SMALL_STATE(2633)] = 120964, - [SMALL_STATE(2634)] = 121033, - [SMALL_STATE(2635)] = 121102, - [SMALL_STATE(2636)] = 121171, - [SMALL_STATE(2637)] = 121240, - [SMALL_STATE(2638)] = 121309, - [SMALL_STATE(2639)] = 121378, - [SMALL_STATE(2640)] = 121447, - [SMALL_STATE(2641)] = 121516, - [SMALL_STATE(2642)] = 121585, - [SMALL_STATE(2643)] = 121654, - [SMALL_STATE(2644)] = 121723, - [SMALL_STATE(2645)] = 121792, - [SMALL_STATE(2646)] = 121861, - [SMALL_STATE(2647)] = 121930, - [SMALL_STATE(2648)] = 121999, - [SMALL_STATE(2649)] = 122042, - [SMALL_STATE(2650)] = 122111, - [SMALL_STATE(2651)] = 122180, - [SMALL_STATE(2652)] = 122249, - [SMALL_STATE(2653)] = 122318, - [SMALL_STATE(2654)] = 122387, - [SMALL_STATE(2655)] = 122453, - [SMALL_STATE(2656)] = 122495, - [SMALL_STATE(2657)] = 122537, - [SMALL_STATE(2658)] = 122593, - [SMALL_STATE(2659)] = 122635, - [SMALL_STATE(2660)] = 122677, - [SMALL_STATE(2661)] = 122719, - [SMALL_STATE(2662)] = 122761, - [SMALL_STATE(2663)] = 122803, - [SMALL_STATE(2664)] = 122845, - [SMALL_STATE(2665)] = 122887, - [SMALL_STATE(2666)] = 122929, - [SMALL_STATE(2667)] = 122999, - [SMALL_STATE(2668)] = 123041, - [SMALL_STATE(2669)] = 123083, - [SMALL_STATE(2670)] = 123153, - [SMALL_STATE(2671)] = 123195, - [SMALL_STATE(2672)] = 123237, - [SMALL_STATE(2673)] = 123279, - [SMALL_STATE(2674)] = 123349, - [SMALL_STATE(2675)] = 123391, - [SMALL_STATE(2676)] = 123433, - [SMALL_STATE(2677)] = 123475, - [SMALL_STATE(2678)] = 123529, - [SMALL_STATE(2679)] = 123571, - [SMALL_STATE(2680)] = 123613, - [SMALL_STATE(2681)] = 123655, - [SMALL_STATE(2682)] = 123697, - [SMALL_STATE(2683)] = 123739, - [SMALL_STATE(2684)] = 123781, - [SMALL_STATE(2685)] = 123823, - [SMALL_STATE(2686)] = 123891, - [SMALL_STATE(2687)] = 123933, - [SMALL_STATE(2688)] = 123995, - [SMALL_STATE(2689)] = 124037, - [SMALL_STATE(2690)] = 124101, - [SMALL_STATE(2691)] = 124143, - [SMALL_STATE(2692)] = 124203, - [SMALL_STATE(2693)] = 124261, - [SMALL_STATE(2694)] = 124313, - [SMALL_STATE(2695)] = 124357, - [SMALL_STATE(2696)] = 124399, - [SMALL_STATE(2697)] = 124449, - [SMALL_STATE(2698)] = 124497, - [SMALL_STATE(2699)] = 124539, - [SMALL_STATE(2700)] = 124612, - [SMALL_STATE(2701)] = 124685, - [SMALL_STATE(2702)] = 124756, - [SMALL_STATE(2703)] = 124827, - [SMALL_STATE(2704)] = 124898, - [SMALL_STATE(2705)] = 124971, - [SMALL_STATE(2706)] = 125014, - [SMALL_STATE(2707)] = 125087, - [SMALL_STATE(2708)] = 125160, - [SMALL_STATE(2709)] = 125233, - [SMALL_STATE(2710)] = 125303, - [SMALL_STATE(2711)] = 125373, - [SMALL_STATE(2712)] = 125413, - [SMALL_STATE(2713)] = 125453, - [SMALL_STATE(2714)] = 125481, - [SMALL_STATE(2715)] = 125507, - [SMALL_STATE(2716)] = 125533, - [SMALL_STATE(2717)] = 125573, - [SMALL_STATE(2718)] = 125619, - [SMALL_STATE(2719)] = 125645, - [SMALL_STATE(2720)] = 125682, - [SMALL_STATE(2721)] = 125719, - [SMALL_STATE(2722)] = 125746, - [SMALL_STATE(2723)] = 125773, - [SMALL_STATE(2724)] = 125819, - [SMALL_STATE(2725)] = 125865, - [SMALL_STATE(2726)] = 125889, - [SMALL_STATE(2727)] = 125913, - [SMALL_STATE(2728)] = 125947, - [SMALL_STATE(2729)] = 125971, - [SMALL_STATE(2730)] = 125995, - [SMALL_STATE(2731)] = 126041, - [SMALL_STATE(2732)] = 126087, - [SMALL_STATE(2733)] = 126133, - [SMALL_STATE(2734)] = 126179, - [SMALL_STATE(2735)] = 126225, - [SMALL_STATE(2736)] = 126271, - [SMALL_STATE(2737)] = 126305, - [SMALL_STATE(2738)] = 126351, - [SMALL_STATE(2739)] = 126397, - [SMALL_STATE(2740)] = 126443, - [SMALL_STATE(2741)] = 126467, - [SMALL_STATE(2742)] = 126513, - [SMALL_STATE(2743)] = 126559, - [SMALL_STATE(2744)] = 126605, - [SMALL_STATE(2745)] = 126632, - [SMALL_STATE(2746)] = 126657, - [SMALL_STATE(2747)] = 126680, - [SMALL_STATE(2748)] = 126708, - [SMALL_STATE(2749)] = 126730, - [SMALL_STATE(2750)] = 126766, - [SMALL_STATE(2751)] = 126802, - [SMALL_STATE(2752)] = 126838, - [SMALL_STATE(2753)] = 126866, - [SMALL_STATE(2754)] = 126904, - [SMALL_STATE(2755)] = 126936, - [SMALL_STATE(2756)] = 126974, - [SMALL_STATE(2757)] = 127006, - [SMALL_STATE(2758)] = 127032, - [SMALL_STATE(2759)] = 127068, - [SMALL_STATE(2760)] = 127104, - [SMALL_STATE(2761)] = 127142, - [SMALL_STATE(2762)] = 127164, - [SMALL_STATE(2763)] = 127196, - [SMALL_STATE(2764)] = 127222, - [SMALL_STATE(2765)] = 127258, - [SMALL_STATE(2766)] = 127294, - [SMALL_STATE(2767)] = 127332, - [SMALL_STATE(2768)] = 127354, - [SMALL_STATE(2769)] = 127386, - [SMALL_STATE(2770)] = 127408, - [SMALL_STATE(2771)] = 127434, - [SMALL_STATE(2772)] = 127466, - [SMALL_STATE(2773)] = 127504, - [SMALL_STATE(2774)] = 127536, - [SMALL_STATE(2775)] = 127562, - [SMALL_STATE(2776)] = 127588, - [SMALL_STATE(2777)] = 127616, - [SMALL_STATE(2778)] = 127648, - [SMALL_STATE(2779)] = 127686, - [SMALL_STATE(2780)] = 127722, - [SMALL_STATE(2781)] = 127760, - [SMALL_STATE(2782)] = 127792, - [SMALL_STATE(2783)] = 127818, - [SMALL_STATE(2784)] = 127840, - [SMALL_STATE(2785)] = 127868, - [SMALL_STATE(2786)] = 127906, - [SMALL_STATE(2787)] = 127942, - [SMALL_STATE(2788)] = 127980, - [SMALL_STATE(2789)] = 128006, - [SMALL_STATE(2790)] = 128042, - [SMALL_STATE(2791)] = 128078, - [SMALL_STATE(2792)] = 128110, - [SMALL_STATE(2793)] = 128142, - [SMALL_STATE(2794)] = 128170, - [SMALL_STATE(2795)] = 128198, - [SMALL_STATE(2796)] = 128234, - [SMALL_STATE(2797)] = 128260, - [SMALL_STATE(2798)] = 128296, - [SMALL_STATE(2799)] = 128334, - [SMALL_STATE(2800)] = 128366, - [SMALL_STATE(2801)] = 128392, - [SMALL_STATE(2802)] = 128418, - [SMALL_STATE(2803)] = 128454, - [SMALL_STATE(2804)] = 128490, - [SMALL_STATE(2805)] = 128528, - [SMALL_STATE(2806)] = 128550, - [SMALL_STATE(2807)] = 128576, - [SMALL_STATE(2808)] = 128598, - [SMALL_STATE(2809)] = 128624, - [SMALL_STATE(2810)] = 128656, - [SMALL_STATE(2811)] = 128694, - [SMALL_STATE(2812)] = 128726, - [SMALL_STATE(2813)] = 128752, - [SMALL_STATE(2814)] = 128788, - [SMALL_STATE(2815)] = 128826, - [SMALL_STATE(2816)] = 128858, - [SMALL_STATE(2817)] = 128884, - [SMALL_STATE(2818)] = 128922, - [SMALL_STATE(2819)] = 128954, - [SMALL_STATE(2820)] = 128980, - [SMALL_STATE(2821)] = 129006, - [SMALL_STATE(2822)] = 129028, - [SMALL_STATE(2823)] = 129066, - [SMALL_STATE(2824)] = 129098, - [SMALL_STATE(2825)] = 129136, - [SMALL_STATE(2826)] = 129162, - [SMALL_STATE(2827)] = 129200, - [SMALL_STATE(2828)] = 129238, - [SMALL_STATE(2829)] = 129264, - [SMALL_STATE(2830)] = 129283, - [SMALL_STATE(2831)] = 129304, - [SMALL_STATE(2832)] = 129325, - [SMALL_STATE(2833)] = 129346, - [SMALL_STATE(2834)] = 129365, - [SMALL_STATE(2835)] = 129386, - [SMALL_STATE(2836)] = 129414, - [SMALL_STATE(2837)] = 129446, - [SMALL_STATE(2838)] = 129480, - [SMALL_STATE(2839)] = 129512, - [SMALL_STATE(2840)] = 129544, - [SMALL_STATE(2841)] = 129572, - [SMALL_STATE(2842)] = 129594, - [SMALL_STATE(2843)] = 129626, - [SMALL_STATE(2844)] = 129658, - [SMALL_STATE(2845)] = 129680, - [SMALL_STATE(2846)] = 129702, - [SMALL_STATE(2847)] = 129724, - [SMALL_STATE(2848)] = 129756, - [SMALL_STATE(2849)] = 129788, - [SMALL_STATE(2850)] = 129820, - [SMALL_STATE(2851)] = 129854, - [SMALL_STATE(2852)] = 129886, - [SMALL_STATE(2853)] = 129918, - [SMALL_STATE(2854)] = 129950, - [SMALL_STATE(2855)] = 129982, - [SMALL_STATE(2856)] = 130010, - [SMALL_STATE(2857)] = 130038, - [SMALL_STATE(2858)] = 130066, - [SMALL_STATE(2859)] = 130094, - [SMALL_STATE(2860)] = 130126, - [SMALL_STATE(2861)] = 130154, - [SMALL_STATE(2862)] = 130182, - [SMALL_STATE(2863)] = 130210, - [SMALL_STATE(2864)] = 130238, - [SMALL_STATE(2865)] = 130266, - [SMALL_STATE(2866)] = 130294, - [SMALL_STATE(2867)] = 130326, - [SMALL_STATE(2868)] = 130358, - [SMALL_STATE(2869)] = 130386, - [SMALL_STATE(2870)] = 130414, - [SMALL_STATE(2871)] = 130442, - [SMALL_STATE(2872)] = 130470, - [SMALL_STATE(2873)] = 130498, - [SMALL_STATE(2874)] = 130526, - [SMALL_STATE(2875)] = 130558, - [SMALL_STATE(2876)] = 130590, - [SMALL_STATE(2877)] = 130618, - [SMALL_STATE(2878)] = 130646, - [SMALL_STATE(2879)] = 130674, - [SMALL_STATE(2880)] = 130706, - [SMALL_STATE(2881)] = 130734, - [SMALL_STATE(2882)] = 130764, - [SMALL_STATE(2883)] = 130792, - [SMALL_STATE(2884)] = 130824, - [SMALL_STATE(2885)] = 130856, - [SMALL_STATE(2886)] = 130884, - [SMALL_STATE(2887)] = 130912, - [SMALL_STATE(2888)] = 130940, - [SMALL_STATE(2889)] = 130972, - [SMALL_STATE(2890)] = 131004, - [SMALL_STATE(2891)] = 131036, - [SMALL_STATE(2892)] = 131068, - [SMALL_STATE(2893)] = 131098, - [SMALL_STATE(2894)] = 131130, - [SMALL_STATE(2895)] = 131158, - [SMALL_STATE(2896)] = 131190, - [SMALL_STATE(2897)] = 131209, - [SMALL_STATE(2898)] = 131236, + [SMALL_STATE(1139)] = 0, + [SMALL_STATE(1140)] = 79, + [SMALL_STATE(1141)] = 158, + [SMALL_STATE(1142)] = 237, + [SMALL_STATE(1143)] = 316, + [SMALL_STATE(1144)] = 395, + [SMALL_STATE(1145)] = 474, + [SMALL_STATE(1146)] = 553, + [SMALL_STATE(1147)] = 632, + [SMALL_STATE(1148)] = 709, + [SMALL_STATE(1149)] = 788, + [SMALL_STATE(1150)] = 867, + [SMALL_STATE(1151)] = 996, + [SMALL_STATE(1152)] = 1069, + [SMALL_STATE(1153)] = 1148, + [SMALL_STATE(1154)] = 1227, + [SMALL_STATE(1155)] = 1306, + [SMALL_STATE(1156)] = 1385, + [SMALL_STATE(1157)] = 1460, + [SMALL_STATE(1158)] = 1535, + [SMALL_STATE(1159)] = 1614, + [SMALL_STATE(1160)] = 1697, + [SMALL_STATE(1161)] = 1776, + [SMALL_STATE(1162)] = 1848, + [SMALL_STATE(1163)] = 1922, + [SMALL_STATE(1164)] = 1996, + [SMALL_STATE(1165)] = 2068, + [SMALL_STATE(1166)] = 2140, + [SMALL_STATE(1167)] = 2220, + [SMALL_STATE(1168)] = 2292, + [SMALL_STATE(1169)] = 2364, + [SMALL_STATE(1170)] = 2436, + [SMALL_STATE(1171)] = 2516, + [SMALL_STATE(1172)] = 2588, + [SMALL_STATE(1173)] = 2660, + [SMALL_STATE(1174)] = 2733, + [SMALL_STATE(1175)] = 2860, + [SMALL_STATE(1176)] = 2931, + [SMALL_STATE(1177)] = 3002, + [SMALL_STATE(1178)] = 3075, + [SMALL_STATE(1179)] = 3148, + [SMALL_STATE(1180)] = 3221, + [SMALL_STATE(1181)] = 3292, + [SMALL_STATE(1182)] = 3365, + [SMALL_STATE(1183)] = 3438, + [SMALL_STATE(1184)] = 3511, + [SMALL_STATE(1185)] = 3584, + [SMALL_STATE(1186)] = 3655, + [SMALL_STATE(1187)] = 3728, + [SMALL_STATE(1188)] = 3855, + [SMALL_STATE(1189)] = 3982, + [SMALL_STATE(1190)] = 4109, + [SMALL_STATE(1191)] = 4236, + [SMALL_STATE(1192)] = 4363, + [SMALL_STATE(1193)] = 4490, + [SMALL_STATE(1194)] = 4617, + [SMALL_STATE(1195)] = 4744, + [SMALL_STATE(1196)] = 4871, + [SMALL_STATE(1197)] = 4998, + [SMALL_STATE(1198)] = 5125, + [SMALL_STATE(1199)] = 5196, + [SMALL_STATE(1200)] = 5323, + [SMALL_STATE(1201)] = 5450, + [SMALL_STATE(1202)] = 5577, + [SMALL_STATE(1203)] = 5650, + [SMALL_STATE(1204)] = 5777, + [SMALL_STATE(1205)] = 5904, + [SMALL_STATE(1206)] = 5977, + [SMALL_STATE(1207)] = 6104, + [SMALL_STATE(1208)] = 6231, + [SMALL_STATE(1209)] = 6304, + [SMALL_STATE(1210)] = 6377, + [SMALL_STATE(1211)] = 6452, + [SMALL_STATE(1212)] = 6525, + [SMALL_STATE(1213)] = 6652, + [SMALL_STATE(1214)] = 6725, + [SMALL_STATE(1215)] = 6798, + [SMALL_STATE(1216)] = 6925, + [SMALL_STATE(1217)] = 7052, + [SMALL_STATE(1218)] = 7179, + [SMALL_STATE(1219)] = 7306, + [SMALL_STATE(1220)] = 7433, + [SMALL_STATE(1221)] = 7504, + [SMALL_STATE(1222)] = 7577, + [SMALL_STATE(1223)] = 7650, + [SMALL_STATE(1224)] = 7720, + [SMALL_STATE(1225)] = 7846, + [SMALL_STATE(1226)] = 7916, + [SMALL_STATE(1227)] = 7994, + [SMALL_STATE(1228)] = 8064, + [SMALL_STATE(1229)] = 8150, + [SMALL_STATE(1230)] = 8220, + [SMALL_STATE(1231)] = 8296, + [SMALL_STATE(1232)] = 8366, + [SMALL_STATE(1233)] = 8438, + [SMALL_STATE(1234)] = 8508, + [SMALL_STATE(1235)] = 8588, + [SMALL_STATE(1236)] = 8658, + [SMALL_STATE(1237)] = 8746, + [SMALL_STATE(1238)] = 8816, + [SMALL_STATE(1239)] = 8906, + [SMALL_STATE(1240)] = 8976, + [SMALL_STATE(1241)] = 9068, + [SMALL_STATE(1242)] = 9138, + [SMALL_STATE(1243)] = 9232, + [SMALL_STATE(1244)] = 9302, + [SMALL_STATE(1245)] = 9398, + [SMALL_STATE(1246)] = 9468, + [SMALL_STATE(1247)] = 9566, + [SMALL_STATE(1248)] = 9636, + [SMALL_STATE(1249)] = 9736, + [SMALL_STATE(1250)] = 9806, + [SMALL_STATE(1251)] = 9876, + [SMALL_STATE(1252)] = 9946, + [SMALL_STATE(1253)] = 10016, + [SMALL_STATE(1254)] = 10086, + [SMALL_STATE(1255)] = 10162, + [SMALL_STATE(1256)] = 10232, + [SMALL_STATE(1257)] = 10302, + [SMALL_STATE(1258)] = 10372, + [SMALL_STATE(1259)] = 10442, + [SMALL_STATE(1260)] = 10516, + [SMALL_STATE(1261)] = 10586, + [SMALL_STATE(1262)] = 10656, + [SMALL_STATE(1263)] = 10726, + [SMALL_STATE(1264)] = 10796, + [SMALL_STATE(1265)] = 10866, + [SMALL_STATE(1266)] = 10936, + [SMALL_STATE(1267)] = 11006, + [SMALL_STATE(1268)] = 11132, + [SMALL_STATE(1269)] = 11220, + [SMALL_STATE(1270)] = 11346, + [SMALL_STATE(1271)] = 11480, + [SMALL_STATE(1272)] = 11564, + [SMALL_STATE(1273)] = 11690, + [SMALL_STATE(1274)] = 11816, + [SMALL_STATE(1275)] = 11886, + [SMALL_STATE(1276)] = 12012, + [SMALL_STATE(1277)] = 12138, + [SMALL_STATE(1278)] = 12264, + [SMALL_STATE(1279)] = 12366, + [SMALL_STATE(1280)] = 12492, + [SMALL_STATE(1281)] = 12618, + [SMALL_STATE(1282)] = 12688, + [SMALL_STATE(1283)] = 12814, + [SMALL_STATE(1284)] = 12884, + [SMALL_STATE(1285)] = 13010, + [SMALL_STATE(1286)] = 13136, + [SMALL_STATE(1287)] = 13262, + [SMALL_STATE(1288)] = 13388, + [SMALL_STATE(1289)] = 13514, + [SMALL_STATE(1290)] = 13584, + [SMALL_STATE(1291)] = 13710, + [SMALL_STATE(1292)] = 13836, + [SMALL_STATE(1293)] = 13970, + [SMALL_STATE(1294)] = 14096, + [SMALL_STATE(1295)] = 14174, + [SMALL_STATE(1296)] = 14308, + [SMALL_STATE(1297)] = 14378, + [SMALL_STATE(1298)] = 14448, + [SMALL_STATE(1299)] = 14518, + [SMALL_STATE(1300)] = 14588, + [SMALL_STATE(1301)] = 14658, + [SMALL_STATE(1302)] = 14728, + [SMALL_STATE(1303)] = 14854, + [SMALL_STATE(1304)] = 14980, + [SMALL_STATE(1305)] = 15106, + [SMALL_STATE(1306)] = 15176, + [SMALL_STATE(1307)] = 15246, + [SMALL_STATE(1308)] = 15316, + [SMALL_STATE(1309)] = 15418, + [SMALL_STATE(1310)] = 15488, + [SMALL_STATE(1311)] = 15588, + [SMALL_STATE(1312)] = 15658, + [SMALL_STATE(1313)] = 15728, + [SMALL_STATE(1314)] = 15798, + [SMALL_STATE(1315)] = 15868, + [SMALL_STATE(1316)] = 15938, + [SMALL_STATE(1317)] = 16022, + [SMALL_STATE(1318)] = 16092, + [SMALL_STATE(1319)] = 16218, + [SMALL_STATE(1320)] = 16344, + [SMALL_STATE(1321)] = 16414, + [SMALL_STATE(1322)] = 16484, + [SMALL_STATE(1323)] = 16558, + [SMALL_STATE(1324)] = 16628, + [SMALL_STATE(1325)] = 16698, + [SMALL_STATE(1326)] = 16768, + [SMALL_STATE(1327)] = 16838, + [SMALL_STATE(1328)] = 16908, + [SMALL_STATE(1329)] = 16978, + [SMALL_STATE(1330)] = 17048, + [SMALL_STATE(1331)] = 17118, + [SMALL_STATE(1332)] = 17188, + [SMALL_STATE(1333)] = 17258, + [SMALL_STATE(1334)] = 17384, + [SMALL_STATE(1335)] = 17518, + [SMALL_STATE(1336)] = 17616, + [SMALL_STATE(1337)] = 17686, + [SMALL_STATE(1338)] = 17782, + [SMALL_STATE(1339)] = 17852, + [SMALL_STATE(1340)] = 17922, + [SMALL_STATE(1341)] = 17992, + [SMALL_STATE(1342)] = 18062, + [SMALL_STATE(1343)] = 18132, + [SMALL_STATE(1344)] = 18202, + [SMALL_STATE(1345)] = 18296, + [SMALL_STATE(1346)] = 18366, + [SMALL_STATE(1347)] = 18436, + [SMALL_STATE(1348)] = 18528, + [SMALL_STATE(1349)] = 18600, + [SMALL_STATE(1350)] = 18690, + [SMALL_STATE(1351)] = 18760, + [SMALL_STATE(1352)] = 18830, + [SMALL_STATE(1353)] = 18932, + [SMALL_STATE(1354)] = 19002, + [SMALL_STATE(1355)] = 19082, + [SMALL_STATE(1356)] = 19152, + [SMALL_STATE(1357)] = 19222, + [SMALL_STATE(1358)] = 19292, + [SMALL_STATE(1359)] = 19362, + [SMALL_STATE(1360)] = 19432, + [SMALL_STATE(1361)] = 19502, + [SMALL_STATE(1362)] = 19631, + [SMALL_STATE(1363)] = 19753, + [SMALL_STATE(1364)] = 19875, + [SMALL_STATE(1365)] = 19997, + [SMALL_STATE(1366)] = 20119, + [SMALL_STATE(1367)] = 20241, + [SMALL_STATE(1368)] = 20363, + [SMALL_STATE(1369)] = 20485, + [SMALL_STATE(1370)] = 20607, + [SMALL_STATE(1371)] = 20728, + [SMALL_STATE(1372)] = 20851, + [SMALL_STATE(1373)] = 20972, + [SMALL_STATE(1374)] = 21095, + [SMALL_STATE(1375)] = 21218, + [SMALL_STATE(1376)] = 21341, + [SMALL_STATE(1377)] = 21462, + [SMALL_STATE(1378)] = 21583, + [SMALL_STATE(1379)] = 21704, + [SMALL_STATE(1380)] = 21823, + [SMALL_STATE(1381)] = 21946, + [SMALL_STATE(1382)] = 22069, + [SMALL_STATE(1383)] = 22190, + [SMALL_STATE(1384)] = 22313, + [SMALL_STATE(1385)] = 22434, + [SMALL_STATE(1386)] = 22555, + [SMALL_STATE(1387)] = 22676, + [SMALL_STATE(1388)] = 22797, + [SMALL_STATE(1389)] = 22920, + [SMALL_STATE(1390)] = 23043, + [SMALL_STATE(1391)] = 23166, + [SMALL_STATE(1392)] = 23287, + [SMALL_STATE(1393)] = 23408, + [SMALL_STATE(1394)] = 23531, + [SMALL_STATE(1395)] = 23652, + [SMALL_STATE(1396)] = 23775, + [SMALL_STATE(1397)] = 23898, + [SMALL_STATE(1398)] = 24021, + [SMALL_STATE(1399)] = 24142, + [SMALL_STATE(1400)] = 24265, + [SMALL_STATE(1401)] = 24386, + [SMALL_STATE(1402)] = 24509, + [SMALL_STATE(1403)] = 24632, + [SMALL_STATE(1404)] = 24755, + [SMALL_STATE(1405)] = 24876, + [SMALL_STATE(1406)] = 24997, + [SMALL_STATE(1407)] = 25118, + [SMALL_STATE(1408)] = 25239, + [SMALL_STATE(1409)] = 25362, + [SMALL_STATE(1410)] = 25483, + [SMALL_STATE(1411)] = 25597, + [SMALL_STATE(1412)] = 25711, + [SMALL_STATE(1413)] = 25825, + [SMALL_STATE(1414)] = 25945, + [SMALL_STATE(1415)] = 26059, + [SMALL_STATE(1416)] = 26179, + [SMALL_STATE(1417)] = 26293, + [SMALL_STATE(1418)] = 26407, + [SMALL_STATE(1419)] = 26521, + [SMALL_STATE(1420)] = 26635, + [SMALL_STATE(1421)] = 26749, + [SMALL_STATE(1422)] = 26869, + [SMALL_STATE(1423)] = 26983, + [SMALL_STATE(1424)] = 27097, + [SMALL_STATE(1425)] = 27211, + [SMALL_STATE(1426)] = 27325, + [SMALL_STATE(1427)] = 27439, + [SMALL_STATE(1428)] = 27559, + [SMALL_STATE(1429)] = 27673, + [SMALL_STATE(1430)] = 27793, + [SMALL_STATE(1431)] = 27907, + [SMALL_STATE(1432)] = 28027, + [SMALL_STATE(1433)] = 28147, + [SMALL_STATE(1434)] = 28267, + [SMALL_STATE(1435)] = 28387, + [SMALL_STATE(1436)] = 28507, + [SMALL_STATE(1437)] = 28627, + [SMALL_STATE(1438)] = 28747, + [SMALL_STATE(1439)] = 28867, + [SMALL_STATE(1440)] = 28987, + [SMALL_STATE(1441)] = 29107, + [SMALL_STATE(1442)] = 29227, + [SMALL_STATE(1443)] = 29347, + [SMALL_STATE(1444)] = 29467, + [SMALL_STATE(1445)] = 29587, + [SMALL_STATE(1446)] = 29701, + [SMALL_STATE(1447)] = 29815, + [SMALL_STATE(1448)] = 29929, + [SMALL_STATE(1449)] = 30043, + [SMALL_STATE(1450)] = 30157, + [SMALL_STATE(1451)] = 30277, + [SMALL_STATE(1452)] = 30391, + [SMALL_STATE(1453)] = 30511, + [SMALL_STATE(1454)] = 30631, + [SMALL_STATE(1455)] = 30751, + [SMALL_STATE(1456)] = 30871, + [SMALL_STATE(1457)] = 30991, + [SMALL_STATE(1458)] = 31105, + [SMALL_STATE(1459)] = 31225, + [SMALL_STATE(1460)] = 31339, + [SMALL_STATE(1461)] = 31453, + [SMALL_STATE(1462)] = 31567, + [SMALL_STATE(1463)] = 31687, + [SMALL_STATE(1464)] = 31801, + [SMALL_STATE(1465)] = 31915, + [SMALL_STATE(1466)] = 32029, + [SMALL_STATE(1467)] = 32149, + [SMALL_STATE(1468)] = 32263, + [SMALL_STATE(1469)] = 32377, + [SMALL_STATE(1470)] = 32497, + [SMALL_STATE(1471)] = 32617, + [SMALL_STATE(1472)] = 32737, + [SMALL_STATE(1473)] = 32857, + [SMALL_STATE(1474)] = 32977, + [SMALL_STATE(1475)] = 33097, + [SMALL_STATE(1476)] = 33217, + [SMALL_STATE(1477)] = 33337, + [SMALL_STATE(1478)] = 33457, + [SMALL_STATE(1479)] = 33577, + [SMALL_STATE(1480)] = 33697, + [SMALL_STATE(1481)] = 33817, + [SMALL_STATE(1482)] = 33937, + [SMALL_STATE(1483)] = 34051, + [SMALL_STATE(1484)] = 34171, + [SMALL_STATE(1485)] = 34285, + [SMALL_STATE(1486)] = 34399, + [SMALL_STATE(1487)] = 34513, + [SMALL_STATE(1488)] = 34627, + [SMALL_STATE(1489)] = 34741, + [SMALL_STATE(1490)] = 34855, + [SMALL_STATE(1491)] = 34969, + [SMALL_STATE(1492)] = 35089, + [SMALL_STATE(1493)] = 35203, + [SMALL_STATE(1494)] = 35317, + [SMALL_STATE(1495)] = 35431, + [SMALL_STATE(1496)] = 35545, + [SMALL_STATE(1497)] = 35659, + [SMALL_STATE(1498)] = 35779, + [SMALL_STATE(1499)] = 35893, + [SMALL_STATE(1500)] = 36007, + [SMALL_STATE(1501)] = 36121, + [SMALL_STATE(1502)] = 36235, + [SMALL_STATE(1503)] = 36349, + [SMALL_STATE(1504)] = 36463, + [SMALL_STATE(1505)] = 36577, + [SMALL_STATE(1506)] = 36691, + [SMALL_STATE(1507)] = 36805, + [SMALL_STATE(1508)] = 36919, + [SMALL_STATE(1509)] = 37033, + [SMALL_STATE(1510)] = 37147, + [SMALL_STATE(1511)] = 37261, + [SMALL_STATE(1512)] = 37375, + [SMALL_STATE(1513)] = 37489, + [SMALL_STATE(1514)] = 37609, + [SMALL_STATE(1515)] = 37723, + [SMALL_STATE(1516)] = 37837, + [SMALL_STATE(1517)] = 37951, + [SMALL_STATE(1518)] = 38065, + [SMALL_STATE(1519)] = 38179, + [SMALL_STATE(1520)] = 38293, + [SMALL_STATE(1521)] = 38407, + [SMALL_STATE(1522)] = 38521, + [SMALL_STATE(1523)] = 38635, + [SMALL_STATE(1524)] = 38755, + [SMALL_STATE(1525)] = 38869, + [SMALL_STATE(1526)] = 38989, + [SMALL_STATE(1527)] = 39103, + [SMALL_STATE(1528)] = 39223, + [SMALL_STATE(1529)] = 39337, + [SMALL_STATE(1530)] = 39451, + [SMALL_STATE(1531)] = 39565, + [SMALL_STATE(1532)] = 39685, + [SMALL_STATE(1533)] = 39799, + [SMALL_STATE(1534)] = 39919, + [SMALL_STATE(1535)] = 40033, + [SMALL_STATE(1536)] = 40153, + [SMALL_STATE(1537)] = 40267, + [SMALL_STATE(1538)] = 40387, + [SMALL_STATE(1539)] = 40507, + [SMALL_STATE(1540)] = 40627, + [SMALL_STATE(1541)] = 40741, + [SMALL_STATE(1542)] = 40855, + [SMALL_STATE(1543)] = 40975, + [SMALL_STATE(1544)] = 41089, + [SMALL_STATE(1545)] = 41209, + [SMALL_STATE(1546)] = 41329, + [SMALL_STATE(1547)] = 41449, + [SMALL_STATE(1548)] = 41569, + [SMALL_STATE(1549)] = 41683, + [SMALL_STATE(1550)] = 41803, + [SMALL_STATE(1551)] = 41923, + [SMALL_STATE(1552)] = 42037, + [SMALL_STATE(1553)] = 42157, + [SMALL_STATE(1554)] = 42277, + [SMALL_STATE(1555)] = 42397, + [SMALL_STATE(1556)] = 42511, + [SMALL_STATE(1557)] = 42625, + [SMALL_STATE(1558)] = 42745, + [SMALL_STATE(1559)] = 42859, + [SMALL_STATE(1560)] = 42979, + [SMALL_STATE(1561)] = 43093, + [SMALL_STATE(1562)] = 43207, + [SMALL_STATE(1563)] = 43321, + [SMALL_STATE(1564)] = 43435, + [SMALL_STATE(1565)] = 43549, + [SMALL_STATE(1566)] = 43663, + [SMALL_STATE(1567)] = 43777, + [SMALL_STATE(1568)] = 43891, + [SMALL_STATE(1569)] = 44011, + [SMALL_STATE(1570)] = 44131, + [SMALL_STATE(1571)] = 44251, + [SMALL_STATE(1572)] = 44365, + [SMALL_STATE(1573)] = 44485, + [SMALL_STATE(1574)] = 44599, + [SMALL_STATE(1575)] = 44713, + [SMALL_STATE(1576)] = 44833, + [SMALL_STATE(1577)] = 44953, + [SMALL_STATE(1578)] = 45073, + [SMALL_STATE(1579)] = 45187, + [SMALL_STATE(1580)] = 45307, + [SMALL_STATE(1581)] = 45427, + [SMALL_STATE(1582)] = 45541, + [SMALL_STATE(1583)] = 45655, + [SMALL_STATE(1584)] = 45775, + [SMALL_STATE(1585)] = 45889, + [SMALL_STATE(1586)] = 46009, + [SMALL_STATE(1587)] = 46123, + [SMALL_STATE(1588)] = 46237, + [SMALL_STATE(1589)] = 46351, + [SMALL_STATE(1590)] = 46471, + [SMALL_STATE(1591)] = 46591, + [SMALL_STATE(1592)] = 46705, + [SMALL_STATE(1593)] = 46825, + [SMALL_STATE(1594)] = 46945, + [SMALL_STATE(1595)] = 47065, + [SMALL_STATE(1596)] = 47185, + [SMALL_STATE(1597)] = 47305, + [SMALL_STATE(1598)] = 47425, + [SMALL_STATE(1599)] = 47545, + [SMALL_STATE(1600)] = 47665, + [SMALL_STATE(1601)] = 47785, + [SMALL_STATE(1602)] = 47905, + [SMALL_STATE(1603)] = 48025, + [SMALL_STATE(1604)] = 48145, + [SMALL_STATE(1605)] = 48259, + [SMALL_STATE(1606)] = 48379, + [SMALL_STATE(1607)] = 48493, + [SMALL_STATE(1608)] = 48613, + [SMALL_STATE(1609)] = 48733, + [SMALL_STATE(1610)] = 48853, + [SMALL_STATE(1611)] = 48973, + [SMALL_STATE(1612)] = 49087, + [SMALL_STATE(1613)] = 49207, + [SMALL_STATE(1614)] = 49327, + [SMALL_STATE(1615)] = 49441, + [SMALL_STATE(1616)] = 49561, + [SMALL_STATE(1617)] = 49675, + [SMALL_STATE(1618)] = 49789, + [SMALL_STATE(1619)] = 49903, + [SMALL_STATE(1620)] = 50017, + [SMALL_STATE(1621)] = 50137, + [SMALL_STATE(1622)] = 50251, + [SMALL_STATE(1623)] = 50371, + [SMALL_STATE(1624)] = 50485, + [SMALL_STATE(1625)] = 50605, + [SMALL_STATE(1626)] = 50719, + [SMALL_STATE(1627)] = 50839, + [SMALL_STATE(1628)] = 50959, + [SMALL_STATE(1629)] = 51073, + [SMALL_STATE(1630)] = 51187, + [SMALL_STATE(1631)] = 51307, + [SMALL_STATE(1632)] = 51427, + [SMALL_STATE(1633)] = 51547, + [SMALL_STATE(1634)] = 51661, + [SMALL_STATE(1635)] = 51775, + [SMALL_STATE(1636)] = 51889, + [SMALL_STATE(1637)] = 52003, + [SMALL_STATE(1638)] = 52117, + [SMALL_STATE(1639)] = 52231, + [SMALL_STATE(1640)] = 52345, + [SMALL_STATE(1641)] = 52459, + [SMALL_STATE(1642)] = 52573, + [SMALL_STATE(1643)] = 52687, + [SMALL_STATE(1644)] = 52801, + [SMALL_STATE(1645)] = 52915, + [SMALL_STATE(1646)] = 53029, + [SMALL_STATE(1647)] = 53143, + [SMALL_STATE(1648)] = 53257, + [SMALL_STATE(1649)] = 53371, + [SMALL_STATE(1650)] = 53491, + [SMALL_STATE(1651)] = 53611, + [SMALL_STATE(1652)] = 53725, + [SMALL_STATE(1653)] = 53845, + [SMALL_STATE(1654)] = 53965, + [SMALL_STATE(1655)] = 54085, + [SMALL_STATE(1656)] = 54205, + [SMALL_STATE(1657)] = 54325, + [SMALL_STATE(1658)] = 54439, + [SMALL_STATE(1659)] = 54559, + [SMALL_STATE(1660)] = 54673, + [SMALL_STATE(1661)] = 54787, + [SMALL_STATE(1662)] = 54907, + [SMALL_STATE(1663)] = 55021, + [SMALL_STATE(1664)] = 55141, + [SMALL_STATE(1665)] = 55261, + [SMALL_STATE(1666)] = 55375, + [SMALL_STATE(1667)] = 55495, + [SMALL_STATE(1668)] = 55615, + [SMALL_STATE(1669)] = 55735, + [SMALL_STATE(1670)] = 55855, + [SMALL_STATE(1671)] = 55975, + [SMALL_STATE(1672)] = 56089, + [SMALL_STATE(1673)] = 56209, + [SMALL_STATE(1674)] = 56323, + [SMALL_STATE(1675)] = 56437, + [SMALL_STATE(1676)] = 56551, + [SMALL_STATE(1677)] = 56671, + [SMALL_STATE(1678)] = 56791, + [SMALL_STATE(1679)] = 56911, + [SMALL_STATE(1680)] = 57025, + [SMALL_STATE(1681)] = 57139, + [SMALL_STATE(1682)] = 57253, + [SMALL_STATE(1683)] = 57373, + [SMALL_STATE(1684)] = 57493, + [SMALL_STATE(1685)] = 57613, + [SMALL_STATE(1686)] = 57733, + [SMALL_STATE(1687)] = 57847, + [SMALL_STATE(1688)] = 57961, + [SMALL_STATE(1689)] = 58075, + [SMALL_STATE(1690)] = 58195, + [SMALL_STATE(1691)] = 58315, + [SMALL_STATE(1692)] = 58429, + [SMALL_STATE(1693)] = 58543, + [SMALL_STATE(1694)] = 58657, + [SMALL_STATE(1695)] = 58777, + [SMALL_STATE(1696)] = 58891, + [SMALL_STATE(1697)] = 59005, + [SMALL_STATE(1698)] = 59119, + [SMALL_STATE(1699)] = 59233, + [SMALL_STATE(1700)] = 59353, + [SMALL_STATE(1701)] = 59467, + [SMALL_STATE(1702)] = 59587, + [SMALL_STATE(1703)] = 59701, + [SMALL_STATE(1704)] = 59815, + [SMALL_STATE(1705)] = 59929, + [SMALL_STATE(1706)] = 60043, + [SMALL_STATE(1707)] = 60157, + [SMALL_STATE(1708)] = 60271, + [SMALL_STATE(1709)] = 60385, + [SMALL_STATE(1710)] = 60499, + [SMALL_STATE(1711)] = 60613, + [SMALL_STATE(1712)] = 60727, + [SMALL_STATE(1713)] = 60847, + [SMALL_STATE(1714)] = 60967, + [SMALL_STATE(1715)] = 61087, + [SMALL_STATE(1716)] = 61201, + [SMALL_STATE(1717)] = 61315, + [SMALL_STATE(1718)] = 61435, + [SMALL_STATE(1719)] = 61555, + [SMALL_STATE(1720)] = 61675, + [SMALL_STATE(1721)] = 61795, + [SMALL_STATE(1722)] = 61915, + [SMALL_STATE(1723)] = 62029, + [SMALL_STATE(1724)] = 62143, + [SMALL_STATE(1725)] = 62263, + [SMALL_STATE(1726)] = 62383, + [SMALL_STATE(1727)] = 62503, + [SMALL_STATE(1728)] = 62623, + [SMALL_STATE(1729)] = 62743, + [SMALL_STATE(1730)] = 62857, + [SMALL_STATE(1731)] = 62971, + [SMALL_STATE(1732)] = 63085, + [SMALL_STATE(1733)] = 63199, + [SMALL_STATE(1734)] = 63319, + [SMALL_STATE(1735)] = 63439, + [SMALL_STATE(1736)] = 63553, + [SMALL_STATE(1737)] = 63667, + [SMALL_STATE(1738)] = 63781, + [SMALL_STATE(1739)] = 63895, + [SMALL_STATE(1740)] = 64009, + [SMALL_STATE(1741)] = 64123, + [SMALL_STATE(1742)] = 64237, + [SMALL_STATE(1743)] = 64351, + [SMALL_STATE(1744)] = 64465, + [SMALL_STATE(1745)] = 64579, + [SMALL_STATE(1746)] = 64695, + [SMALL_STATE(1747)] = 64809, + [SMALL_STATE(1748)] = 64923, + [SMALL_STATE(1749)] = 65037, + [SMALL_STATE(1750)] = 65151, + [SMALL_STATE(1751)] = 65265, + [SMALL_STATE(1752)] = 65379, + [SMALL_STATE(1753)] = 65493, + [SMALL_STATE(1754)] = 65607, + [SMALL_STATE(1755)] = 65721, + [SMALL_STATE(1756)] = 65835, + [SMALL_STATE(1757)] = 65955, + [SMALL_STATE(1758)] = 66069, + [SMALL_STATE(1759)] = 66185, + [SMALL_STATE(1760)] = 66299, + [SMALL_STATE(1761)] = 66413, + [SMALL_STATE(1762)] = 66527, + [SMALL_STATE(1763)] = 66641, + [SMALL_STATE(1764)] = 66755, + [SMALL_STATE(1765)] = 66869, + [SMALL_STATE(1766)] = 66983, + [SMALL_STATE(1767)] = 67097, + [SMALL_STATE(1768)] = 67211, + [SMALL_STATE(1769)] = 67325, + [SMALL_STATE(1770)] = 67439, + [SMALL_STATE(1771)] = 67559, + [SMALL_STATE(1772)] = 67673, + [SMALL_STATE(1773)] = 67787, + [SMALL_STATE(1774)] = 67907, + [SMALL_STATE(1775)] = 68027, + [SMALL_STATE(1776)] = 68147, + [SMALL_STATE(1777)] = 68262, + [SMALL_STATE(1778)] = 68377, + [SMALL_STATE(1779)] = 68492, + [SMALL_STATE(1780)] = 68607, + [SMALL_STATE(1781)] = 68722, + [SMALL_STATE(1782)] = 68832, + [SMALL_STATE(1783)] = 68942, + [SMALL_STATE(1784)] = 69052, + [SMALL_STATE(1785)] = 69162, + [SMALL_STATE(1786)] = 69272, + [SMALL_STATE(1787)] = 69382, + [SMALL_STATE(1788)] = 69492, + [SMALL_STATE(1789)] = 69602, + [SMALL_STATE(1790)] = 69712, + [SMALL_STATE(1791)] = 69822, + [SMALL_STATE(1792)] = 69932, + [SMALL_STATE(1793)] = 70042, + [SMALL_STATE(1794)] = 70152, + [SMALL_STATE(1795)] = 70262, + [SMALL_STATE(1796)] = 70372, + [SMALL_STATE(1797)] = 70482, + [SMALL_STATE(1798)] = 70592, + [SMALL_STATE(1799)] = 70659, + [SMALL_STATE(1800)] = 70722, + [SMALL_STATE(1801)] = 70785, + [SMALL_STATE(1802)] = 70846, + [SMALL_STATE(1803)] = 70909, + [SMALL_STATE(1804)] = 70972, + [SMALL_STATE(1805)] = 71035, + [SMALL_STATE(1806)] = 71098, + [SMALL_STATE(1807)] = 71161, + [SMALL_STATE(1808)] = 71224, + [SMALL_STATE(1809)] = 71287, + [SMALL_STATE(1810)] = 71350, + [SMALL_STATE(1811)] = 71413, + [SMALL_STATE(1812)] = 71475, + [SMALL_STATE(1813)] = 71537, + [SMALL_STATE(1814)] = 71595, + [SMALL_STATE(1815)] = 71653, + [SMALL_STATE(1816)] = 71715, + [SMALL_STATE(1817)] = 71777, + [SMALL_STATE(1818)] = 71839, + [SMALL_STATE(1819)] = 71901, + [SMALL_STATE(1820)] = 71965, + [SMALL_STATE(1821)] = 72025, + [SMALL_STATE(1822)] = 72087, + [SMALL_STATE(1823)] = 72149, + [SMALL_STATE(1824)] = 72211, + [SMALL_STATE(1825)] = 72273, + [SMALL_STATE(1826)] = 72337, + [SMALL_STATE(1827)] = 72393, + [SMALL_STATE(1828)] = 72455, + [SMALL_STATE(1829)] = 72517, + [SMALL_STATE(1830)] = 72573, + [SMALL_STATE(1831)] = 72628, + [SMALL_STATE(1832)] = 72689, + [SMALL_STATE(1833)] = 72746, + [SMALL_STATE(1834)] = 72803, + [SMALL_STATE(1835)] = 72858, + [SMALL_STATE(1836)] = 72915, + [SMALL_STATE(1837)] = 72970, + [SMALL_STATE(1838)] = 73025, + [SMALL_STATE(1839)] = 73080, + [SMALL_STATE(1840)] = 73141, + [SMALL_STATE(1841)] = 73195, + [SMALL_STATE(1842)] = 73249, + [SMALL_STATE(1843)] = 73303, + [SMALL_STATE(1844)] = 73357, + [SMALL_STATE(1845)] = 73411, + [SMALL_STATE(1846)] = 73465, + [SMALL_STATE(1847)] = 73521, + [SMALL_STATE(1848)] = 73575, + [SMALL_STATE(1849)] = 73629, + [SMALL_STATE(1850)] = 73683, + [SMALL_STATE(1851)] = 73737, + [SMALL_STATE(1852)] = 73791, + [SMALL_STATE(1853)] = 73845, + [SMALL_STATE(1854)] = 73899, + [SMALL_STATE(1855)] = 73953, + [SMALL_STATE(1856)] = 74007, + [SMALL_STATE(1857)] = 74061, + [SMALL_STATE(1858)] = 74115, + [SMALL_STATE(1859)] = 74169, + [SMALL_STATE(1860)] = 74223, + [SMALL_STATE(1861)] = 74277, + [SMALL_STATE(1862)] = 74331, + [SMALL_STATE(1863)] = 74385, + [SMALL_STATE(1864)] = 74445, + [SMALL_STATE(1865)] = 74499, + [SMALL_STATE(1866)] = 74553, + [SMALL_STATE(1867)] = 74607, + [SMALL_STATE(1868)] = 74661, + [SMALL_STATE(1869)] = 74715, + [SMALL_STATE(1870)] = 74769, + [SMALL_STATE(1871)] = 74823, + [SMALL_STATE(1872)] = 74879, + [SMALL_STATE(1873)] = 74939, + [SMALL_STATE(1874)] = 74993, + [SMALL_STATE(1875)] = 75047, + [SMALL_STATE(1876)] = 75101, + [SMALL_STATE(1877)] = 75161, + [SMALL_STATE(1878)] = 75215, + [SMALL_STATE(1879)] = 75269, + [SMALL_STATE(1880)] = 75323, + [SMALL_STATE(1881)] = 75377, + [SMALL_STATE(1882)] = 75435, + [SMALL_STATE(1883)] = 75489, + [SMALL_STATE(1884)] = 75543, + [SMALL_STATE(1885)] = 75603, + [SMALL_STATE(1886)] = 75657, + [SMALL_STATE(1887)] = 75710, + [SMALL_STATE(1888)] = 75763, + [SMALL_STATE(1889)] = 75816, + [SMALL_STATE(1890)] = 75869, + [SMALL_STATE(1891)] = 75922, + [SMALL_STATE(1892)] = 75975, + [SMALL_STATE(1893)] = 76034, + [SMALL_STATE(1894)] = 76087, + [SMALL_STATE(1895)] = 76140, + [SMALL_STATE(1896)] = 76193, + [SMALL_STATE(1897)] = 76250, + [SMALL_STATE(1898)] = 76303, + [SMALL_STATE(1899)] = 76356, + [SMALL_STATE(1900)] = 76413, + [SMALL_STATE(1901)] = 76466, + [SMALL_STATE(1902)] = 76523, + [SMALL_STATE(1903)] = 76576, + [SMALL_STATE(1904)] = 76629, + [SMALL_STATE(1905)] = 76682, + [SMALL_STATE(1906)] = 76735, + [SMALL_STATE(1907)] = 76788, + [SMALL_STATE(1908)] = 76841, + [SMALL_STATE(1909)] = 76894, + [SMALL_STATE(1910)] = 76947, + [SMALL_STATE(1911)] = 77002, + [SMALL_STATE(1912)] = 77055, + [SMALL_STATE(1913)] = 77110, + [SMALL_STATE(1914)] = 77163, + [SMALL_STATE(1915)] = 77216, + [SMALL_STATE(1916)] = 77277, + [SMALL_STATE(1917)] = 77330, + [SMALL_STATE(1918)] = 77383, + [SMALL_STATE(1919)] = 77436, + [SMALL_STATE(1920)] = 77489, + [SMALL_STATE(1921)] = 77542, + [SMALL_STATE(1922)] = 77599, + [SMALL_STATE(1923)] = 77652, + [SMALL_STATE(1924)] = 77709, + [SMALL_STATE(1925)] = 77764, + [SMALL_STATE(1926)] = 77817, + [SMALL_STATE(1927)] = 77870, + [SMALL_STATE(1928)] = 77923, + [SMALL_STATE(1929)] = 77982, + [SMALL_STATE(1930)] = 78035, + [SMALL_STATE(1931)] = 78088, + [SMALL_STATE(1932)] = 78141, + [SMALL_STATE(1933)] = 78200, + [SMALL_STATE(1934)] = 78253, + [SMALL_STATE(1935)] = 78306, + [SMALL_STATE(1936)] = 78363, + [SMALL_STATE(1937)] = 78416, + [SMALL_STATE(1938)] = 78469, + [SMALL_STATE(1939)] = 78522, + [SMALL_STATE(1940)] = 78577, + [SMALL_STATE(1941)] = 78633, + [SMALL_STATE(1942)] = 78691, + [SMALL_STATE(1943)] = 78743, + [SMALL_STATE(1944)] = 78801, + [SMALL_STATE(1945)] = 78865, + [SMALL_STATE(1946)] = 78923, + [SMALL_STATE(1947)] = 78981, + [SMALL_STATE(1948)] = 79033, + [SMALL_STATE(1949)] = 79085, + [SMALL_STATE(1950)] = 79149, + [SMALL_STATE(1951)] = 79207, + [SMALL_STATE(1952)] = 79271, + [SMALL_STATE(1953)] = 79323, + [SMALL_STATE(1954)] = 79385, + [SMALL_STATE(1955)] = 79439, + [SMALL_STATE(1956)] = 79493, + [SMALL_STATE(1957)] = 79551, + [SMALL_STATE(1958)] = 79603, + [SMALL_STATE(1959)] = 79655, + [SMALL_STATE(1960)] = 79707, + [SMALL_STATE(1961)] = 79759, + [SMALL_STATE(1962)] = 79815, + [SMALL_STATE(1963)] = 79866, + [SMALL_STATE(1964)] = 79921, + [SMALL_STATE(1965)] = 79976, + [SMALL_STATE(1966)] = 80027, + [SMALL_STATE(1967)] = 80076, + [SMALL_STATE(1968)] = 80133, + [SMALL_STATE(1969)] = 80190, + [SMALL_STATE(1970)] = 80247, + [SMALL_STATE(1971)] = 80300, + [SMALL_STATE(1972)] = 80357, + [SMALL_STATE(1973)] = 80414, + [SMALL_STATE(1974)] = 80471, + [SMALL_STATE(1975)] = 80522, + [SMALL_STATE(1976)] = 80575, + [SMALL_STATE(1977)] = 80632, + [SMALL_STATE(1978)] = 80683, + [SMALL_STATE(1979)] = 80732, + [SMALL_STATE(1980)] = 80783, + [SMALL_STATE(1981)] = 80834, + [SMALL_STATE(1982)] = 80887, + [SMALL_STATE(1983)] = 80944, + [SMALL_STATE(1984)] = 80995, + [SMALL_STATE(1985)] = 81044, + [SMALL_STATE(1986)] = 81101, + [SMALL_STATE(1987)] = 81154, + [SMALL_STATE(1988)] = 81207, + [SMALL_STATE(1989)] = 81262, + [SMALL_STATE(1990)] = 81311, + [SMALL_STATE(1991)] = 81366, + [SMALL_STATE(1992)] = 81419, + [SMALL_STATE(1993)] = 81476, + [SMALL_STATE(1994)] = 81525, + [SMALL_STATE(1995)] = 81576, + [SMALL_STATE(1996)] = 81627, + [SMALL_STATE(1997)] = 81680, + [SMALL_STATE(1998)] = 81737, + [SMALL_STATE(1999)] = 81790, + [SMALL_STATE(2000)] = 81843, + [SMALL_STATE(2001)] = 81900, + [SMALL_STATE(2002)] = 81957, + [SMALL_STATE(2003)] = 82008, + [SMALL_STATE(2004)] = 82065, + [SMALL_STATE(2005)] = 82122, + [SMALL_STATE(2006)] = 82179, + [SMALL_STATE(2007)] = 82236, + [SMALL_STATE(2008)] = 82293, + [SMALL_STATE(2009)] = 82348, + [SMALL_STATE(2010)] = 82405, + [SMALL_STATE(2011)] = 82455, + [SMALL_STATE(2012)] = 82507, + [SMALL_STATE(2013)] = 82559, + [SMALL_STATE(2014)] = 82611, + [SMALL_STATE(2015)] = 82663, + [SMALL_STATE(2016)] = 82713, + [SMALL_STATE(2017)] = 82763, + [SMALL_STATE(2018)] = 82817, + [SMALL_STATE(2019)] = 82873, + [SMALL_STATE(2020)] = 82923, + [SMALL_STATE(2021)] = 82973, + [SMALL_STATE(2022)] = 83023, + [SMALL_STATE(2023)] = 83073, + [SMALL_STATE(2024)] = 83123, + [SMALL_STATE(2025)] = 83179, + [SMALL_STATE(2026)] = 83229, + [SMALL_STATE(2027)] = 83279, + [SMALL_STATE(2028)] = 83329, + [SMALL_STATE(2029)] = 83385, + [SMALL_STATE(2030)] = 83435, + [SMALL_STATE(2031)] = 83485, + [SMALL_STATE(2032)] = 83539, + [SMALL_STATE(2033)] = 83589, + [SMALL_STATE(2034)] = 83645, + [SMALL_STATE(2035)] = 83695, + [SMALL_STATE(2036)] = 83747, + [SMALL_STATE(2037)] = 83799, + [SMALL_STATE(2038)] = 83855, + [SMALL_STATE(2039)] = 83911, + [SMALL_STATE(2040)] = 83963, + [SMALL_STATE(2041)] = 84015, + [SMALL_STATE(2042)] = 84065, + [SMALL_STATE(2043)] = 84117, + [SMALL_STATE(2044)] = 84170, + [SMALL_STATE(2045)] = 84221, + [SMALL_STATE(2046)] = 84276, + [SMALL_STATE(2047)] = 84331, + [SMALL_STATE(2048)] = 84386, + [SMALL_STATE(2049)] = 84435, + [SMALL_STATE(2050)] = 84486, + [SMALL_STATE(2051)] = 84535, + [SMALL_STATE(2052)] = 84584, + [SMALL_STATE(2053)] = 84639, + [SMALL_STATE(2054)] = 84694, + [SMALL_STATE(2055)] = 84749, + [SMALL_STATE(2056)] = 84802, + [SMALL_STATE(2057)] = 84855, + [SMALL_STATE(2058)] = 84906, + [SMALL_STATE(2059)] = 84961, + [SMALL_STATE(2060)] = 85010, + [SMALL_STATE(2061)] = 85059, + [SMALL_STATE(2062)] = 85114, + [SMALL_STATE(2063)] = 85169, + [SMALL_STATE(2064)] = 85218, + [SMALL_STATE(2065)] = 85273, + [SMALL_STATE(2066)] = 85322, + [SMALL_STATE(2067)] = 85377, + [SMALL_STATE(2068)] = 85426, + [SMALL_STATE(2069)] = 85475, + [SMALL_STATE(2070)] = 85530, + [SMALL_STATE(2071)] = 85585, + [SMALL_STATE(2072)] = 85634, + [SMALL_STATE(2073)] = 85689, + [SMALL_STATE(2074)] = 85744, + [SMALL_STATE(2075)] = 85793, + [SMALL_STATE(2076)] = 85848, + [SMALL_STATE(2077)] = 85897, + [SMALL_STATE(2078)] = 85952, + [SMALL_STATE(2079)] = 86001, + [SMALL_STATE(2080)] = 86050, + [SMALL_STATE(2081)] = 86105, + [SMALL_STATE(2082)] = 86156, + [SMALL_STATE(2083)] = 86207, + [SMALL_STATE(2084)] = 86262, + [SMALL_STATE(2085)] = 86317, + [SMALL_STATE(2086)] = 86368, + [SMALL_STATE(2087)] = 86417, + [SMALL_STATE(2088)] = 86465, + [SMALL_STATE(2089)] = 86517, + [SMALL_STATE(2090)] = 86565, + [SMALL_STATE(2091)] = 86619, + [SMALL_STATE(2092)] = 86667, + [SMALL_STATE(2093)] = 86721, + [SMALL_STATE(2094)] = 86775, + [SMALL_STATE(2095)] = 86823, + [SMALL_STATE(2096)] = 86877, + [SMALL_STATE(2097)] = 86925, + [SMALL_STATE(2098)] = 86973, + [SMALL_STATE(2099)] = 87027, + [SMALL_STATE(2100)] = 87081, + [SMALL_STATE(2101)] = 87129, + [SMALL_STATE(2102)] = 87177, + [SMALL_STATE(2103)] = 87229, + [SMALL_STATE(2104)] = 87311, + [SMALL_STATE(2105)] = 87365, + [SMALL_STATE(2106)] = 87419, + [SMALL_STATE(2107)] = 87467, + [SMALL_STATE(2108)] = 87515, + [SMALL_STATE(2109)] = 87597, + [SMALL_STATE(2110)] = 87649, + [SMALL_STATE(2111)] = 87703, + [SMALL_STATE(2112)] = 87765, + [SMALL_STATE(2113)] = 87847, + [SMALL_STATE(2114)] = 87895, + [SMALL_STATE(2115)] = 87951, + [SMALL_STATE(2116)] = 87999, + [SMALL_STATE(2117)] = 88081, + [SMALL_STATE(2118)] = 88147, + [SMALL_STATE(2119)] = 88195, + [SMALL_STATE(2120)] = 88243, + [SMALL_STATE(2121)] = 88291, + [SMALL_STATE(2122)] = 88373, + [SMALL_STATE(2123)] = 88427, + [SMALL_STATE(2124)] = 88475, + [SMALL_STATE(2125)] = 88529, + [SMALL_STATE(2126)] = 88611, + [SMALL_STATE(2127)] = 88661, + [SMALL_STATE(2128)] = 88743, + [SMALL_STATE(2129)] = 88791, + [SMALL_STATE(2130)] = 88839, + [SMALL_STATE(2131)] = 88893, + [SMALL_STATE(2132)] = 88951, + [SMALL_STATE(2133)] = 88999, + [SMALL_STATE(2134)] = 89067, + [SMALL_STATE(2135)] = 89115, + [SMALL_STATE(2136)] = 89163, + [SMALL_STATE(2137)] = 89217, + [SMALL_STATE(2138)] = 89265, + [SMALL_STATE(2139)] = 89315, + [SMALL_STATE(2140)] = 89365, + [SMALL_STATE(2141)] = 89419, + [SMALL_STATE(2142)] = 89501, + [SMALL_STATE(2143)] = 89571, + [SMALL_STATE(2144)] = 89619, + [SMALL_STATE(2145)] = 89701, + [SMALL_STATE(2146)] = 89749, + [SMALL_STATE(2147)] = 89797, + [SMALL_STATE(2148)] = 89845, + [SMALL_STATE(2149)] = 89893, + [SMALL_STATE(2150)] = 89965, + [SMALL_STATE(2151)] = 90013, + [SMALL_STATE(2152)] = 90095, + [SMALL_STATE(2153)] = 90169, + [SMALL_STATE(2154)] = 90217, + [SMALL_STATE(2155)] = 90265, + [SMALL_STATE(2156)] = 90341, + [SMALL_STATE(2157)] = 90393, + [SMALL_STATE(2158)] = 90441, + [SMALL_STATE(2159)] = 90489, + [SMALL_STATE(2160)] = 90567, + [SMALL_STATE(2161)] = 90615, + [SMALL_STATE(2162)] = 90695, + [SMALL_STATE(2163)] = 90743, + [SMALL_STATE(2164)] = 90797, + [SMALL_STATE(2165)] = 90851, + [SMALL_STATE(2166)] = 90901, + [SMALL_STATE(2167)] = 90949, + [SMALL_STATE(2168)] = 90997, + [SMALL_STATE(2169)] = 91045, + [SMALL_STATE(2170)] = 91099, + [SMALL_STATE(2171)] = 91153, + [SMALL_STATE(2172)] = 91203, + [SMALL_STATE(2173)] = 91251, + [SMALL_STATE(2174)] = 91305, + [SMALL_STATE(2175)] = 91359, + [SMALL_STATE(2176)] = 91407, + [SMALL_STATE(2177)] = 91455, + [SMALL_STATE(2178)] = 91509, + [SMALL_STATE(2179)] = 91559, + [SMALL_STATE(2180)] = 91613, + [SMALL_STATE(2181)] = 91661, + [SMALL_STATE(2182)] = 91709, + [SMALL_STATE(2183)] = 91757, + [SMALL_STATE(2184)] = 91811, + [SMALL_STATE(2185)] = 91859, + [SMALL_STATE(2186)] = 91909, + [SMALL_STATE(2187)] = 91991, + [SMALL_STATE(2188)] = 92045, + [SMALL_STATE(2189)] = 92093, + [SMALL_STATE(2190)] = 92141, + [SMALL_STATE(2191)] = 92195, + [SMALL_STATE(2192)] = 92243, + [SMALL_STATE(2193)] = 92291, + [SMALL_STATE(2194)] = 92339, + [SMALL_STATE(2195)] = 92393, + [SMALL_STATE(2196)] = 92447, + [SMALL_STATE(2197)] = 92495, + [SMALL_STATE(2198)] = 92543, + [SMALL_STATE(2199)] = 92597, + [SMALL_STATE(2200)] = 92651, + [SMALL_STATE(2201)] = 92731, + [SMALL_STATE(2202)] = 92779, + [SMALL_STATE(2203)] = 92833, + [SMALL_STATE(2204)] = 92881, + [SMALL_STATE(2205)] = 92929, + [SMALL_STATE(2206)] = 92979, + [SMALL_STATE(2207)] = 93033, + [SMALL_STATE(2208)] = 93081, + [SMALL_STATE(2209)] = 93133, + [SMALL_STATE(2210)] = 93187, + [SMALL_STATE(2211)] = 93241, + [SMALL_STATE(2212)] = 93293, + [SMALL_STATE(2213)] = 93343, + [SMALL_STATE(2214)] = 93391, + [SMALL_STATE(2215)] = 93439, + [SMALL_STATE(2216)] = 93485, + [SMALL_STATE(2217)] = 93539, + [SMALL_STATE(2218)] = 93589, + [SMALL_STATE(2219)] = 93639, + [SMALL_STATE(2220)] = 93692, + [SMALL_STATE(2221)] = 93745, + [SMALL_STATE(2222)] = 93824, + [SMALL_STATE(2223)] = 93873, + [SMALL_STATE(2224)] = 93920, + [SMALL_STATE(2225)] = 93967, + [SMALL_STATE(2226)] = 94020, + [SMALL_STATE(2227)] = 94073, + [SMALL_STATE(2228)] = 94122, + [SMALL_STATE(2229)] = 94169, + [SMALL_STATE(2230)] = 94216, + [SMALL_STATE(2231)] = 94269, + [SMALL_STATE(2232)] = 94348, + [SMALL_STATE(2233)] = 94395, + [SMALL_STATE(2234)] = 94442, + [SMALL_STATE(2235)] = 94489, + [SMALL_STATE(2236)] = 94536, + [SMALL_STATE(2237)] = 94617, + [SMALL_STATE(2238)] = 94664, + [SMALL_STATE(2239)] = 94745, + [SMALL_STATE(2240)] = 94826, + [SMALL_STATE(2241)] = 94907, + [SMALL_STATE(2242)] = 94958, + [SMALL_STATE(2243)] = 95011, + [SMALL_STATE(2244)] = 95092, + [SMALL_STATE(2245)] = 95173, + [SMALL_STATE(2246)] = 95222, + [SMALL_STATE(2247)] = 95269, + [SMALL_STATE(2248)] = 95318, + [SMALL_STATE(2249)] = 95399, + [SMALL_STATE(2250)] = 95446, + [SMALL_STATE(2251)] = 95495, + [SMALL_STATE(2252)] = 95542, + [SMALL_STATE(2253)] = 95623, + [SMALL_STATE(2254)] = 95670, + [SMALL_STATE(2255)] = 95717, + [SMALL_STATE(2256)] = 95764, + [SMALL_STATE(2257)] = 95811, + [SMALL_STATE(2258)] = 95858, + [SMALL_STATE(2259)] = 95907, + [SMALL_STATE(2260)] = 95960, + [SMALL_STATE(2261)] = 96013, + [SMALL_STATE(2262)] = 96060, + [SMALL_STATE(2263)] = 96141, + [SMALL_STATE(2264)] = 96190, + [SMALL_STATE(2265)] = 96237, + [SMALL_STATE(2266)] = 96318, + [SMALL_STATE(2267)] = 96371, + [SMALL_STATE(2268)] = 96418, + [SMALL_STATE(2269)] = 96467, + [SMALL_STATE(2270)] = 96514, + [SMALL_STATE(2271)] = 96559, + [SMALL_STATE(2272)] = 96608, + [SMALL_STATE(2273)] = 96655, + [SMALL_STATE(2274)] = 96702, + [SMALL_STATE(2275)] = 96751, + [SMALL_STATE(2276)] = 96798, + [SMALL_STATE(2277)] = 96845, + [SMALL_STATE(2278)] = 96892, + [SMALL_STATE(2279)] = 96941, + [SMALL_STATE(2280)] = 96990, + [SMALL_STATE(2281)] = 97043, + [SMALL_STATE(2282)] = 97124, + [SMALL_STATE(2283)] = 97171, + [SMALL_STATE(2284)] = 97243, + [SMALL_STATE(2285)] = 97289, + [SMALL_STATE(2286)] = 97357, + [SMALL_STATE(2287)] = 97403, + [SMALL_STATE(2288)] = 97449, + [SMALL_STATE(2289)] = 97527, + [SMALL_STATE(2290)] = 97573, + [SMALL_STATE(2291)] = 97619, + [SMALL_STATE(2292)] = 97665, + [SMALL_STATE(2293)] = 97711, + [SMALL_STATE(2294)] = 97757, + [SMALL_STATE(2295)] = 97823, + [SMALL_STATE(2296)] = 97869, + [SMALL_STATE(2297)] = 97915, + [SMALL_STATE(2298)] = 97961, + [SMALL_STATE(2299)] = 98009, + [SMALL_STATE(2300)] = 98061, + [SMALL_STATE(2301)] = 98125, + [SMALL_STATE(2302)] = 98171, + [SMALL_STATE(2303)] = 98217, + [SMALL_STATE(2304)] = 98263, + [SMALL_STATE(2305)] = 98309, + [SMALL_STATE(2306)] = 98355, + [SMALL_STATE(2307)] = 98401, + [SMALL_STATE(2308)] = 98447, + [SMALL_STATE(2309)] = 98493, + [SMALL_STATE(2310)] = 98571, + [SMALL_STATE(2311)] = 98617, + [SMALL_STATE(2312)] = 98663, + [SMALL_STATE(2313)] = 98715, + [SMALL_STATE(2314)] = 98777, + [SMALL_STATE(2315)] = 98823, + [SMALL_STATE(2316)] = 98869, + [SMALL_STATE(2317)] = 98915, + [SMALL_STATE(2318)] = 98961, + [SMALL_STATE(2319)] = 99013, + [SMALL_STATE(2320)] = 99059, + [SMALL_STATE(2321)] = 99111, + [SMALL_STATE(2322)] = 99157, + [SMALL_STATE(2323)] = 99203, + [SMALL_STATE(2324)] = 99251, + [SMALL_STATE(2325)] = 99297, + [SMALL_STATE(2326)] = 99349, + [SMALL_STATE(2327)] = 99395, + [SMALL_STATE(2328)] = 99447, + [SMALL_STATE(2329)] = 99493, + [SMALL_STATE(2330)] = 99553, + [SMALL_STATE(2331)] = 99599, + [SMALL_STATE(2332)] = 99653, + [SMALL_STATE(2333)] = 99699, + [SMALL_STATE(2334)] = 99745, + [SMALL_STATE(2335)] = 99791, + [SMALL_STATE(2336)] = 99837, + [SMALL_STATE(2337)] = 99883, + [SMALL_STATE(2338)] = 99929, + [SMALL_STATE(2339)] = 99981, + [SMALL_STATE(2340)] = 100027, + [SMALL_STATE(2341)] = 100073, + [SMALL_STATE(2342)] = 100119, + [SMALL_STATE(2343)] = 100167, + [SMALL_STATE(2344)] = 100213, + [SMALL_STATE(2345)] = 100265, + [SMALL_STATE(2346)] = 100315, + [SMALL_STATE(2347)] = 100361, + [SMALL_STATE(2348)] = 100407, + [SMALL_STATE(2349)] = 100463, + [SMALL_STATE(2350)] = 100509, + [SMALL_STATE(2351)] = 100555, + [SMALL_STATE(2352)] = 100601, + [SMALL_STATE(2353)] = 100653, + [SMALL_STATE(2354)] = 100705, + [SMALL_STATE(2355)] = 100751, + [SMALL_STATE(2356)] = 100797, + [SMALL_STATE(2357)] = 100843, + [SMALL_STATE(2358)] = 100889, + [SMALL_STATE(2359)] = 100935, + [SMALL_STATE(2360)] = 100981, + [SMALL_STATE(2361)] = 101027, + [SMALL_STATE(2362)] = 101073, + [SMALL_STATE(2363)] = 101131, + [SMALL_STATE(2364)] = 101183, + [SMALL_STATE(2365)] = 101229, + [SMALL_STATE(2366)] = 101279, + [SMALL_STATE(2367)] = 101325, + [SMALL_STATE(2368)] = 101371, + [SMALL_STATE(2369)] = 101415, + [SMALL_STATE(2370)] = 101461, + [SMALL_STATE(2371)] = 101531, + [SMALL_STATE(2372)] = 101577, + [SMALL_STATE(2373)] = 101625, + [SMALL_STATE(2374)] = 101680, + [SMALL_STATE(2375)] = 101725, + [SMALL_STATE(2376)] = 101770, + [SMALL_STATE(2377)] = 101821, + [SMALL_STATE(2378)] = 101872, + [SMALL_STATE(2379)] = 101917, + [SMALL_STATE(2380)] = 101968, + [SMALL_STATE(2381)] = 102013, + [SMALL_STATE(2382)] = 102058, + [SMALL_STATE(2383)] = 102103, + [SMALL_STATE(2384)] = 102148, + [SMALL_STATE(2385)] = 102193, + [SMALL_STATE(2386)] = 102242, + [SMALL_STATE(2387)] = 102287, + [SMALL_STATE(2388)] = 102332, + [SMALL_STATE(2389)] = 102377, + [SMALL_STATE(2390)] = 102452, + [SMALL_STATE(2391)] = 102497, + [SMALL_STATE(2392)] = 102580, + [SMALL_STATE(2393)] = 102663, + [SMALL_STATE(2394)] = 102746, + [SMALL_STATE(2395)] = 102829, + [SMALL_STATE(2396)] = 102874, + [SMALL_STATE(2397)] = 102919, + [SMALL_STATE(2398)] = 103002, + [SMALL_STATE(2399)] = 103061, + [SMALL_STATE(2400)] = 103106, + [SMALL_STATE(2401)] = 103151, + [SMALL_STATE(2402)] = 103212, + [SMALL_STATE(2403)] = 103257, + [SMALL_STATE(2404)] = 103302, + [SMALL_STATE(2405)] = 103347, + [SMALL_STATE(2406)] = 103398, + [SMALL_STATE(2407)] = 103443, + [SMALL_STATE(2408)] = 103490, + [SMALL_STATE(2409)] = 103535, + [SMALL_STATE(2410)] = 103592, + [SMALL_STATE(2411)] = 103637, + [SMALL_STATE(2412)] = 103720, + [SMALL_STATE(2413)] = 103765, + [SMALL_STATE(2414)] = 103828, + [SMALL_STATE(2415)] = 103873, + [SMALL_STATE(2416)] = 103922, + [SMALL_STATE(2417)] = 103967, + [SMALL_STATE(2418)] = 104032, + [SMALL_STATE(2419)] = 104077, + [SMALL_STATE(2420)] = 104122, + [SMALL_STATE(2421)] = 104189, + [SMALL_STATE(2422)] = 104234, + [SMALL_STATE(2423)] = 104279, + [SMALL_STATE(2424)] = 104348, + [SMALL_STATE(2425)] = 104393, + [SMALL_STATE(2426)] = 104464, + [SMALL_STATE(2427)] = 104509, + [SMALL_STATE(2428)] = 104554, + [SMALL_STATE(2429)] = 104627, + [SMALL_STATE(2430)] = 104672, + [SMALL_STATE(2431)] = 104747, + [SMALL_STATE(2432)] = 104792, + [SMALL_STATE(2433)] = 104839, + [SMALL_STATE(2434)] = 104886, + [SMALL_STATE(2435)] = 104931, + [SMALL_STATE(2436)] = 105014, + [SMALL_STATE(2437)] = 105059, + [SMALL_STATE(2438)] = 105104, + [SMALL_STATE(2439)] = 105149, + [SMALL_STATE(2440)] = 105200, + [SMALL_STATE(2441)] = 105245, + [SMALL_STATE(2442)] = 105290, + [SMALL_STATE(2443)] = 105335, + [SMALL_STATE(2444)] = 105380, + [SMALL_STATE(2445)] = 105425, + [SMALL_STATE(2446)] = 105470, + [SMALL_STATE(2447)] = 105515, + [SMALL_STATE(2448)] = 105560, + [SMALL_STATE(2449)] = 105605, + [SMALL_STATE(2450)] = 105656, + [SMALL_STATE(2451)] = 105701, + [SMALL_STATE(2452)] = 105746, + [SMALL_STATE(2453)] = 105791, + [SMALL_STATE(2454)] = 105836, + [SMALL_STATE(2455)] = 105881, + [SMALL_STATE(2456)] = 105926, + [SMALL_STATE(2457)] = 105971, + [SMALL_STATE(2458)] = 106016, + [SMALL_STATE(2459)] = 106061, + [SMALL_STATE(2460)] = 106106, + [SMALL_STATE(2461)] = 106151, + [SMALL_STATE(2462)] = 106196, + [SMALL_STATE(2463)] = 106241, + [SMALL_STATE(2464)] = 106286, + [SMALL_STATE(2465)] = 106331, + [SMALL_STATE(2466)] = 106376, + [SMALL_STATE(2467)] = 106421, + [SMALL_STATE(2468)] = 106466, + [SMALL_STATE(2469)] = 106511, + [SMALL_STATE(2470)] = 106556, + [SMALL_STATE(2471)] = 106601, + [SMALL_STATE(2472)] = 106646, + [SMALL_STATE(2473)] = 106691, + [SMALL_STATE(2474)] = 106736, + [SMALL_STATE(2475)] = 106781, + [SMALL_STATE(2476)] = 106826, + [SMALL_STATE(2477)] = 106871, + [SMALL_STATE(2478)] = 106916, + [SMALL_STATE(2479)] = 106961, + [SMALL_STATE(2480)] = 107012, + [SMALL_STATE(2481)] = 107057, + [SMALL_STATE(2482)] = 107140, + [SMALL_STATE(2483)] = 107185, + [SMALL_STATE(2484)] = 107230, + [SMALL_STATE(2485)] = 107275, + [SMALL_STATE(2486)] = 107320, + [SMALL_STATE(2487)] = 107365, + [SMALL_STATE(2488)] = 107410, + [SMALL_STATE(2489)] = 107455, + [SMALL_STATE(2490)] = 107500, + [SMALL_STATE(2491)] = 107583, + [SMALL_STATE(2492)] = 107628, + [SMALL_STATE(2493)] = 107673, + [SMALL_STATE(2494)] = 107718, + [SMALL_STATE(2495)] = 107763, + [SMALL_STATE(2496)] = 107846, + [SMALL_STATE(2497)] = 107929, + [SMALL_STATE(2498)] = 107974, + [SMALL_STATE(2499)] = 108019, + [SMALL_STATE(2500)] = 108102, + [SMALL_STATE(2501)] = 108185, + [SMALL_STATE(2502)] = 108230, + [SMALL_STATE(2503)] = 108275, + [SMALL_STATE(2504)] = 108320, + [SMALL_STATE(2505)] = 108371, + [SMALL_STATE(2506)] = 108454, + [SMALL_STATE(2507)] = 108499, + [SMALL_STATE(2508)] = 108544, + [SMALL_STATE(2509)] = 108589, + [SMALL_STATE(2510)] = 108640, + [SMALL_STATE(2511)] = 108685, + [SMALL_STATE(2512)] = 108730, + [SMALL_STATE(2513)] = 108801, + [SMALL_STATE(2514)] = 108846, + [SMALL_STATE(2515)] = 108915, + [SMALL_STATE(2516)] = 108960, + [SMALL_STATE(2517)] = 109027, + [SMALL_STATE(2518)] = 109072, + [SMALL_STATE(2519)] = 109137, + [SMALL_STATE(2520)] = 109182, + [SMALL_STATE(2521)] = 109245, + [SMALL_STATE(2522)] = 109290, + [SMALL_STATE(2523)] = 109351, + [SMALL_STATE(2524)] = 109432, + [SMALL_STATE(2525)] = 109477, + [SMALL_STATE(2526)] = 109536, + [SMALL_STATE(2527)] = 109597, + [SMALL_STATE(2528)] = 109642, + [SMALL_STATE(2529)] = 109697, + [SMALL_STATE(2530)] = 109742, + [SMALL_STATE(2531)] = 109807, + [SMALL_STATE(2532)] = 109852, + [SMALL_STATE(2533)] = 109903, + [SMALL_STATE(2534)] = 109948, + [SMALL_STATE(2535)] = 109995, + [SMALL_STATE(2536)] = 110040, + [SMALL_STATE(2537)] = 110097, + [SMALL_STATE(2538)] = 110142, + [SMALL_STATE(2539)] = 110209, + [SMALL_STATE(2540)] = 110254, + [SMALL_STATE(2541)] = 110323, + [SMALL_STATE(2542)] = 110368, + [SMALL_STATE(2543)] = 110439, + [SMALL_STATE(2544)] = 110484, + [SMALL_STATE(2545)] = 110557, + [SMALL_STATE(2546)] = 110602, + [SMALL_STATE(2547)] = 110677, + [SMALL_STATE(2548)] = 110722, + [SMALL_STATE(2549)] = 110799, + [SMALL_STATE(2550)] = 110844, + [SMALL_STATE(2551)] = 110923, + [SMALL_STATE(2552)] = 110968, + [SMALL_STATE(2553)] = 111013, + [SMALL_STATE(2554)] = 111066, + [SMALL_STATE(2555)] = 111111, + [SMALL_STATE(2556)] = 111156, + [SMALL_STATE(2557)] = 111203, + [SMALL_STATE(2558)] = 111248, + [SMALL_STATE(2559)] = 111293, + [SMALL_STATE(2560)] = 111342, + [SMALL_STATE(2561)] = 111387, + [SMALL_STATE(2562)] = 111432, + [SMALL_STATE(2563)] = 111489, + [SMALL_STATE(2564)] = 111534, + [SMALL_STATE(2565)] = 111579, + [SMALL_STATE(2566)] = 111630, + [SMALL_STATE(2567)] = 111675, + [SMALL_STATE(2568)] = 111730, + [SMALL_STATE(2569)] = 111781, + [SMALL_STATE(2570)] = 111864, + [SMALL_STATE(2571)] = 111909, + [SMALL_STATE(2572)] = 111960, + [SMALL_STATE(2573)] = 112043, + [SMALL_STATE(2574)] = 112088, + [SMALL_STATE(2575)] = 112158, + [SMALL_STATE(2576)] = 112228, + [SMALL_STATE(2577)] = 112298, + [SMALL_STATE(2578)] = 112368, + [SMALL_STATE(2579)] = 112438, + [SMALL_STATE(2580)] = 112508, + [SMALL_STATE(2581)] = 112578, + [SMALL_STATE(2582)] = 112648, + [SMALL_STATE(2583)] = 112718, + [SMALL_STATE(2584)] = 112788, + [SMALL_STATE(2585)] = 112858, + [SMALL_STATE(2586)] = 112928, + [SMALL_STATE(2587)] = 112998, + [SMALL_STATE(2588)] = 113068, + [SMALL_STATE(2589)] = 113142, + [SMALL_STATE(2590)] = 113212, + [SMALL_STATE(2591)] = 113282, + [SMALL_STATE(2592)] = 113352, + [SMALL_STATE(2593)] = 113422, + [SMALL_STATE(2594)] = 113492, + [SMALL_STATE(2595)] = 113562, + [SMALL_STATE(2596)] = 113632, + [SMALL_STATE(2597)] = 113702, + [SMALL_STATE(2598)] = 113772, + [SMALL_STATE(2599)] = 113842, + [SMALL_STATE(2600)] = 113912, + [SMALL_STATE(2601)] = 113982, + [SMALL_STATE(2602)] = 114052, + [SMALL_STATE(2603)] = 114122, + [SMALL_STATE(2604)] = 114192, + [SMALL_STATE(2605)] = 114262, + [SMALL_STATE(2606)] = 114332, + [SMALL_STATE(2607)] = 114402, + [SMALL_STATE(2608)] = 114472, + [SMALL_STATE(2609)] = 114542, + [SMALL_STATE(2610)] = 114612, + [SMALL_STATE(2611)] = 114682, + [SMALL_STATE(2612)] = 114752, + [SMALL_STATE(2613)] = 114822, + [SMALL_STATE(2614)] = 114892, + [SMALL_STATE(2615)] = 114962, + [SMALL_STATE(2616)] = 115032, + [SMALL_STATE(2617)] = 115102, + [SMALL_STATE(2618)] = 115172, + [SMALL_STATE(2619)] = 115242, + [SMALL_STATE(2620)] = 115312, + [SMALL_STATE(2621)] = 115382, + [SMALL_STATE(2622)] = 115452, + [SMALL_STATE(2623)] = 115534, + [SMALL_STATE(2624)] = 115604, + [SMALL_STATE(2625)] = 115674, + [SMALL_STATE(2626)] = 115744, + [SMALL_STATE(2627)] = 115814, + [SMALL_STATE(2628)] = 115884, + [SMALL_STATE(2629)] = 115954, + [SMALL_STATE(2630)] = 116024, + [SMALL_STATE(2631)] = 116068, + [SMALL_STATE(2632)] = 116138, + [SMALL_STATE(2633)] = 116208, + [SMALL_STATE(2634)] = 116278, + [SMALL_STATE(2635)] = 116348, + [SMALL_STATE(2636)] = 116418, + [SMALL_STATE(2637)] = 116462, + [SMALL_STATE(2638)] = 116532, + [SMALL_STATE(2639)] = 116602, + [SMALL_STATE(2640)] = 116672, + [SMALL_STATE(2641)] = 116742, + [SMALL_STATE(2642)] = 116812, + [SMALL_STATE(2643)] = 116882, + [SMALL_STATE(2644)] = 116952, + [SMALL_STATE(2645)] = 117022, + [SMALL_STATE(2646)] = 117092, + [SMALL_STATE(2647)] = 117162, + [SMALL_STATE(2648)] = 117216, + [SMALL_STATE(2649)] = 117260, + [SMALL_STATE(2650)] = 117330, + [SMALL_STATE(2651)] = 117374, + [SMALL_STATE(2652)] = 117430, + [SMALL_STATE(2653)] = 117474, + [SMALL_STATE(2654)] = 117522, + [SMALL_STATE(2655)] = 117566, + [SMALL_STATE(2656)] = 117610, + [SMALL_STATE(2657)] = 117656, + [SMALL_STATE(2658)] = 117700, + [SMALL_STATE(2659)] = 117752, + [SMALL_STATE(2660)] = 117796, + [SMALL_STATE(2661)] = 117854, + [SMALL_STATE(2662)] = 117898, + [SMALL_STATE(2663)] = 117958, + [SMALL_STATE(2664)] = 118002, + [SMALL_STATE(2665)] = 118064, + [SMALL_STATE(2666)] = 118108, + [SMALL_STATE(2667)] = 118172, + [SMALL_STATE(2668)] = 118216, + [SMALL_STATE(2669)] = 118282, + [SMALL_STATE(2670)] = 118326, + [SMALL_STATE(2671)] = 118370, + [SMALL_STATE(2672)] = 118438, + [SMALL_STATE(2673)] = 118482, + [SMALL_STATE(2674)] = 118552, + [SMALL_STATE(2675)] = 118596, + [SMALL_STATE(2676)] = 118666, + [SMALL_STATE(2677)] = 118736, + [SMALL_STATE(2678)] = 118806, + [SMALL_STATE(2679)] = 118876, + [SMALL_STATE(2680)] = 118920, + [SMALL_STATE(2681)] = 118990, + [SMALL_STATE(2682)] = 119060, + [SMALL_STATE(2683)] = 119130, + [SMALL_STATE(2684)] = 119200, + [SMALL_STATE(2685)] = 119270, + [SMALL_STATE(2686)] = 119340, + [SMALL_STATE(2687)] = 119410, + [SMALL_STATE(2688)] = 119480, + [SMALL_STATE(2689)] = 119524, + [SMALL_STATE(2690)] = 119568, + [SMALL_STATE(2691)] = 119612, + [SMALL_STATE(2692)] = 119656, + [SMALL_STATE(2693)] = 119726, + [SMALL_STATE(2694)] = 119776, + [SMALL_STATE(2695)] = 119820, + [SMALL_STATE(2696)] = 119864, + [SMALL_STATE(2697)] = 119908, + [SMALL_STATE(2698)] = 119952, + [SMALL_STATE(2699)] = 119996, + [SMALL_STATE(2700)] = 120040, + [SMALL_STATE(2701)] = 120084, + [SMALL_STATE(2702)] = 120128, + [SMALL_STATE(2703)] = 120172, + [SMALL_STATE(2704)] = 120242, + [SMALL_STATE(2705)] = 120288, + [SMALL_STATE(2706)] = 120340, + [SMALL_STATE(2707)] = 120384, + [SMALL_STATE(2708)] = 120428, + [SMALL_STATE(2709)] = 120472, + [SMALL_STATE(2710)] = 120546, + [SMALL_STATE(2711)] = 120590, + [SMALL_STATE(2712)] = 120634, + [SMALL_STATE(2713)] = 120678, + [SMALL_STATE(2714)] = 120722, + [SMALL_STATE(2715)] = 120766, + [SMALL_STATE(2716)] = 120836, + [SMALL_STATE(2717)] = 120880, + [SMALL_STATE(2718)] = 120924, + [SMALL_STATE(2719)] = 120968, + [SMALL_STATE(2720)] = 121012, + [SMALL_STATE(2721)] = 121056, + [SMALL_STATE(2722)] = 121099, + [SMALL_STATE(2723)] = 121168, + [SMALL_STATE(2724)] = 121213, + [SMALL_STATE(2725)] = 121256, + [SMALL_STATE(2726)] = 121325, + [SMALL_STATE(2727)] = 121394, + [SMALL_STATE(2728)] = 121463, + [SMALL_STATE(2729)] = 121532, + [SMALL_STATE(2730)] = 121601, + [SMALL_STATE(2731)] = 121644, + [SMALL_STATE(2732)] = 121713, + [SMALL_STATE(2733)] = 121782, + [SMALL_STATE(2734)] = 121851, + [SMALL_STATE(2735)] = 121920, + [SMALL_STATE(2736)] = 121989, + [SMALL_STATE(2737)] = 122058, + [SMALL_STATE(2738)] = 122127, + [SMALL_STATE(2739)] = 122170, + [SMALL_STATE(2740)] = 122239, + [SMALL_STATE(2741)] = 122308, + [SMALL_STATE(2742)] = 122377, + [SMALL_STATE(2743)] = 122446, + [SMALL_STATE(2744)] = 122515, + [SMALL_STATE(2745)] = 122584, + [SMALL_STATE(2746)] = 122627, + [SMALL_STATE(2747)] = 122696, + [SMALL_STATE(2748)] = 122765, + [SMALL_STATE(2749)] = 122834, + [SMALL_STATE(2750)] = 122903, + [SMALL_STATE(2751)] = 122972, + [SMALL_STATE(2752)] = 123041, + [SMALL_STATE(2753)] = 123110, + [SMALL_STATE(2754)] = 123179, + [SMALL_STATE(2755)] = 123248, + [SMALL_STATE(2756)] = 123317, + [SMALL_STATE(2757)] = 123386, + [SMALL_STATE(2758)] = 123455, + [SMALL_STATE(2759)] = 123498, + [SMALL_STATE(2760)] = 123563, + [SMALL_STATE(2761)] = 123606, + [SMALL_STATE(2762)] = 123675, + [SMALL_STATE(2763)] = 123744, + [SMALL_STATE(2764)] = 123787, + [SMALL_STATE(2765)] = 123830, + [SMALL_STATE(2766)] = 123899, + [SMALL_STATE(2767)] = 123968, + [SMALL_STATE(2768)] = 124037, + [SMALL_STATE(2769)] = 124080, + [SMALL_STATE(2770)] = 124149, + [SMALL_STATE(2771)] = 124192, + [SMALL_STATE(2772)] = 124255, + [SMALL_STATE(2773)] = 124324, + [SMALL_STATE(2774)] = 124367, + [SMALL_STATE(2775)] = 124428, + [SMALL_STATE(2776)] = 124497, + [SMALL_STATE(2777)] = 124540, + [SMALL_STATE(2778)] = 124609, + [SMALL_STATE(2779)] = 124678, + [SMALL_STATE(2780)] = 124747, + [SMALL_STATE(2781)] = 124816, + [SMALL_STATE(2782)] = 124885, + [SMALL_STATE(2783)] = 124928, + [SMALL_STATE(2784)] = 124987, + [SMALL_STATE(2785)] = 125030, + [SMALL_STATE(2786)] = 125087, + [SMALL_STATE(2787)] = 125130, + [SMALL_STATE(2788)] = 125173, + [SMALL_STATE(2789)] = 125242, + [SMALL_STATE(2790)] = 125285, + [SMALL_STATE(2791)] = 125354, + [SMALL_STATE(2792)] = 125405, + [SMALL_STATE(2793)] = 125474, + [SMALL_STATE(2794)] = 125543, + [SMALL_STATE(2795)] = 125586, + [SMALL_STATE(2796)] = 125631, + [SMALL_STATE(2797)] = 125674, + [SMALL_STATE(2798)] = 125721, + [SMALL_STATE(2799)] = 125764, + [SMALL_STATE(2800)] = 125833, + [SMALL_STATE(2801)] = 125902, + [SMALL_STATE(2802)] = 125957, + [SMALL_STATE(2803)] = 126000, + [SMALL_STATE(2804)] = 126043, + [SMALL_STATE(2805)] = 126112, + [SMALL_STATE(2806)] = 126181, + [SMALL_STATE(2807)] = 126230, + [SMALL_STATE(2808)] = 126273, + [SMALL_STATE(2809)] = 126342, + [SMALL_STATE(2810)] = 126395, + [SMALL_STATE(2811)] = 126464, + [SMALL_STATE(2812)] = 126533, + [SMALL_STATE(2813)] = 126602, + [SMALL_STATE(2814)] = 126671, + [SMALL_STATE(2815)] = 126714, + [SMALL_STATE(2816)] = 126757, + [SMALL_STATE(2817)] = 126800, + [SMALL_STATE(2818)] = 126869, + [SMALL_STATE(2819)] = 126938, + [SMALL_STATE(2820)] = 127007, + [SMALL_STATE(2821)] = 127076, + [SMALL_STATE(2822)] = 127149, + [SMALL_STATE(2823)] = 127218, + [SMALL_STATE(2824)] = 127287, + [SMALL_STATE(2825)] = 127330, + [SMALL_STATE(2826)] = 127399, + [SMALL_STATE(2827)] = 127468, + [SMALL_STATE(2828)] = 127537, + [SMALL_STATE(2829)] = 127606, + [SMALL_STATE(2830)] = 127649, + [SMALL_STATE(2831)] = 127718, + [SMALL_STATE(2832)] = 127761, + [SMALL_STATE(2833)] = 127804, + [SMALL_STATE(2834)] = 127873, + [SMALL_STATE(2835)] = 127916, + [SMALL_STATE(2836)] = 127985, + [SMALL_STATE(2837)] = 128054, + [SMALL_STATE(2838)] = 128123, + [SMALL_STATE(2839)] = 128192, + [SMALL_STATE(2840)] = 128259, + [SMALL_STATE(2841)] = 128304, + [SMALL_STATE(2842)] = 128347, + [SMALL_STATE(2843)] = 128390, + [SMALL_STATE(2844)] = 128459, + [SMALL_STATE(2845)] = 128528, + [SMALL_STATE(2846)] = 128597, + [SMALL_STATE(2847)] = 128666, + [SMALL_STATE(2848)] = 128709, + [SMALL_STATE(2849)] = 128778, + [SMALL_STATE(2850)] = 128821, + [SMALL_STATE(2851)] = 128864, + [SMALL_STATE(2852)] = 128933, + [SMALL_STATE(2853)] = 128976, + [SMALL_STATE(2854)] = 129019, + [SMALL_STATE(2855)] = 129088, + [SMALL_STATE(2856)] = 129157, + [SMALL_STATE(2857)] = 129226, + [SMALL_STATE(2858)] = 129269, + [SMALL_STATE(2859)] = 129338, + [SMALL_STATE(2860)] = 129381, + [SMALL_STATE(2861)] = 129450, + [SMALL_STATE(2862)] = 129493, + [SMALL_STATE(2863)] = 129562, + [SMALL_STATE(2864)] = 129631, + [SMALL_STATE(2865)] = 129673, + [SMALL_STATE(2866)] = 129717, + [SMALL_STATE(2867)] = 129759, + [SMALL_STATE(2868)] = 129801, + [SMALL_STATE(2869)] = 129859, + [SMALL_STATE(2870)] = 129901, + [SMALL_STATE(2871)] = 129943, + [SMALL_STATE(2872)] = 129985, + [SMALL_STATE(2873)] = 130027, + [SMALL_STATE(2874)] = 130095, + [SMALL_STATE(2875)] = 130137, + [SMALL_STATE(2876)] = 130179, + [SMALL_STATE(2877)] = 130221, + [SMALL_STATE(2878)] = 130273, + [SMALL_STATE(2879)] = 130315, + [SMALL_STATE(2880)] = 130357, + [SMALL_STATE(2881)] = 130419, + [SMALL_STATE(2882)] = 130461, + [SMALL_STATE(2883)] = 130503, + [SMALL_STATE(2884)] = 130569, + [SMALL_STATE(2885)] = 130639, + [SMALL_STATE(2886)] = 130681, + [SMALL_STATE(2887)] = 130723, + [SMALL_STATE(2888)] = 130765, + [SMALL_STATE(2889)] = 130807, + [SMALL_STATE(2890)] = 130849, + [SMALL_STATE(2891)] = 130913, + [SMALL_STATE(2892)] = 130955, + [SMALL_STATE(2893)] = 130997, + [SMALL_STATE(2894)] = 131039, + [SMALL_STATE(2895)] = 131081, + [SMALL_STATE(2896)] = 131123, + [SMALL_STATE(2897)] = 131165, + [SMALL_STATE(2898)] = 131213, [SMALL_STATE(2899)] = 131255, - [SMALL_STATE(2900)] = 131282, - [SMALL_STATE(2901)] = 131301, - [SMALL_STATE(2902)] = 131320, - [SMALL_STATE(2903)] = 131339, - [SMALL_STATE(2904)] = 131366, - [SMALL_STATE(2905)] = 131393, - [SMALL_STATE(2906)] = 131420, - [SMALL_STATE(2907)] = 131447, - [SMALL_STATE(2908)] = 131474, - [SMALL_STATE(2909)] = 131501, - [SMALL_STATE(2910)] = 131528, - [SMALL_STATE(2911)] = 131549, - [SMALL_STATE(2912)] = 131576, - [SMALL_STATE(2913)] = 131603, - [SMALL_STATE(2914)] = 131630, - [SMALL_STATE(2915)] = 131649, - [SMALL_STATE(2916)] = 131676, - [SMALL_STATE(2917)] = 131703, - [SMALL_STATE(2918)] = 131730, - [SMALL_STATE(2919)] = 131757, - [SMALL_STATE(2920)] = 131784, - [SMALL_STATE(2921)] = 131811, - [SMALL_STATE(2922)] = 131830, - [SMALL_STATE(2923)] = 131849, - [SMALL_STATE(2924)] = 131876, - [SMALL_STATE(2925)] = 131903, - [SMALL_STATE(2926)] = 131930, - [SMALL_STATE(2927)] = 131949, - [SMALL_STATE(2928)] = 131978, - [SMALL_STATE(2929)] = 132005, - [SMALL_STATE(2930)] = 132034, - [SMALL_STATE(2931)] = 132061, - [SMALL_STATE(2932)] = 132088, - [SMALL_STATE(2933)] = 132115, - [SMALL_STATE(2934)] = 132142, - [SMALL_STATE(2935)] = 132161, - [SMALL_STATE(2936)] = 132180, - [SMALL_STATE(2937)] = 132207, - [SMALL_STATE(2938)] = 132236, - [SMALL_STATE(2939)] = 132255, - [SMALL_STATE(2940)] = 132282, - [SMALL_STATE(2941)] = 132311, - [SMALL_STATE(2942)] = 132337, - [SMALL_STATE(2943)] = 132365, - [SMALL_STATE(2944)] = 132393, - [SMALL_STATE(2945)] = 132417, - [SMALL_STATE(2946)] = 132445, - [SMALL_STATE(2947)] = 132473, - [SMALL_STATE(2948)] = 132499, - [SMALL_STATE(2949)] = 132525, - [SMALL_STATE(2950)] = 132551, - [SMALL_STATE(2951)] = 132577, - [SMALL_STATE(2952)] = 132601, - [SMALL_STATE(2953)] = 132627, - [SMALL_STATE(2954)] = 132651, - [SMALL_STATE(2955)] = 132677, - [SMALL_STATE(2956)] = 132703, - [SMALL_STATE(2957)] = 132729, - [SMALL_STATE(2958)] = 132755, - [SMALL_STATE(2959)] = 132781, - [SMALL_STATE(2960)] = 132807, - [SMALL_STATE(2961)] = 132835, - [SMALL_STATE(2962)] = 132861, - [SMALL_STATE(2963)] = 132887, - [SMALL_STATE(2964)] = 132913, - [SMALL_STATE(2965)] = 132933, - [SMALL_STATE(2966)] = 132959, - [SMALL_STATE(2967)] = 132987, - [SMALL_STATE(2968)] = 133015, - [SMALL_STATE(2969)] = 133041, - [SMALL_STATE(2970)] = 133069, - [SMALL_STATE(2971)] = 133095, - [SMALL_STATE(2972)] = 133119, - [SMALL_STATE(2973)] = 133147, - [SMALL_STATE(2974)] = 133171, - [SMALL_STATE(2975)] = 133199, - [SMALL_STATE(2976)] = 133227, - [SMALL_STATE(2977)] = 133253, - [SMALL_STATE(2978)] = 133281, - [SMALL_STATE(2979)] = 133309, - [SMALL_STATE(2980)] = 133335, - [SMALL_STATE(2981)] = 133361, - [SMALL_STATE(2982)] = 133381, - [SMALL_STATE(2983)] = 133407, - [SMALL_STATE(2984)] = 133435, - [SMALL_STATE(2985)] = 133453, - [SMALL_STATE(2986)] = 133479, - [SMALL_STATE(2987)] = 133501, - [SMALL_STATE(2988)] = 133525, - [SMALL_STATE(2989)] = 133551, - [SMALL_STATE(2990)] = 133575, - [SMALL_STATE(2991)] = 133603, - [SMALL_STATE(2992)] = 133629, - [SMALL_STATE(2993)] = 133657, - [SMALL_STATE(2994)] = 133675, - [SMALL_STATE(2995)] = 133701, - [SMALL_STATE(2996)] = 133723, - [SMALL_STATE(2997)] = 133743, - [SMALL_STATE(2998)] = 133769, - [SMALL_STATE(2999)] = 133795, - [SMALL_STATE(3000)] = 133821, - [SMALL_STATE(3001)] = 133847, - [SMALL_STATE(3002)] = 133867, - [SMALL_STATE(3003)] = 133893, - [SMALL_STATE(3004)] = 133919, - [SMALL_STATE(3005)] = 133945, - [SMALL_STATE(3006)] = 133971, - [SMALL_STATE(3007)] = 133997, - [SMALL_STATE(3008)] = 134021, - [SMALL_STATE(3009)] = 134047, - [SMALL_STATE(3010)] = 134073, - [SMALL_STATE(3011)] = 134101, - [SMALL_STATE(3012)] = 134127, - [SMALL_STATE(3013)] = 134150, - [SMALL_STATE(3014)] = 134173, - [SMALL_STATE(3015)] = 134196, - [SMALL_STATE(3016)] = 134217, - [SMALL_STATE(3017)] = 134240, - [SMALL_STATE(3018)] = 134263, - [SMALL_STATE(3019)] = 134280, - [SMALL_STATE(3020)] = 134303, - [SMALL_STATE(3021)] = 134328, - [SMALL_STATE(3022)] = 134351, - [SMALL_STATE(3023)] = 134372, - [SMALL_STATE(3024)] = 134391, - [SMALL_STATE(3025)] = 134416, - [SMALL_STATE(3026)] = 134439, - [SMALL_STATE(3027)] = 134462, - [SMALL_STATE(3028)] = 134485, - [SMALL_STATE(3029)] = 134502, - [SMALL_STATE(3030)] = 134525, - [SMALL_STATE(3031)] = 134550, - [SMALL_STATE(3032)] = 134575, - [SMALL_STATE(3033)] = 134598, - [SMALL_STATE(3034)] = 134621, - [SMALL_STATE(3035)] = 134644, - [SMALL_STATE(3036)] = 134659, - [SMALL_STATE(3037)] = 134682, - [SMALL_STATE(3038)] = 134705, - [SMALL_STATE(3039)] = 134730, - [SMALL_STATE(3040)] = 134753, - [SMALL_STATE(3041)] = 134778, - [SMALL_STATE(3042)] = 134801, - [SMALL_STATE(3043)] = 134826, - [SMALL_STATE(3044)] = 134851, - [SMALL_STATE(3045)] = 134874, - [SMALL_STATE(3046)] = 134897, - [SMALL_STATE(3047)] = 134918, - [SMALL_STATE(3048)] = 134943, - [SMALL_STATE(3049)] = 134966, - [SMALL_STATE(3050)] = 134991, - [SMALL_STATE(3051)] = 135014, - [SMALL_STATE(3052)] = 135037, - [SMALL_STATE(3053)] = 135060, - [SMALL_STATE(3054)] = 135085, - [SMALL_STATE(3055)] = 135108, - [SMALL_STATE(3056)] = 135133, - [SMALL_STATE(3057)] = 135156, - [SMALL_STATE(3058)] = 135175, - [SMALL_STATE(3059)] = 135198, - [SMALL_STATE(3060)] = 135215, - [SMALL_STATE(3061)] = 135238, - [SMALL_STATE(3062)] = 135257, - [SMALL_STATE(3063)] = 135274, - [SMALL_STATE(3064)] = 135297, - [SMALL_STATE(3065)] = 135320, - [SMALL_STATE(3066)] = 135337, - [SMALL_STATE(3067)] = 135352, - [SMALL_STATE(3068)] = 135375, - [SMALL_STATE(3069)] = 135398, - [SMALL_STATE(3070)] = 135421, - [SMALL_STATE(3071)] = 135444, - [SMALL_STATE(3072)] = 135463, - [SMALL_STATE(3073)] = 135486, - [SMALL_STATE(3074)] = 135509, - [SMALL_STATE(3075)] = 135532, - [SMALL_STATE(3076)] = 135555, - [SMALL_STATE(3077)] = 135578, - [SMALL_STATE(3078)] = 135601, - [SMALL_STATE(3079)] = 135624, - [SMALL_STATE(3080)] = 135639, - [SMALL_STATE(3081)] = 135664, - [SMALL_STATE(3082)] = 135689, - [SMALL_STATE(3083)] = 135706, - [SMALL_STATE(3084)] = 135728, - [SMALL_STATE(3085)] = 135750, - [SMALL_STATE(3086)] = 135772, - [SMALL_STATE(3087)] = 135786, - [SMALL_STATE(3088)] = 135806, - [SMALL_STATE(3089)] = 135822, - [SMALL_STATE(3090)] = 135844, - [SMALL_STATE(3091)] = 135860, - [SMALL_STATE(3092)] = 135882, - [SMALL_STATE(3093)] = 135898, - [SMALL_STATE(3094)] = 135912, - [SMALL_STATE(3095)] = 135926, - [SMALL_STATE(3096)] = 135942, - [SMALL_STATE(3097)] = 135956, - [SMALL_STATE(3098)] = 135972, - [SMALL_STATE(3099)] = 135992, - [SMALL_STATE(3100)] = 136008, - [SMALL_STATE(3101)] = 136030, - [SMALL_STATE(3102)] = 136046, - [SMALL_STATE(3103)] = 136062, - [SMALL_STATE(3104)] = 136084, - [SMALL_STATE(3105)] = 136106, - [SMALL_STATE(3106)] = 136126, - [SMALL_STATE(3107)] = 136146, - [SMALL_STATE(3108)] = 136160, - [SMALL_STATE(3109)] = 136176, - [SMALL_STATE(3110)] = 136198, - [SMALL_STATE(3111)] = 136220, - [SMALL_STATE(3112)] = 136242, - [SMALL_STATE(3113)] = 136264, - [SMALL_STATE(3114)] = 136286, - [SMALL_STATE(3115)] = 136306, - [SMALL_STATE(3116)] = 136328, - [SMALL_STATE(3117)] = 136350, - [SMALL_STATE(3118)] = 136372, - [SMALL_STATE(3119)] = 136392, - [SMALL_STATE(3120)] = 136414, - [SMALL_STATE(3121)] = 136430, - [SMALL_STATE(3122)] = 136450, - [SMALL_STATE(3123)] = 136470, - [SMALL_STATE(3124)] = 136486, - [SMALL_STATE(3125)] = 136500, - [SMALL_STATE(3126)] = 136520, - [SMALL_STATE(3127)] = 136534, - [SMALL_STATE(3128)] = 136548, - [SMALL_STATE(3129)] = 136570, - [SMALL_STATE(3130)] = 136588, - [SMALL_STATE(3131)] = 136602, - [SMALL_STATE(3132)] = 136616, - [SMALL_STATE(3133)] = 136636, - [SMALL_STATE(3134)] = 136656, - [SMALL_STATE(3135)] = 136676, - [SMALL_STATE(3136)] = 136696, - [SMALL_STATE(3137)] = 136712, - [SMALL_STATE(3138)] = 136732, - [SMALL_STATE(3139)] = 136752, - [SMALL_STATE(3140)] = 136772, - [SMALL_STATE(3141)] = 136792, - [SMALL_STATE(3142)] = 136812, - [SMALL_STATE(3143)] = 136826, - [SMALL_STATE(3144)] = 136846, - [SMALL_STATE(3145)] = 136860, - [SMALL_STATE(3146)] = 136880, - [SMALL_STATE(3147)] = 136894, - [SMALL_STATE(3148)] = 136910, - [SMALL_STATE(3149)] = 136930, - [SMALL_STATE(3150)] = 136946, - [SMALL_STATE(3151)] = 136960, - [SMALL_STATE(3152)] = 136974, - [SMALL_STATE(3153)] = 136994, - [SMALL_STATE(3154)] = 137008, - [SMALL_STATE(3155)] = 137028, - [SMALL_STATE(3156)] = 137042, - [SMALL_STATE(3157)] = 137064, - [SMALL_STATE(3158)] = 137084, - [SMALL_STATE(3159)] = 137106, - [SMALL_STATE(3160)] = 137122, - [SMALL_STATE(3161)] = 137136, - [SMALL_STATE(3162)] = 137156, - [SMALL_STATE(3163)] = 137170, - [SMALL_STATE(3164)] = 137190, - [SMALL_STATE(3165)] = 137212, - [SMALL_STATE(3166)] = 137228, - [SMALL_STATE(3167)] = 137250, - [SMALL_STATE(3168)] = 137264, - [SMALL_STATE(3169)] = 137286, - [SMALL_STATE(3170)] = 137306, - [SMALL_STATE(3171)] = 137326, - [SMALL_STATE(3172)] = 137348, - [SMALL_STATE(3173)] = 137370, - [SMALL_STATE(3174)] = 137384, - [SMALL_STATE(3175)] = 137404, - [SMALL_STATE(3176)] = 137426, - [SMALL_STATE(3177)] = 137440, - [SMALL_STATE(3178)] = 137460, - [SMALL_STATE(3179)] = 137482, - [SMALL_STATE(3180)] = 137504, - [SMALL_STATE(3181)] = 137518, - [SMALL_STATE(3182)] = 137538, - [SMALL_STATE(3183)] = 137554, - [SMALL_STATE(3184)] = 137574, - [SMALL_STATE(3185)] = 137590, - [SMALL_STATE(3186)] = 137608, - [SMALL_STATE(3187)] = 137624, - [SMALL_STATE(3188)] = 137638, - [SMALL_STATE(3189)] = 137654, - [SMALL_STATE(3190)] = 137668, - [SMALL_STATE(3191)] = 137684, - [SMALL_STATE(3192)] = 137706, - [SMALL_STATE(3193)] = 137722, - [SMALL_STATE(3194)] = 137742, - [SMALL_STATE(3195)] = 137758, - [SMALL_STATE(3196)] = 137772, - [SMALL_STATE(3197)] = 137794, - [SMALL_STATE(3198)] = 137816, - [SMALL_STATE(3199)] = 137830, - [SMALL_STATE(3200)] = 137850, - [SMALL_STATE(3201)] = 137872, - [SMALL_STATE(3202)] = 137894, - [SMALL_STATE(3203)] = 137916, - [SMALL_STATE(3204)] = 137930, - [SMALL_STATE(3205)] = 137946, - [SMALL_STATE(3206)] = 137960, - [SMALL_STATE(3207)] = 137976, - [SMALL_STATE(3208)] = 137992, - [SMALL_STATE(3209)] = 138014, - [SMALL_STATE(3210)] = 138036, - [SMALL_STATE(3211)] = 138056, - [SMALL_STATE(3212)] = 138076, - [SMALL_STATE(3213)] = 138096, - [SMALL_STATE(3214)] = 138118, - [SMALL_STATE(3215)] = 138134, - [SMALL_STATE(3216)] = 138156, - [SMALL_STATE(3217)] = 138170, - [SMALL_STATE(3218)] = 138186, - [SMALL_STATE(3219)] = 138208, - [SMALL_STATE(3220)] = 138230, - [SMALL_STATE(3221)] = 138246, - [SMALL_STATE(3222)] = 138262, - [SMALL_STATE(3223)] = 138278, - [SMALL_STATE(3224)] = 138294, - [SMALL_STATE(3225)] = 138310, - [SMALL_STATE(3226)] = 138326, - [SMALL_STATE(3227)] = 138342, - [SMALL_STATE(3228)] = 138358, - [SMALL_STATE(3229)] = 138374, - [SMALL_STATE(3230)] = 138390, - [SMALL_STATE(3231)] = 138406, - [SMALL_STATE(3232)] = 138428, - [SMALL_STATE(3233)] = 138442, - [SMALL_STATE(3234)] = 138460, - [SMALL_STATE(3235)] = 138476, - [SMALL_STATE(3236)] = 138492, - [SMALL_STATE(3237)] = 138512, - [SMALL_STATE(3238)] = 138534, - [SMALL_STATE(3239)] = 138556, - [SMALL_STATE(3240)] = 138578, - [SMALL_STATE(3241)] = 138594, - [SMALL_STATE(3242)] = 138608, - [SMALL_STATE(3243)] = 138624, - [SMALL_STATE(3244)] = 138640, - [SMALL_STATE(3245)] = 138656, - [SMALL_STATE(3246)] = 138672, - [SMALL_STATE(3247)] = 138694, - [SMALL_STATE(3248)] = 138710, - [SMALL_STATE(3249)] = 138730, - [SMALL_STATE(3250)] = 138746, - [SMALL_STATE(3251)] = 138762, - [SMALL_STATE(3252)] = 138778, - [SMALL_STATE(3253)] = 138798, - [SMALL_STATE(3254)] = 138820, - [SMALL_STATE(3255)] = 138836, - [SMALL_STATE(3256)] = 138858, - [SMALL_STATE(3257)] = 138874, - [SMALL_STATE(3258)] = 138890, - [SMALL_STATE(3259)] = 138906, - [SMALL_STATE(3260)] = 138922, - [SMALL_STATE(3261)] = 138938, - [SMALL_STATE(3262)] = 138952, - [SMALL_STATE(3263)] = 138968, - [SMALL_STATE(3264)] = 138984, - [SMALL_STATE(3265)] = 139000, - [SMALL_STATE(3266)] = 139016, - [SMALL_STATE(3267)] = 139032, - [SMALL_STATE(3268)] = 139054, - [SMALL_STATE(3269)] = 139070, - [SMALL_STATE(3270)] = 139084, - [SMALL_STATE(3271)] = 139100, - [SMALL_STATE(3272)] = 139116, - [SMALL_STATE(3273)] = 139138, - [SMALL_STATE(3274)] = 139154, - [SMALL_STATE(3275)] = 139176, - [SMALL_STATE(3276)] = 139192, - [SMALL_STATE(3277)] = 139206, - [SMALL_STATE(3278)] = 139228, - [SMALL_STATE(3279)] = 139244, - [SMALL_STATE(3280)] = 139266, - [SMALL_STATE(3281)] = 139286, - [SMALL_STATE(3282)] = 139308, - [SMALL_STATE(3283)] = 139330, - [SMALL_STATE(3284)] = 139352, - [SMALL_STATE(3285)] = 139372, - [SMALL_STATE(3286)] = 139388, - [SMALL_STATE(3287)] = 139404, - [SMALL_STATE(3288)] = 139426, - [SMALL_STATE(3289)] = 139442, - [SMALL_STATE(3290)] = 139458, - [SMALL_STATE(3291)] = 139480, - [SMALL_STATE(3292)] = 139496, - [SMALL_STATE(3293)] = 139512, - [SMALL_STATE(3294)] = 139528, - [SMALL_STATE(3295)] = 139542, - [SMALL_STATE(3296)] = 139558, - [SMALL_STATE(3297)] = 139574, - [SMALL_STATE(3298)] = 139596, - [SMALL_STATE(3299)] = 139616, - [SMALL_STATE(3300)] = 139632, - [SMALL_STATE(3301)] = 139648, - [SMALL_STATE(3302)] = 139664, - [SMALL_STATE(3303)] = 139684, - [SMALL_STATE(3304)] = 139704, - [SMALL_STATE(3305)] = 139720, - [SMALL_STATE(3306)] = 139734, - [SMALL_STATE(3307)] = 139748, - [SMALL_STATE(3308)] = 139763, - [SMALL_STATE(3309)] = 139778, - [SMALL_STATE(3310)] = 139797, - [SMALL_STATE(3311)] = 139812, - [SMALL_STATE(3312)] = 139831, - [SMALL_STATE(3313)] = 139846, - [SMALL_STATE(3314)] = 139865, - [SMALL_STATE(3315)] = 139880, - [SMALL_STATE(3316)] = 139895, - [SMALL_STATE(3317)] = 139910, - [SMALL_STATE(3318)] = 139925, - [SMALL_STATE(3319)] = 139940, - [SMALL_STATE(3320)] = 139957, - [SMALL_STATE(3321)] = 139972, - [SMALL_STATE(3322)] = 139987, - [SMALL_STATE(3323)] = 140002, - [SMALL_STATE(3324)] = 140017, - [SMALL_STATE(3325)] = 140032, - [SMALL_STATE(3326)] = 140049, - [SMALL_STATE(3327)] = 140064, - [SMALL_STATE(3328)] = 140083, - [SMALL_STATE(3329)] = 140098, - [SMALL_STATE(3330)] = 140113, - [SMALL_STATE(3331)] = 140128, - [SMALL_STATE(3332)] = 140147, - [SMALL_STATE(3333)] = 140162, - [SMALL_STATE(3334)] = 140177, - [SMALL_STATE(3335)] = 140192, - [SMALL_STATE(3336)] = 140207, - [SMALL_STATE(3337)] = 140222, - [SMALL_STATE(3338)] = 140237, - [SMALL_STATE(3339)] = 140252, - [SMALL_STATE(3340)] = 140267, - [SMALL_STATE(3341)] = 140282, - [SMALL_STATE(3342)] = 140297, - [SMALL_STATE(3343)] = 140314, - [SMALL_STATE(3344)] = 140333, - [SMALL_STATE(3345)] = 140348, - [SMALL_STATE(3346)] = 140365, - [SMALL_STATE(3347)] = 140384, - [SMALL_STATE(3348)] = 140399, - [SMALL_STATE(3349)] = 140414, - [SMALL_STATE(3350)] = 140429, - [SMALL_STATE(3351)] = 140448, - [SMALL_STATE(3352)] = 140463, - [SMALL_STATE(3353)] = 140480, - [SMALL_STATE(3354)] = 140495, - [SMALL_STATE(3355)] = 140514, - [SMALL_STATE(3356)] = 140531, - [SMALL_STATE(3357)] = 140548, - [SMALL_STATE(3358)] = 140567, - [SMALL_STATE(3359)] = 140582, - [SMALL_STATE(3360)] = 140597, - [SMALL_STATE(3361)] = 140612, - [SMALL_STATE(3362)] = 140631, - [SMALL_STATE(3363)] = 140650, - [SMALL_STATE(3364)] = 140665, - [SMALL_STATE(3365)] = 140684, - [SMALL_STATE(3366)] = 140701, - [SMALL_STATE(3367)] = 140720, - [SMALL_STATE(3368)] = 140739, - [SMALL_STATE(3369)] = 140756, - [SMALL_STATE(3370)] = 140773, - [SMALL_STATE(3371)] = 140788, - [SMALL_STATE(3372)] = 140807, - [SMALL_STATE(3373)] = 140822, - [SMALL_STATE(3374)] = 140841, - [SMALL_STATE(3375)] = 140858, - [SMALL_STATE(3376)] = 140877, - [SMALL_STATE(3377)] = 140896, - [SMALL_STATE(3378)] = 140915, - [SMALL_STATE(3379)] = 140934, - [SMALL_STATE(3380)] = 140951, - [SMALL_STATE(3381)] = 140968, - [SMALL_STATE(3382)] = 140983, - [SMALL_STATE(3383)] = 140998, - [SMALL_STATE(3384)] = 141015, - [SMALL_STATE(3385)] = 141032, - [SMALL_STATE(3386)] = 141049, - [SMALL_STATE(3387)] = 141066, - [SMALL_STATE(3388)] = 141083, - [SMALL_STATE(3389)] = 141102, - [SMALL_STATE(3390)] = 141119, - [SMALL_STATE(3391)] = 141136, - [SMALL_STATE(3392)] = 141153, - [SMALL_STATE(3393)] = 141172, - [SMALL_STATE(3394)] = 141189, - [SMALL_STATE(3395)] = 141206, - [SMALL_STATE(3396)] = 141223, - [SMALL_STATE(3397)] = 141242, - [SMALL_STATE(3398)] = 141261, - [SMALL_STATE(3399)] = 141278, - [SMALL_STATE(3400)] = 141297, - [SMALL_STATE(3401)] = 141314, - [SMALL_STATE(3402)] = 141331, - [SMALL_STATE(3403)] = 141350, - [SMALL_STATE(3404)] = 141369, - [SMALL_STATE(3405)] = 141386, - [SMALL_STATE(3406)] = 141403, - [SMALL_STATE(3407)] = 141420, - [SMALL_STATE(3408)] = 141437, - [SMALL_STATE(3409)] = 141454, - [SMALL_STATE(3410)] = 141471, - [SMALL_STATE(3411)] = 141490, - [SMALL_STATE(3412)] = 141507, - [SMALL_STATE(3413)] = 141524, - [SMALL_STATE(3414)] = 141541, - [SMALL_STATE(3415)] = 141558, - [SMALL_STATE(3416)] = 141575, - [SMALL_STATE(3417)] = 141594, - [SMALL_STATE(3418)] = 141611, - [SMALL_STATE(3419)] = 141628, - [SMALL_STATE(3420)] = 141643, - [SMALL_STATE(3421)] = 141660, - [SMALL_STATE(3422)] = 141677, - [SMALL_STATE(3423)] = 141694, - [SMALL_STATE(3424)] = 141711, - [SMALL_STATE(3425)] = 141728, - [SMALL_STATE(3426)] = 141743, - [SMALL_STATE(3427)] = 141760, - [SMALL_STATE(3428)] = 141779, - [SMALL_STATE(3429)] = 141796, - [SMALL_STATE(3430)] = 141815, - [SMALL_STATE(3431)] = 141832, - [SMALL_STATE(3432)] = 141851, - [SMALL_STATE(3433)] = 141868, - [SMALL_STATE(3434)] = 141885, - [SMALL_STATE(3435)] = 141900, - [SMALL_STATE(3436)] = 141917, - [SMALL_STATE(3437)] = 141934, - [SMALL_STATE(3438)] = 141949, - [SMALL_STATE(3439)] = 141966, - [SMALL_STATE(3440)] = 141981, - [SMALL_STATE(3441)] = 141998, - [SMALL_STATE(3442)] = 142015, - [SMALL_STATE(3443)] = 142034, - [SMALL_STATE(3444)] = 142051, - [SMALL_STATE(3445)] = 142068, - [SMALL_STATE(3446)] = 142083, - [SMALL_STATE(3447)] = 142102, - [SMALL_STATE(3448)] = 142117, - [SMALL_STATE(3449)] = 142132, - [SMALL_STATE(3450)] = 142147, - [SMALL_STATE(3451)] = 142164, - [SMALL_STATE(3452)] = 142183, - [SMALL_STATE(3453)] = 142198, - [SMALL_STATE(3454)] = 142215, - [SMALL_STATE(3455)] = 142232, - [SMALL_STATE(3456)] = 142247, - [SMALL_STATE(3457)] = 142264, - [SMALL_STATE(3458)] = 142281, - [SMALL_STATE(3459)] = 142298, - [SMALL_STATE(3460)] = 142313, - [SMALL_STATE(3461)] = 142330, - [SMALL_STATE(3462)] = 142349, - [SMALL_STATE(3463)] = 142366, - [SMALL_STATE(3464)] = 142383, - [SMALL_STATE(3465)] = 142400, - [SMALL_STATE(3466)] = 142419, - [SMALL_STATE(3467)] = 142436, - [SMALL_STATE(3468)] = 142455, - [SMALL_STATE(3469)] = 142474, - [SMALL_STATE(3470)] = 142489, - [SMALL_STATE(3471)] = 142506, - [SMALL_STATE(3472)] = 142521, - [SMALL_STATE(3473)] = 142538, - [SMALL_STATE(3474)] = 142553, - [SMALL_STATE(3475)] = 142568, - [SMALL_STATE(3476)] = 142587, - [SMALL_STATE(3477)] = 142606, - [SMALL_STATE(3478)] = 142621, - [SMALL_STATE(3479)] = 142636, - [SMALL_STATE(3480)] = 142651, - [SMALL_STATE(3481)] = 142668, - [SMALL_STATE(3482)] = 142683, - [SMALL_STATE(3483)] = 142698, - [SMALL_STATE(3484)] = 142713, - [SMALL_STATE(3485)] = 142730, - [SMALL_STATE(3486)] = 142749, - [SMALL_STATE(3487)] = 142766, - [SMALL_STATE(3488)] = 142785, - [SMALL_STATE(3489)] = 142802, - [SMALL_STATE(3490)] = 142817, - [SMALL_STATE(3491)] = 142836, - [SMALL_STATE(3492)] = 142853, - [SMALL_STATE(3493)] = 142872, - [SMALL_STATE(3494)] = 142887, - [SMALL_STATE(3495)] = 142906, - [SMALL_STATE(3496)] = 142925, - [SMALL_STATE(3497)] = 142942, - [SMALL_STATE(3498)] = 142961, - [SMALL_STATE(3499)] = 142978, - [SMALL_STATE(3500)] = 142997, - [SMALL_STATE(3501)] = 143012, - [SMALL_STATE(3502)] = 143027, - [SMALL_STATE(3503)] = 143042, - [SMALL_STATE(3504)] = 143057, - [SMALL_STATE(3505)] = 143072, - [SMALL_STATE(3506)] = 143087, - [SMALL_STATE(3507)] = 143102, - [SMALL_STATE(3508)] = 143121, - [SMALL_STATE(3509)] = 143136, - [SMALL_STATE(3510)] = 143155, - [SMALL_STATE(3511)] = 143170, - [SMALL_STATE(3512)] = 143185, - [SMALL_STATE(3513)] = 143200, - [SMALL_STATE(3514)] = 143219, - [SMALL_STATE(3515)] = 143236, - [SMALL_STATE(3516)] = 143251, - [SMALL_STATE(3517)] = 143266, - [SMALL_STATE(3518)] = 143281, - [SMALL_STATE(3519)] = 143298, - [SMALL_STATE(3520)] = 143313, - [SMALL_STATE(3521)] = 143328, - [SMALL_STATE(3522)] = 143343, - [SMALL_STATE(3523)] = 143360, - [SMALL_STATE(3524)] = 143375, - [SMALL_STATE(3525)] = 143390, - [SMALL_STATE(3526)] = 143407, - [SMALL_STATE(3527)] = 143426, - [SMALL_STATE(3528)] = 143441, - [SMALL_STATE(3529)] = 143460, - [SMALL_STATE(3530)] = 143479, - [SMALL_STATE(3531)] = 143496, - [SMALL_STATE(3532)] = 143513, - [SMALL_STATE(3533)] = 143532, - [SMALL_STATE(3534)] = 143551, - [SMALL_STATE(3535)] = 143566, - [SMALL_STATE(3536)] = 143581, - [SMALL_STATE(3537)] = 143596, - [SMALL_STATE(3538)] = 143615, - [SMALL_STATE(3539)] = 143632, - [SMALL_STATE(3540)] = 143647, - [SMALL_STATE(3541)] = 143666, - [SMALL_STATE(3542)] = 143681, - [SMALL_STATE(3543)] = 143696, - [SMALL_STATE(3544)] = 143711, - [SMALL_STATE(3545)] = 143730, - [SMALL_STATE(3546)] = 143749, - [SMALL_STATE(3547)] = 143764, - [SMALL_STATE(3548)] = 143783, - [SMALL_STATE(3549)] = 143800, - [SMALL_STATE(3550)] = 143815, - [SMALL_STATE(3551)] = 143831, - [SMALL_STATE(3552)] = 143845, - [SMALL_STATE(3553)] = 143859, - [SMALL_STATE(3554)] = 143873, - [SMALL_STATE(3555)] = 143887, - [SMALL_STATE(3556)] = 143903, - [SMALL_STATE(3557)] = 143919, - [SMALL_STATE(3558)] = 143935, - [SMALL_STATE(3559)] = 143951, - [SMALL_STATE(3560)] = 143967, - [SMALL_STATE(3561)] = 143981, - [SMALL_STATE(3562)] = 143997, - [SMALL_STATE(3563)] = 144011, - [SMALL_STATE(3564)] = 144027, - [SMALL_STATE(3565)] = 144043, - [SMALL_STATE(3566)] = 144059, - [SMALL_STATE(3567)] = 144075, - [SMALL_STATE(3568)] = 144091, - [SMALL_STATE(3569)] = 144107, - [SMALL_STATE(3570)] = 144123, - [SMALL_STATE(3571)] = 144139, - [SMALL_STATE(3572)] = 144155, - [SMALL_STATE(3573)] = 144169, - [SMALL_STATE(3574)] = 144185, - [SMALL_STATE(3575)] = 144199, - [SMALL_STATE(3576)] = 144213, - [SMALL_STATE(3577)] = 144229, - [SMALL_STATE(3578)] = 144245, - [SMALL_STATE(3579)] = 144261, - [SMALL_STATE(3580)] = 144277, - [SMALL_STATE(3581)] = 144293, - [SMALL_STATE(3582)] = 144307, - [SMALL_STATE(3583)] = 144321, - [SMALL_STATE(3584)] = 144337, - [SMALL_STATE(3585)] = 144349, - [SMALL_STATE(3586)] = 144363, - [SMALL_STATE(3587)] = 144379, - [SMALL_STATE(3588)] = 144393, - [SMALL_STATE(3589)] = 144407, - [SMALL_STATE(3590)] = 144421, - [SMALL_STATE(3591)] = 144437, - [SMALL_STATE(3592)] = 144453, - [SMALL_STATE(3593)] = 144467, - [SMALL_STATE(3594)] = 144483, - [SMALL_STATE(3595)] = 144499, - [SMALL_STATE(3596)] = 144515, - [SMALL_STATE(3597)] = 144531, - [SMALL_STATE(3598)] = 144545, - [SMALL_STATE(3599)] = 144561, - [SMALL_STATE(3600)] = 144577, - [SMALL_STATE(3601)] = 144591, - [SMALL_STATE(3602)] = 144605, - [SMALL_STATE(3603)] = 144621, - [SMALL_STATE(3604)] = 144637, - [SMALL_STATE(3605)] = 144651, - [SMALL_STATE(3606)] = 144667, - [SMALL_STATE(3607)] = 144683, - [SMALL_STATE(3608)] = 144699, - [SMALL_STATE(3609)] = 144715, - [SMALL_STATE(3610)] = 144731, - [SMALL_STATE(3611)] = 144747, - [SMALL_STATE(3612)] = 144761, - [SMALL_STATE(3613)] = 144777, - [SMALL_STATE(3614)] = 144793, - [SMALL_STATE(3615)] = 144807, - [SMALL_STATE(3616)] = 144823, - [SMALL_STATE(3617)] = 144839, - [SMALL_STATE(3618)] = 144855, - [SMALL_STATE(3619)] = 144871, - [SMALL_STATE(3620)] = 144885, - [SMALL_STATE(3621)] = 144901, - [SMALL_STATE(3622)] = 144915, - [SMALL_STATE(3623)] = 144931, - [SMALL_STATE(3624)] = 144945, - [SMALL_STATE(3625)] = 144959, - [SMALL_STATE(3626)] = 144975, - [SMALL_STATE(3627)] = 144989, - [SMALL_STATE(3628)] = 145005, - [SMALL_STATE(3629)] = 145019, - [SMALL_STATE(3630)] = 145035, - [SMALL_STATE(3631)] = 145049, - [SMALL_STATE(3632)] = 145065, - [SMALL_STATE(3633)] = 145079, - [SMALL_STATE(3634)] = 145093, - [SMALL_STATE(3635)] = 145109, - [SMALL_STATE(3636)] = 145123, - [SMALL_STATE(3637)] = 145139, - [SMALL_STATE(3638)] = 145150, - [SMALL_STATE(3639)] = 145163, - [SMALL_STATE(3640)] = 145176, - [SMALL_STATE(3641)] = 145189, - [SMALL_STATE(3642)] = 145202, - [SMALL_STATE(3643)] = 145215, - [SMALL_STATE(3644)] = 145228, - [SMALL_STATE(3645)] = 145241, - [SMALL_STATE(3646)] = 145254, - [SMALL_STATE(3647)] = 145267, - [SMALL_STATE(3648)] = 145280, - [SMALL_STATE(3649)] = 145293, - [SMALL_STATE(3650)] = 145306, - [SMALL_STATE(3651)] = 145319, - [SMALL_STATE(3652)] = 145332, - [SMALL_STATE(3653)] = 145345, - [SMALL_STATE(3654)] = 145358, - [SMALL_STATE(3655)] = 145371, - [SMALL_STATE(3656)] = 145384, - [SMALL_STATE(3657)] = 145397, - [SMALL_STATE(3658)] = 145410, - [SMALL_STATE(3659)] = 145423, - [SMALL_STATE(3660)] = 145436, - [SMALL_STATE(3661)] = 145449, - [SMALL_STATE(3662)] = 145462, - [SMALL_STATE(3663)] = 145475, - [SMALL_STATE(3664)] = 145488, - [SMALL_STATE(3665)] = 145501, - [SMALL_STATE(3666)] = 145512, - [SMALL_STATE(3667)] = 145523, - [SMALL_STATE(3668)] = 145536, - [SMALL_STATE(3669)] = 145547, - [SMALL_STATE(3670)] = 145558, - [SMALL_STATE(3671)] = 145571, - [SMALL_STATE(3672)] = 145584, - [SMALL_STATE(3673)] = 145597, - [SMALL_STATE(3674)] = 145608, - [SMALL_STATE(3675)] = 145621, - [SMALL_STATE(3676)] = 145634, - [SMALL_STATE(3677)] = 145647, - [SMALL_STATE(3678)] = 145660, - [SMALL_STATE(3679)] = 145673, - [SMALL_STATE(3680)] = 145686, - [SMALL_STATE(3681)] = 145699, - [SMALL_STATE(3682)] = 145712, - [SMALL_STATE(3683)] = 145725, - [SMALL_STATE(3684)] = 145738, - [SMALL_STATE(3685)] = 145751, - [SMALL_STATE(3686)] = 145764, - [SMALL_STATE(3687)] = 145777, - [SMALL_STATE(3688)] = 145790, - [SMALL_STATE(3689)] = 145800, - [SMALL_STATE(3690)] = 145810, - [SMALL_STATE(3691)] = 145820, - [SMALL_STATE(3692)] = 145830, - [SMALL_STATE(3693)] = 145840, - [SMALL_STATE(3694)] = 145850, - [SMALL_STATE(3695)] = 145860, - [SMALL_STATE(3696)] = 145870, - [SMALL_STATE(3697)] = 145880, - [SMALL_STATE(3698)] = 145890, - [SMALL_STATE(3699)] = 145900, - [SMALL_STATE(3700)] = 145910, - [SMALL_STATE(3701)] = 145920, - [SMALL_STATE(3702)] = 145930, - [SMALL_STATE(3703)] = 145940, - [SMALL_STATE(3704)] = 145950, - [SMALL_STATE(3705)] = 145960, - [SMALL_STATE(3706)] = 145970, - [SMALL_STATE(3707)] = 145980, - [SMALL_STATE(3708)] = 145990, - [SMALL_STATE(3709)] = 146000, - [SMALL_STATE(3710)] = 146010, - [SMALL_STATE(3711)] = 146020, - [SMALL_STATE(3712)] = 146030, - [SMALL_STATE(3713)] = 146040, - [SMALL_STATE(3714)] = 146050, - [SMALL_STATE(3715)] = 146060, - [SMALL_STATE(3716)] = 146070, - [SMALL_STATE(3717)] = 146080, - [SMALL_STATE(3718)] = 146090, - [SMALL_STATE(3719)] = 146100, - [SMALL_STATE(3720)] = 146110, - [SMALL_STATE(3721)] = 146120, - [SMALL_STATE(3722)] = 146130, - [SMALL_STATE(3723)] = 146140, - [SMALL_STATE(3724)] = 146150, - [SMALL_STATE(3725)] = 146160, - [SMALL_STATE(3726)] = 146170, - [SMALL_STATE(3727)] = 146180, - [SMALL_STATE(3728)] = 146190, - [SMALL_STATE(3729)] = 146200, - [SMALL_STATE(3730)] = 146210, - [SMALL_STATE(3731)] = 146220, - [SMALL_STATE(3732)] = 146230, - [SMALL_STATE(3733)] = 146240, - [SMALL_STATE(3734)] = 146250, - [SMALL_STATE(3735)] = 146260, - [SMALL_STATE(3736)] = 146270, - [SMALL_STATE(3737)] = 146280, - [SMALL_STATE(3738)] = 146290, - [SMALL_STATE(3739)] = 146300, - [SMALL_STATE(3740)] = 146310, - [SMALL_STATE(3741)] = 146320, - [SMALL_STATE(3742)] = 146330, - [SMALL_STATE(3743)] = 146340, - [SMALL_STATE(3744)] = 146350, - [SMALL_STATE(3745)] = 146360, - [SMALL_STATE(3746)] = 146370, - [SMALL_STATE(3747)] = 146380, - [SMALL_STATE(3748)] = 146390, - [SMALL_STATE(3749)] = 146400, - [SMALL_STATE(3750)] = 146410, - [SMALL_STATE(3751)] = 146420, - [SMALL_STATE(3752)] = 146430, - [SMALL_STATE(3753)] = 146440, - [SMALL_STATE(3754)] = 146450, - [SMALL_STATE(3755)] = 146460, - [SMALL_STATE(3756)] = 146470, - [SMALL_STATE(3757)] = 146480, - [SMALL_STATE(3758)] = 146490, - [SMALL_STATE(3759)] = 146500, - [SMALL_STATE(3760)] = 146510, - [SMALL_STATE(3761)] = 146520, - [SMALL_STATE(3762)] = 146530, - [SMALL_STATE(3763)] = 146540, - [SMALL_STATE(3764)] = 146550, - [SMALL_STATE(3765)] = 146560, - [SMALL_STATE(3766)] = 146570, - [SMALL_STATE(3767)] = 146580, - [SMALL_STATE(3768)] = 146590, - [SMALL_STATE(3769)] = 146600, - [SMALL_STATE(3770)] = 146610, - [SMALL_STATE(3771)] = 146620, - [SMALL_STATE(3772)] = 146630, - [SMALL_STATE(3773)] = 146640, - [SMALL_STATE(3774)] = 146650, - [SMALL_STATE(3775)] = 146660, - [SMALL_STATE(3776)] = 146670, - [SMALL_STATE(3777)] = 146680, - [SMALL_STATE(3778)] = 146690, - [SMALL_STATE(3779)] = 146700, - [SMALL_STATE(3780)] = 146710, - [SMALL_STATE(3781)] = 146720, - [SMALL_STATE(3782)] = 146730, - [SMALL_STATE(3783)] = 146740, - [SMALL_STATE(3784)] = 146750, - [SMALL_STATE(3785)] = 146760, - [SMALL_STATE(3786)] = 146770, - [SMALL_STATE(3787)] = 146780, - [SMALL_STATE(3788)] = 146790, - [SMALL_STATE(3789)] = 146800, - [SMALL_STATE(3790)] = 146810, - [SMALL_STATE(3791)] = 146820, - [SMALL_STATE(3792)] = 146830, - [SMALL_STATE(3793)] = 146840, - [SMALL_STATE(3794)] = 146850, - [SMALL_STATE(3795)] = 146860, - [SMALL_STATE(3796)] = 146870, - [SMALL_STATE(3797)] = 146880, - [SMALL_STATE(3798)] = 146890, - [SMALL_STATE(3799)] = 146900, - [SMALL_STATE(3800)] = 146910, - [SMALL_STATE(3801)] = 146920, - [SMALL_STATE(3802)] = 146930, - [SMALL_STATE(3803)] = 146940, - [SMALL_STATE(3804)] = 146950, - [SMALL_STATE(3805)] = 146960, - [SMALL_STATE(3806)] = 146970, - [SMALL_STATE(3807)] = 146980, - [SMALL_STATE(3808)] = 146990, - [SMALL_STATE(3809)] = 147000, - [SMALL_STATE(3810)] = 147010, - [SMALL_STATE(3811)] = 147020, - [SMALL_STATE(3812)] = 147030, - [SMALL_STATE(3813)] = 147040, - [SMALL_STATE(3814)] = 147050, - [SMALL_STATE(3815)] = 147060, - [SMALL_STATE(3816)] = 147070, - [SMALL_STATE(3817)] = 147080, - [SMALL_STATE(3818)] = 147090, - [SMALL_STATE(3819)] = 147100, - [SMALL_STATE(3820)] = 147110, - [SMALL_STATE(3821)] = 147120, - [SMALL_STATE(3822)] = 147130, - [SMALL_STATE(3823)] = 147140, - [SMALL_STATE(3824)] = 147150, - [SMALL_STATE(3825)] = 147160, - [SMALL_STATE(3826)] = 147170, - [SMALL_STATE(3827)] = 147180, - [SMALL_STATE(3828)] = 147190, - [SMALL_STATE(3829)] = 147200, - [SMALL_STATE(3830)] = 147210, - [SMALL_STATE(3831)] = 147220, - [SMALL_STATE(3832)] = 147230, - [SMALL_STATE(3833)] = 147240, - [SMALL_STATE(3834)] = 147250, - [SMALL_STATE(3835)] = 147260, - [SMALL_STATE(3836)] = 147270, - [SMALL_STATE(3837)] = 147280, - [SMALL_STATE(3838)] = 147290, - [SMALL_STATE(3839)] = 147300, - [SMALL_STATE(3840)] = 147310, - [SMALL_STATE(3841)] = 147320, - [SMALL_STATE(3842)] = 147330, - [SMALL_STATE(3843)] = 147340, - [SMALL_STATE(3844)] = 147350, - [SMALL_STATE(3845)] = 147360, - [SMALL_STATE(3846)] = 147370, - [SMALL_STATE(3847)] = 147380, - [SMALL_STATE(3848)] = 147390, - [SMALL_STATE(3849)] = 147400, - [SMALL_STATE(3850)] = 147410, - [SMALL_STATE(3851)] = 147420, - [SMALL_STATE(3852)] = 147430, - [SMALL_STATE(3853)] = 147440, - [SMALL_STATE(3854)] = 147450, - [SMALL_STATE(3855)] = 147460, - [SMALL_STATE(3856)] = 147470, - [SMALL_STATE(3857)] = 147480, - [SMALL_STATE(3858)] = 147490, - [SMALL_STATE(3859)] = 147500, - [SMALL_STATE(3860)] = 147510, - [SMALL_STATE(3861)] = 147520, - [SMALL_STATE(3862)] = 147530, - [SMALL_STATE(3863)] = 147540, - [SMALL_STATE(3864)] = 147550, - [SMALL_STATE(3865)] = 147560, - [SMALL_STATE(3866)] = 147570, - [SMALL_STATE(3867)] = 147580, - [SMALL_STATE(3868)] = 147590, - [SMALL_STATE(3869)] = 147600, + [SMALL_STATE(2900)] = 131297, + [SMALL_STATE(2901)] = 131339, + [SMALL_STATE(2902)] = 131381, + [SMALL_STATE(2903)] = 131423, + [SMALL_STATE(2904)] = 131465, + [SMALL_STATE(2905)] = 131521, + [SMALL_STATE(2906)] = 131591, + [SMALL_STATE(2907)] = 131633, + [SMALL_STATE(2908)] = 131675, + [SMALL_STATE(2909)] = 131717, + [SMALL_STATE(2910)] = 131759, + [SMALL_STATE(2911)] = 131801, + [SMALL_STATE(2912)] = 131861, + [SMALL_STATE(2913)] = 131903, + [SMALL_STATE(2914)] = 131945, + [SMALL_STATE(2915)] = 132015, + [SMALL_STATE(2916)] = 132057, + [SMALL_STATE(2917)] = 132099, + [SMALL_STATE(2918)] = 132141, + [SMALL_STATE(2919)] = 132195, + [SMALL_STATE(2920)] = 132237, + [SMALL_STATE(2921)] = 132279, + [SMALL_STATE(2922)] = 132321, + [SMALL_STATE(2923)] = 132371, + [SMALL_STATE(2924)] = 132414, + [SMALL_STATE(2925)] = 132487, + [SMALL_STATE(2926)] = 132560, + [SMALL_STATE(2927)] = 132633, + [SMALL_STATE(2928)] = 132704, + [SMALL_STATE(2929)] = 132777, + [SMALL_STATE(2930)] = 132848, + [SMALL_STATE(2931)] = 132921, + [SMALL_STATE(2932)] = 132994, + [SMALL_STATE(2933)] = 133065, + [SMALL_STATE(2934)] = 133135, + [SMALL_STATE(2935)] = 133175, + [SMALL_STATE(2936)] = 133215, + [SMALL_STATE(2937)] = 133285, + [SMALL_STATE(2938)] = 133311, + [SMALL_STATE(2939)] = 133357, + [SMALL_STATE(2940)] = 133383, + [SMALL_STATE(2941)] = 133423, + [SMALL_STATE(2942)] = 133449, + [SMALL_STATE(2943)] = 133486, + [SMALL_STATE(2944)] = 133523, + [SMALL_STATE(2945)] = 133569, + [SMALL_STATE(2946)] = 133615, + [SMALL_STATE(2947)] = 133661, + [SMALL_STATE(2948)] = 133707, + [SMALL_STATE(2949)] = 133741, + [SMALL_STATE(2950)] = 133787, + [SMALL_STATE(2951)] = 133833, + [SMALL_STATE(2952)] = 133879, + [SMALL_STATE(2953)] = 133925, + [SMALL_STATE(2954)] = 133971, + [SMALL_STATE(2955)] = 134017, + [SMALL_STATE(2956)] = 134063, + [SMALL_STATE(2957)] = 134109, + [SMALL_STATE(2958)] = 134155, + [SMALL_STATE(2959)] = 134189, + [SMALL_STATE(2960)] = 134235, + [SMALL_STATE(2961)] = 134258, + [SMALL_STATE(2962)] = 134285, + [SMALL_STATE(2963)] = 134310, + [SMALL_STATE(2964)] = 134335, + [SMALL_STATE(2965)] = 134360, + [SMALL_STATE(2966)] = 134392, + [SMALL_STATE(2967)] = 134424, + [SMALL_STATE(2968)] = 134450, + [SMALL_STATE(2969)] = 134488, + [SMALL_STATE(2970)] = 134514, + [SMALL_STATE(2971)] = 134552, + [SMALL_STATE(2972)] = 134588, + [SMALL_STATE(2973)] = 134620, + [SMALL_STATE(2974)] = 134658, + [SMALL_STATE(2975)] = 134696, + [SMALL_STATE(2976)] = 134734, + [SMALL_STATE(2977)] = 134766, + [SMALL_STATE(2978)] = 134792, + [SMALL_STATE(2979)] = 134818, + [SMALL_STATE(2980)] = 134850, + [SMALL_STATE(2981)] = 134876, + [SMALL_STATE(2982)] = 134898, + [SMALL_STATE(2983)] = 134924, + [SMALL_STATE(2984)] = 134946, + [SMALL_STATE(2985)] = 134982, + [SMALL_STATE(2986)] = 135008, + [SMALL_STATE(2987)] = 135046, + [SMALL_STATE(2988)] = 135084, + [SMALL_STATE(2989)] = 135110, + [SMALL_STATE(2990)] = 135142, + [SMALL_STATE(2991)] = 135174, + [SMALL_STATE(2992)] = 135210, + [SMALL_STATE(2993)] = 135242, + [SMALL_STATE(2994)] = 135264, + [SMALL_STATE(2995)] = 135286, + [SMALL_STATE(2996)] = 135322, + [SMALL_STATE(2997)] = 135348, + [SMALL_STATE(2998)] = 135374, + [SMALL_STATE(2999)] = 135396, + [SMALL_STATE(3000)] = 135424, + [SMALL_STATE(3001)] = 135456, + [SMALL_STATE(3002)] = 135478, + [SMALL_STATE(3003)] = 135516, + [SMALL_STATE(3004)] = 135544, + [SMALL_STATE(3005)] = 135580, + [SMALL_STATE(3006)] = 135618, + [SMALL_STATE(3007)] = 135650, + [SMALL_STATE(3008)] = 135686, + [SMALL_STATE(3009)] = 135722, + [SMALL_STATE(3010)] = 135760, + [SMALL_STATE(3011)] = 135798, + [SMALL_STATE(3012)] = 135824, + [SMALL_STATE(3013)] = 135856, + [SMALL_STATE(3014)] = 135884, + [SMALL_STATE(3015)] = 135922, + [SMALL_STATE(3016)] = 135948, + [SMALL_STATE(3017)] = 135970, + [SMALL_STATE(3018)] = 136008, + [SMALL_STATE(3019)] = 136040, + [SMALL_STATE(3020)] = 136066, + [SMALL_STATE(3021)] = 136102, + [SMALL_STATE(3022)] = 136138, + [SMALL_STATE(3023)] = 136160, + [SMALL_STATE(3024)] = 136196, + [SMALL_STATE(3025)] = 136234, + [SMALL_STATE(3026)] = 136256, + [SMALL_STATE(3027)] = 136278, + [SMALL_STATE(3028)] = 136314, + [SMALL_STATE(3029)] = 136340, + [SMALL_STATE(3030)] = 136368, + [SMALL_STATE(3031)] = 136404, + [SMALL_STATE(3032)] = 136436, + [SMALL_STATE(3033)] = 136468, + [SMALL_STATE(3034)] = 136494, + [SMALL_STATE(3035)] = 136532, + [SMALL_STATE(3036)] = 136568, + [SMALL_STATE(3037)] = 136590, + [SMALL_STATE(3038)] = 136612, + [SMALL_STATE(3039)] = 136650, + [SMALL_STATE(3040)] = 136686, + [SMALL_STATE(3041)] = 136708, + [SMALL_STATE(3042)] = 136740, + [SMALL_STATE(3043)] = 136778, + [SMALL_STATE(3044)] = 136804, + [SMALL_STATE(3045)] = 136840, + [SMALL_STATE(3046)] = 136868, + [SMALL_STATE(3047)] = 136896, + [SMALL_STATE(3048)] = 136918, + [SMALL_STATE(3049)] = 136956, + [SMALL_STATE(3050)] = 136988, + [SMALL_STATE(3051)] = 137014, + [SMALL_STATE(3052)] = 137040, + [SMALL_STATE(3053)] = 137076, + [SMALL_STATE(3054)] = 137095, + [SMALL_STATE(3055)] = 137116, + [SMALL_STATE(3056)] = 137137, + [SMALL_STATE(3057)] = 137158, + [SMALL_STATE(3058)] = 137177, + [SMALL_STATE(3059)] = 137196, + [SMALL_STATE(3060)] = 137217, + [SMALL_STATE(3061)] = 137249, + [SMALL_STATE(3062)] = 137281, + [SMALL_STATE(3063)] = 137313, + [SMALL_STATE(3064)] = 137345, + [SMALL_STATE(3065)] = 137377, + [SMALL_STATE(3066)] = 137409, + [SMALL_STATE(3067)] = 137443, + [SMALL_STATE(3068)] = 137475, + [SMALL_STATE(3069)] = 137507, + [SMALL_STATE(3070)] = 137539, + [SMALL_STATE(3071)] = 137571, + [SMALL_STATE(3072)] = 137603, + [SMALL_STATE(3073)] = 137633, + [SMALL_STATE(3074)] = 137665, + [SMALL_STATE(3075)] = 137697, + [SMALL_STATE(3076)] = 137729, + [SMALL_STATE(3077)] = 137761, + [SMALL_STATE(3078)] = 137783, + [SMALL_STATE(3079)] = 137815, + [SMALL_STATE(3080)] = 137837, + [SMALL_STATE(3081)] = 137869, + [SMALL_STATE(3082)] = 137901, + [SMALL_STATE(3083)] = 137923, + [SMALL_STATE(3084)] = 137955, + [SMALL_STATE(3085)] = 137985, + [SMALL_STATE(3086)] = 138017, + [SMALL_STATE(3087)] = 138049, + [SMALL_STATE(3088)] = 138081, + [SMALL_STATE(3089)] = 138109, + [SMALL_STATE(3090)] = 138131, + [SMALL_STATE(3091)] = 138163, + [SMALL_STATE(3092)] = 138195, + [SMALL_STATE(3093)] = 138227, + [SMALL_STATE(3094)] = 138255, + [SMALL_STATE(3095)] = 138283, + [SMALL_STATE(3096)] = 138317, + [SMALL_STATE(3097)] = 138345, + [SMALL_STATE(3098)] = 138377, + [SMALL_STATE(3099)] = 138405, + [SMALL_STATE(3100)] = 138433, + [SMALL_STATE(3101)] = 138461, + [SMALL_STATE(3102)] = 138489, + [SMALL_STATE(3103)] = 138517, + [SMALL_STATE(3104)] = 138545, + [SMALL_STATE(3105)] = 138573, + [SMALL_STATE(3106)] = 138601, + [SMALL_STATE(3107)] = 138629, + [SMALL_STATE(3108)] = 138657, + [SMALL_STATE(3109)] = 138685, + [SMALL_STATE(3110)] = 138713, + [SMALL_STATE(3111)] = 138741, + [SMALL_STATE(3112)] = 138769, + [SMALL_STATE(3113)] = 138797, + [SMALL_STATE(3114)] = 138825, + [SMALL_STATE(3115)] = 138853, + [SMALL_STATE(3116)] = 138881, + [SMALL_STATE(3117)] = 138909, + [SMALL_STATE(3118)] = 138937, + [SMALL_STATE(3119)] = 138965, + [SMALL_STATE(3120)] = 138993, + [SMALL_STATE(3121)] = 139021, + [SMALL_STATE(3122)] = 139048, + [SMALL_STATE(3123)] = 139077, + [SMALL_STATE(3124)] = 139104, + [SMALL_STATE(3125)] = 139133, + [SMALL_STATE(3126)] = 139152, + [SMALL_STATE(3127)] = 139171, + [SMALL_STATE(3128)] = 139190, + [SMALL_STATE(3129)] = 139211, + [SMALL_STATE(3130)] = 139230, + [SMALL_STATE(3131)] = 139257, + [SMALL_STATE(3132)] = 139284, + [SMALL_STATE(3133)] = 139311, + [SMALL_STATE(3134)] = 139338, + [SMALL_STATE(3135)] = 139365, + [SMALL_STATE(3136)] = 139392, + [SMALL_STATE(3137)] = 139419, + [SMALL_STATE(3138)] = 139446, + [SMALL_STATE(3139)] = 139475, + [SMALL_STATE(3140)] = 139502, + [SMALL_STATE(3141)] = 139529, + [SMALL_STATE(3142)] = 139558, + [SMALL_STATE(3143)] = 139577, + [SMALL_STATE(3144)] = 139604, + [SMALL_STATE(3145)] = 139623, + [SMALL_STATE(3146)] = 139650, + [SMALL_STATE(3147)] = 139669, + [SMALL_STATE(3148)] = 139688, + [SMALL_STATE(3149)] = 139715, + [SMALL_STATE(3150)] = 139742, + [SMALL_STATE(3151)] = 139769, + [SMALL_STATE(3152)] = 139788, + [SMALL_STATE(3153)] = 139815, + [SMALL_STATE(3154)] = 139842, + [SMALL_STATE(3155)] = 139861, + [SMALL_STATE(3156)] = 139880, + [SMALL_STATE(3157)] = 139907, + [SMALL_STATE(3158)] = 139934, + [SMALL_STATE(3159)] = 139961, + [SMALL_STATE(3160)] = 139980, + [SMALL_STATE(3161)] = 140007, + [SMALL_STATE(3162)] = 140034, + [SMALL_STATE(3163)] = 140061, + [SMALL_STATE(3164)] = 140088, + [SMALL_STATE(3165)] = 140115, + [SMALL_STATE(3166)] = 140142, + [SMALL_STATE(3167)] = 140168, + [SMALL_STATE(3168)] = 140194, + [SMALL_STATE(3169)] = 140216, + [SMALL_STATE(3170)] = 140240, + [SMALL_STATE(3171)] = 140262, + [SMALL_STATE(3172)] = 140288, + [SMALL_STATE(3173)] = 140314, + [SMALL_STATE(3174)] = 140340, + [SMALL_STATE(3175)] = 140366, + [SMALL_STATE(3176)] = 140394, + [SMALL_STATE(3177)] = 140422, + [SMALL_STATE(3178)] = 140448, + [SMALL_STATE(3179)] = 140474, + [SMALL_STATE(3180)] = 140502, + [SMALL_STATE(3181)] = 140528, + [SMALL_STATE(3182)] = 140554, + [SMALL_STATE(3183)] = 140578, + [SMALL_STATE(3184)] = 140604, + [SMALL_STATE(3185)] = 140630, + [SMALL_STATE(3186)] = 140656, + [SMALL_STATE(3187)] = 140682, + [SMALL_STATE(3188)] = 140702, + [SMALL_STATE(3189)] = 140728, + [SMALL_STATE(3190)] = 140754, + [SMALL_STATE(3191)] = 140780, + [SMALL_STATE(3192)] = 140806, + [SMALL_STATE(3193)] = 140834, + [SMALL_STATE(3194)] = 140860, + [SMALL_STATE(3195)] = 140886, + [SMALL_STATE(3196)] = 140912, + [SMALL_STATE(3197)] = 140940, + [SMALL_STATE(3198)] = 140968, + [SMALL_STATE(3199)] = 140996, + [SMALL_STATE(3200)] = 141024, + [SMALL_STATE(3201)] = 141050, + [SMALL_STATE(3202)] = 141074, + [SMALL_STATE(3203)] = 141100, + [SMALL_STATE(3204)] = 141128, + [SMALL_STATE(3205)] = 141156, + [SMALL_STATE(3206)] = 141182, + [SMALL_STATE(3207)] = 141206, + [SMALL_STATE(3208)] = 141232, + [SMALL_STATE(3209)] = 141260, + [SMALL_STATE(3210)] = 141288, + [SMALL_STATE(3211)] = 141314, + [SMALL_STATE(3212)] = 141342, + [SMALL_STATE(3213)] = 141370, + [SMALL_STATE(3214)] = 141398, + [SMALL_STATE(3215)] = 141424, + [SMALL_STATE(3216)] = 141444, + [SMALL_STATE(3217)] = 141470, + [SMALL_STATE(3218)] = 141496, + [SMALL_STATE(3219)] = 141514, + [SMALL_STATE(3220)] = 141538, + [SMALL_STATE(3221)] = 141566, + [SMALL_STATE(3222)] = 141590, + [SMALL_STATE(3223)] = 141616, + [SMALL_STATE(3224)] = 141640, + [SMALL_STATE(3225)] = 141666, + [SMALL_STATE(3226)] = 141686, + [SMALL_STATE(3227)] = 141712, + [SMALL_STATE(3228)] = 141738, + [SMALL_STATE(3229)] = 141758, + [SMALL_STATE(3230)] = 141784, + [SMALL_STATE(3231)] = 141810, + [SMALL_STATE(3232)] = 141836, + [SMALL_STATE(3233)] = 141862, + [SMALL_STATE(3234)] = 141890, + [SMALL_STATE(3235)] = 141914, + [SMALL_STATE(3236)] = 141932, + [SMALL_STATE(3237)] = 141958, + [SMALL_STATE(3238)] = 141983, + [SMALL_STATE(3239)] = 142006, + [SMALL_STATE(3240)] = 142029, + [SMALL_STATE(3241)] = 142052, + [SMALL_STATE(3242)] = 142071, + [SMALL_STATE(3243)] = 142094, + [SMALL_STATE(3244)] = 142119, + [SMALL_STATE(3245)] = 142142, + [SMALL_STATE(3246)] = 142165, + [SMALL_STATE(3247)] = 142190, + [SMALL_STATE(3248)] = 142215, + [SMALL_STATE(3249)] = 142238, + [SMALL_STATE(3250)] = 142261, + [SMALL_STATE(3251)] = 142286, + [SMALL_STATE(3252)] = 142309, + [SMALL_STATE(3253)] = 142332, + [SMALL_STATE(3254)] = 142349, + [SMALL_STATE(3255)] = 142372, + [SMALL_STATE(3256)] = 142397, + [SMALL_STATE(3257)] = 142414, + [SMALL_STATE(3258)] = 142431, + [SMALL_STATE(3259)] = 142454, + [SMALL_STATE(3260)] = 142477, + [SMALL_STATE(3261)] = 142494, + [SMALL_STATE(3262)] = 142511, + [SMALL_STATE(3263)] = 142536, + [SMALL_STATE(3264)] = 142559, + [SMALL_STATE(3265)] = 142584, + [SMALL_STATE(3266)] = 142599, + [SMALL_STATE(3267)] = 142614, + [SMALL_STATE(3268)] = 142637, + [SMALL_STATE(3269)] = 142660, + [SMALL_STATE(3270)] = 142675, + [SMALL_STATE(3271)] = 142698, + [SMALL_STATE(3272)] = 142717, + [SMALL_STATE(3273)] = 142742, + [SMALL_STATE(3274)] = 142765, + [SMALL_STATE(3275)] = 142788, + [SMALL_STATE(3276)] = 142811, + [SMALL_STATE(3277)] = 142834, + [SMALL_STATE(3278)] = 142857, + [SMALL_STATE(3279)] = 142880, + [SMALL_STATE(3280)] = 142897, + [SMALL_STATE(3281)] = 142920, + [SMALL_STATE(3282)] = 142943, + [SMALL_STATE(3283)] = 142962, + [SMALL_STATE(3284)] = 142985, + [SMALL_STATE(3285)] = 143008, + [SMALL_STATE(3286)] = 143031, + [SMALL_STATE(3287)] = 143056, + [SMALL_STATE(3288)] = 143079, + [SMALL_STATE(3289)] = 143104, + [SMALL_STATE(3290)] = 143127, + [SMALL_STATE(3291)] = 143148, + [SMALL_STATE(3292)] = 143171, + [SMALL_STATE(3293)] = 143192, + [SMALL_STATE(3294)] = 143217, + [SMALL_STATE(3295)] = 143242, + [SMALL_STATE(3296)] = 143267, + [SMALL_STATE(3297)] = 143286, + [SMALL_STATE(3298)] = 143309, + [SMALL_STATE(3299)] = 143332, + [SMALL_STATE(3300)] = 143355, + [SMALL_STATE(3301)] = 143376, + [SMALL_STATE(3302)] = 143399, + [SMALL_STATE(3303)] = 143422, + [SMALL_STATE(3304)] = 143445, + [SMALL_STATE(3305)] = 143468, + [SMALL_STATE(3306)] = 143491, + [SMALL_STATE(3307)] = 143514, + [SMALL_STATE(3308)] = 143537, + [SMALL_STATE(3309)] = 143557, + [SMALL_STATE(3310)] = 143579, + [SMALL_STATE(3311)] = 143593, + [SMALL_STATE(3312)] = 143609, + [SMALL_STATE(3313)] = 143625, + [SMALL_STATE(3314)] = 143645, + [SMALL_STATE(3315)] = 143659, + [SMALL_STATE(3316)] = 143681, + [SMALL_STATE(3317)] = 143695, + [SMALL_STATE(3318)] = 143709, + [SMALL_STATE(3319)] = 143729, + [SMALL_STATE(3320)] = 143749, + [SMALL_STATE(3321)] = 143769, + [SMALL_STATE(3322)] = 143789, + [SMALL_STATE(3323)] = 143809, + [SMALL_STATE(3324)] = 143829, + [SMALL_STATE(3325)] = 143849, + [SMALL_STATE(3326)] = 143869, + [SMALL_STATE(3327)] = 143891, + [SMALL_STATE(3328)] = 143905, + [SMALL_STATE(3329)] = 143919, + [SMALL_STATE(3330)] = 143941, + [SMALL_STATE(3331)] = 143959, + [SMALL_STATE(3332)] = 143981, + [SMALL_STATE(3333)] = 144003, + [SMALL_STATE(3334)] = 144025, + [SMALL_STATE(3335)] = 144045, + [SMALL_STATE(3336)] = 144065, + [SMALL_STATE(3337)] = 144087, + [SMALL_STATE(3338)] = 144101, + [SMALL_STATE(3339)] = 144115, + [SMALL_STATE(3340)] = 144137, + [SMALL_STATE(3341)] = 144151, + [SMALL_STATE(3342)] = 144173, + [SMALL_STATE(3343)] = 144195, + [SMALL_STATE(3344)] = 144211, + [SMALL_STATE(3345)] = 144225, + [SMALL_STATE(3346)] = 144247, + [SMALL_STATE(3347)] = 144267, + [SMALL_STATE(3348)] = 144287, + [SMALL_STATE(3349)] = 144309, + [SMALL_STATE(3350)] = 144323, + [SMALL_STATE(3351)] = 144339, + [SMALL_STATE(3352)] = 144355, + [SMALL_STATE(3353)] = 144371, + [SMALL_STATE(3354)] = 144393, + [SMALL_STATE(3355)] = 144409, + [SMALL_STATE(3356)] = 144425, + [SMALL_STATE(3357)] = 144441, + [SMALL_STATE(3358)] = 144463, + [SMALL_STATE(3359)] = 144483, + [SMALL_STATE(3360)] = 144499, + [SMALL_STATE(3361)] = 144519, + [SMALL_STATE(3362)] = 144539, + [SMALL_STATE(3363)] = 144561, + [SMALL_STATE(3364)] = 144583, + [SMALL_STATE(3365)] = 144605, + [SMALL_STATE(3366)] = 144625, + [SMALL_STATE(3367)] = 144645, + [SMALL_STATE(3368)] = 144667, + [SMALL_STATE(3369)] = 144681, + [SMALL_STATE(3370)] = 144703, + [SMALL_STATE(3371)] = 144725, + [SMALL_STATE(3372)] = 144747, + [SMALL_STATE(3373)] = 144769, + [SMALL_STATE(3374)] = 144789, + [SMALL_STATE(3375)] = 144811, + [SMALL_STATE(3376)] = 144831, + [SMALL_STATE(3377)] = 144845, + [SMALL_STATE(3378)] = 144865, + [SMALL_STATE(3379)] = 144881, + [SMALL_STATE(3380)] = 144897, + [SMALL_STATE(3381)] = 144913, + [SMALL_STATE(3382)] = 144929, + [SMALL_STATE(3383)] = 144951, + [SMALL_STATE(3384)] = 144973, + [SMALL_STATE(3385)] = 144989, + [SMALL_STATE(3386)] = 145003, + [SMALL_STATE(3387)] = 145019, + [SMALL_STATE(3388)] = 145039, + [SMALL_STATE(3389)] = 145053, + [SMALL_STATE(3390)] = 145069, + [SMALL_STATE(3391)] = 145083, + [SMALL_STATE(3392)] = 145103, + [SMALL_STATE(3393)] = 145123, + [SMALL_STATE(3394)] = 145137, + [SMALL_STATE(3395)] = 145159, + [SMALL_STATE(3396)] = 145173, + [SMALL_STATE(3397)] = 145193, + [SMALL_STATE(3398)] = 145215, + [SMALL_STATE(3399)] = 145237, + [SMALL_STATE(3400)] = 145253, + [SMALL_STATE(3401)] = 145275, + [SMALL_STATE(3402)] = 145289, + [SMALL_STATE(3403)] = 145311, + [SMALL_STATE(3404)] = 145327, + [SMALL_STATE(3405)] = 145343, + [SMALL_STATE(3406)] = 145365, + [SMALL_STATE(3407)] = 145385, + [SMALL_STATE(3408)] = 145407, + [SMALL_STATE(3409)] = 145427, + [SMALL_STATE(3410)] = 145447, + [SMALL_STATE(3411)] = 145467, + [SMALL_STATE(3412)] = 145489, + [SMALL_STATE(3413)] = 145503, + [SMALL_STATE(3414)] = 145525, + [SMALL_STATE(3415)] = 145543, + [SMALL_STATE(3416)] = 145565, + [SMALL_STATE(3417)] = 145587, + [SMALL_STATE(3418)] = 145609, + [SMALL_STATE(3419)] = 145631, + [SMALL_STATE(3420)] = 145653, + [SMALL_STATE(3421)] = 145667, + [SMALL_STATE(3422)] = 145681, + [SMALL_STATE(3423)] = 145703, + [SMALL_STATE(3424)] = 145717, + [SMALL_STATE(3425)] = 145737, + [SMALL_STATE(3426)] = 145753, + [SMALL_STATE(3427)] = 145775, + [SMALL_STATE(3428)] = 145789, + [SMALL_STATE(3429)] = 145803, + [SMALL_STATE(3430)] = 145825, + [SMALL_STATE(3431)] = 145839, + [SMALL_STATE(3432)] = 145859, + [SMALL_STATE(3433)] = 145881, + [SMALL_STATE(3434)] = 145897, + [SMALL_STATE(3435)] = 145913, + [SMALL_STATE(3436)] = 145935, + [SMALL_STATE(3437)] = 145955, + [SMALL_STATE(3438)] = 145975, + [SMALL_STATE(3439)] = 145991, + [SMALL_STATE(3440)] = 146007, + [SMALL_STATE(3441)] = 146023, + [SMALL_STATE(3442)] = 146039, + [SMALL_STATE(3443)] = 146055, + [SMALL_STATE(3444)] = 146075, + [SMALL_STATE(3445)] = 146093, + [SMALL_STATE(3446)] = 146109, + [SMALL_STATE(3447)] = 146123, + [SMALL_STATE(3448)] = 146143, + [SMALL_STATE(3449)] = 146163, + [SMALL_STATE(3450)] = 146177, + [SMALL_STATE(3451)] = 146197, + [SMALL_STATE(3452)] = 146219, + [SMALL_STATE(3453)] = 146241, + [SMALL_STATE(3454)] = 146255, + [SMALL_STATE(3455)] = 146277, + [SMALL_STATE(3456)] = 146299, + [SMALL_STATE(3457)] = 146319, + [SMALL_STATE(3458)] = 146333, + [SMALL_STATE(3459)] = 146355, + [SMALL_STATE(3460)] = 146369, + [SMALL_STATE(3461)] = 146391, + [SMALL_STATE(3462)] = 146407, + [SMALL_STATE(3463)] = 146423, + [SMALL_STATE(3464)] = 146445, + [SMALL_STATE(3465)] = 146467, + [SMALL_STATE(3466)] = 146487, + [SMALL_STATE(3467)] = 146507, + [SMALL_STATE(3468)] = 146523, + [SMALL_STATE(3469)] = 146539, + [SMALL_STATE(3470)] = 146555, + [SMALL_STATE(3471)] = 146571, + [SMALL_STATE(3472)] = 146587, + [SMALL_STATE(3473)] = 146603, + [SMALL_STATE(3474)] = 146619, + [SMALL_STATE(3475)] = 146635, + [SMALL_STATE(3476)] = 146651, + [SMALL_STATE(3477)] = 146667, + [SMALL_STATE(3478)] = 146683, + [SMALL_STATE(3479)] = 146699, + [SMALL_STATE(3480)] = 146715, + [SMALL_STATE(3481)] = 146731, + [SMALL_STATE(3482)] = 146745, + [SMALL_STATE(3483)] = 146761, + [SMALL_STATE(3484)] = 146777, + [SMALL_STATE(3485)] = 146793, + [SMALL_STATE(3486)] = 146815, + [SMALL_STATE(3487)] = 146829, + [SMALL_STATE(3488)] = 146845, + [SMALL_STATE(3489)] = 146861, + [SMALL_STATE(3490)] = 146883, + [SMALL_STATE(3491)] = 146905, + [SMALL_STATE(3492)] = 146925, + [SMALL_STATE(3493)] = 146945, + [SMALL_STATE(3494)] = 146961, + [SMALL_STATE(3495)] = 146977, + [SMALL_STATE(3496)] = 146993, + [SMALL_STATE(3497)] = 147009, + [SMALL_STATE(3498)] = 147025, + [SMALL_STATE(3499)] = 147039, + [SMALL_STATE(3500)] = 147055, + [SMALL_STATE(3501)] = 147071, + [SMALL_STATE(3502)] = 147087, + [SMALL_STATE(3503)] = 147103, + [SMALL_STATE(3504)] = 147117, + [SMALL_STATE(3505)] = 147133, + [SMALL_STATE(3506)] = 147149, + [SMALL_STATE(3507)] = 147165, + [SMALL_STATE(3508)] = 147187, + [SMALL_STATE(3509)] = 147207, + [SMALL_STATE(3510)] = 147223, + [SMALL_STATE(3511)] = 147239, + [SMALL_STATE(3512)] = 147253, + [SMALL_STATE(3513)] = 147275, + [SMALL_STATE(3514)] = 147289, + [SMALL_STATE(3515)] = 147309, + [SMALL_STATE(3516)] = 147325, + [SMALL_STATE(3517)] = 147341, + [SMALL_STATE(3518)] = 147357, + [SMALL_STATE(3519)] = 147373, + [SMALL_STATE(3520)] = 147389, + [SMALL_STATE(3521)] = 147405, + [SMALL_STATE(3522)] = 147421, + [SMALL_STATE(3523)] = 147437, + [SMALL_STATE(3524)] = 147453, + [SMALL_STATE(3525)] = 147469, + [SMALL_STATE(3526)] = 147485, + [SMALL_STATE(3527)] = 147501, + [SMALL_STATE(3528)] = 147517, + [SMALL_STATE(3529)] = 147533, + [SMALL_STATE(3530)] = 147547, + [SMALL_STATE(3531)] = 147563, + [SMALL_STATE(3532)] = 147579, + [SMALL_STATE(3533)] = 147596, + [SMALL_STATE(3534)] = 147611, + [SMALL_STATE(3535)] = 147630, + [SMALL_STATE(3536)] = 147647, + [SMALL_STATE(3537)] = 147664, + [SMALL_STATE(3538)] = 147683, + [SMALL_STATE(3539)] = 147702, + [SMALL_STATE(3540)] = 147717, + [SMALL_STATE(3541)] = 147732, + [SMALL_STATE(3542)] = 147747, + [SMALL_STATE(3543)] = 147766, + [SMALL_STATE(3544)] = 147783, + [SMALL_STATE(3545)] = 147802, + [SMALL_STATE(3546)] = 147817, + [SMALL_STATE(3547)] = 147832, + [SMALL_STATE(3548)] = 147847, + [SMALL_STATE(3549)] = 147866, + [SMALL_STATE(3550)] = 147881, + [SMALL_STATE(3551)] = 147896, + [SMALL_STATE(3552)] = 147911, + [SMALL_STATE(3553)] = 147930, + [SMALL_STATE(3554)] = 147945, + [SMALL_STATE(3555)] = 147964, + [SMALL_STATE(3556)] = 147979, + [SMALL_STATE(3557)] = 147998, + [SMALL_STATE(3558)] = 148013, + [SMALL_STATE(3559)] = 148030, + [SMALL_STATE(3560)] = 148045, + [SMALL_STATE(3561)] = 148060, + [SMALL_STATE(3562)] = 148075, + [SMALL_STATE(3563)] = 148090, + [SMALL_STATE(3564)] = 148105, + [SMALL_STATE(3565)] = 148120, + [SMALL_STATE(3566)] = 148137, + [SMALL_STATE(3567)] = 148154, + [SMALL_STATE(3568)] = 148169, + [SMALL_STATE(3569)] = 148186, + [SMALL_STATE(3570)] = 148205, + [SMALL_STATE(3571)] = 148220, + [SMALL_STATE(3572)] = 148237, + [SMALL_STATE(3573)] = 148252, + [SMALL_STATE(3574)] = 148267, + [SMALL_STATE(3575)] = 148284, + [SMALL_STATE(3576)] = 148299, + [SMALL_STATE(3577)] = 148316, + [SMALL_STATE(3578)] = 148335, + [SMALL_STATE(3579)] = 148350, + [SMALL_STATE(3580)] = 148365, + [SMALL_STATE(3581)] = 148380, + [SMALL_STATE(3582)] = 148395, + [SMALL_STATE(3583)] = 148414, + [SMALL_STATE(3584)] = 148433, + [SMALL_STATE(3585)] = 148452, + [SMALL_STATE(3586)] = 148467, + [SMALL_STATE(3587)] = 148482, + [SMALL_STATE(3588)] = 148501, + [SMALL_STATE(3589)] = 148516, + [SMALL_STATE(3590)] = 148535, + [SMALL_STATE(3591)] = 148550, + [SMALL_STATE(3592)] = 148565, + [SMALL_STATE(3593)] = 148580, + [SMALL_STATE(3594)] = 148595, + [SMALL_STATE(3595)] = 148610, + [SMALL_STATE(3596)] = 148629, + [SMALL_STATE(3597)] = 148644, + [SMALL_STATE(3598)] = 148659, + [SMALL_STATE(3599)] = 148674, + [SMALL_STATE(3600)] = 148693, + [SMALL_STATE(3601)] = 148712, + [SMALL_STATE(3602)] = 148729, + [SMALL_STATE(3603)] = 148744, + [SMALL_STATE(3604)] = 148759, + [SMALL_STATE(3605)] = 148776, + [SMALL_STATE(3606)] = 148795, + [SMALL_STATE(3607)] = 148812, + [SMALL_STATE(3608)] = 148827, + [SMALL_STATE(3609)] = 148844, + [SMALL_STATE(3610)] = 148859, + [SMALL_STATE(3611)] = 148878, + [SMALL_STATE(3612)] = 148893, + [SMALL_STATE(3613)] = 148912, + [SMALL_STATE(3614)] = 148929, + [SMALL_STATE(3615)] = 148948, + [SMALL_STATE(3616)] = 148963, + [SMALL_STATE(3617)] = 148980, + [SMALL_STATE(3618)] = 148999, + [SMALL_STATE(3619)] = 149018, + [SMALL_STATE(3620)] = 149037, + [SMALL_STATE(3621)] = 149052, + [SMALL_STATE(3622)] = 149067, + [SMALL_STATE(3623)] = 149086, + [SMALL_STATE(3624)] = 149101, + [SMALL_STATE(3625)] = 149118, + [SMALL_STATE(3626)] = 149135, + [SMALL_STATE(3627)] = 149152, + [SMALL_STATE(3628)] = 149169, + [SMALL_STATE(3629)] = 149186, + [SMALL_STATE(3630)] = 149203, + [SMALL_STATE(3631)] = 149220, + [SMALL_STATE(3632)] = 149239, + [SMALL_STATE(3633)] = 149256, + [SMALL_STATE(3634)] = 149273, + [SMALL_STATE(3635)] = 149290, + [SMALL_STATE(3636)] = 149307, + [SMALL_STATE(3637)] = 149326, + [SMALL_STATE(3638)] = 149343, + [SMALL_STATE(3639)] = 149360, + [SMALL_STATE(3640)] = 149377, + [SMALL_STATE(3641)] = 149394, + [SMALL_STATE(3642)] = 149411, + [SMALL_STATE(3643)] = 149428, + [SMALL_STATE(3644)] = 149445, + [SMALL_STATE(3645)] = 149462, + [SMALL_STATE(3646)] = 149479, + [SMALL_STATE(3647)] = 149494, + [SMALL_STATE(3648)] = 149511, + [SMALL_STATE(3649)] = 149528, + [SMALL_STATE(3650)] = 149543, + [SMALL_STATE(3651)] = 149558, + [SMALL_STATE(3652)] = 149573, + [SMALL_STATE(3653)] = 149590, + [SMALL_STATE(3654)] = 149609, + [SMALL_STATE(3655)] = 149626, + [SMALL_STATE(3656)] = 149643, + [SMALL_STATE(3657)] = 149660, + [SMALL_STATE(3658)] = 149679, + [SMALL_STATE(3659)] = 149696, + [SMALL_STATE(3660)] = 149713, + [SMALL_STATE(3661)] = 149728, + [SMALL_STATE(3662)] = 149743, + [SMALL_STATE(3663)] = 149758, + [SMALL_STATE(3664)] = 149773, + [SMALL_STATE(3665)] = 149788, + [SMALL_STATE(3666)] = 149803, + [SMALL_STATE(3667)] = 149822, + [SMALL_STATE(3668)] = 149837, + [SMALL_STATE(3669)] = 149852, + [SMALL_STATE(3670)] = 149869, + [SMALL_STATE(3671)] = 149884, + [SMALL_STATE(3672)] = 149899, + [SMALL_STATE(3673)] = 149914, + [SMALL_STATE(3674)] = 149929, + [SMALL_STATE(3675)] = 149944, + [SMALL_STATE(3676)] = 149959, + [SMALL_STATE(3677)] = 149976, + [SMALL_STATE(3678)] = 149991, + [SMALL_STATE(3679)] = 150008, + [SMALL_STATE(3680)] = 150023, + [SMALL_STATE(3681)] = 150040, + [SMALL_STATE(3682)] = 150057, + [SMALL_STATE(3683)] = 150074, + [SMALL_STATE(3684)] = 150091, + [SMALL_STATE(3685)] = 150108, + [SMALL_STATE(3686)] = 150125, + [SMALL_STATE(3687)] = 150140, + [SMALL_STATE(3688)] = 150159, + [SMALL_STATE(3689)] = 150176, + [SMALL_STATE(3690)] = 150193, + [SMALL_STATE(3691)] = 150212, + [SMALL_STATE(3692)] = 150231, + [SMALL_STATE(3693)] = 150248, + [SMALL_STATE(3694)] = 150263, + [SMALL_STATE(3695)] = 150280, + [SMALL_STATE(3696)] = 150299, + [SMALL_STATE(3697)] = 150318, + [SMALL_STATE(3698)] = 150333, + [SMALL_STATE(3699)] = 150348, + [SMALL_STATE(3700)] = 150363, + [SMALL_STATE(3701)] = 150378, + [SMALL_STATE(3702)] = 150393, + [SMALL_STATE(3703)] = 150410, + [SMALL_STATE(3704)] = 150427, + [SMALL_STATE(3705)] = 150444, + [SMALL_STATE(3706)] = 150461, + [SMALL_STATE(3707)] = 150476, + [SMALL_STATE(3708)] = 150491, + [SMALL_STATE(3709)] = 150506, + [SMALL_STATE(3710)] = 150521, + [SMALL_STATE(3711)] = 150538, + [SMALL_STATE(3712)] = 150555, + [SMALL_STATE(3713)] = 150570, + [SMALL_STATE(3714)] = 150585, + [SMALL_STATE(3715)] = 150602, + [SMALL_STATE(3716)] = 150621, + [SMALL_STATE(3717)] = 150638, + [SMALL_STATE(3718)] = 150655, + [SMALL_STATE(3719)] = 150672, + [SMALL_STATE(3720)] = 150687, + [SMALL_STATE(3721)] = 150704, + [SMALL_STATE(3722)] = 150723, + [SMALL_STATE(3723)] = 150740, + [SMALL_STATE(3724)] = 150755, + [SMALL_STATE(3725)] = 150772, + [SMALL_STATE(3726)] = 150791, + [SMALL_STATE(3727)] = 150806, + [SMALL_STATE(3728)] = 150823, + [SMALL_STATE(3729)] = 150842, + [SMALL_STATE(3730)] = 150861, + [SMALL_STATE(3731)] = 150880, + [SMALL_STATE(3732)] = 150897, + [SMALL_STATE(3733)] = 150912, + [SMALL_STATE(3734)] = 150931, + [SMALL_STATE(3735)] = 150946, + [SMALL_STATE(3736)] = 150963, + [SMALL_STATE(3737)] = 150978, + [SMALL_STATE(3738)] = 150993, + [SMALL_STATE(3739)] = 151008, + [SMALL_STATE(3740)] = 151027, + [SMALL_STATE(3741)] = 151046, + [SMALL_STATE(3742)] = 151061, + [SMALL_STATE(3743)] = 151080, + [SMALL_STATE(3744)] = 151099, + [SMALL_STATE(3745)] = 151116, + [SMALL_STATE(3746)] = 151133, + [SMALL_STATE(3747)] = 151152, + [SMALL_STATE(3748)] = 151167, + [SMALL_STATE(3749)] = 151186, + [SMALL_STATE(3750)] = 151205, + [SMALL_STATE(3751)] = 151222, + [SMALL_STATE(3752)] = 151239, + [SMALL_STATE(3753)] = 151256, + [SMALL_STATE(3754)] = 151271, + [SMALL_STATE(3755)] = 151288, + [SMALL_STATE(3756)] = 151307, + [SMALL_STATE(3757)] = 151322, + [SMALL_STATE(3758)] = 151337, + [SMALL_STATE(3759)] = 151356, + [SMALL_STATE(3760)] = 151375, + [SMALL_STATE(3761)] = 151394, + [SMALL_STATE(3762)] = 151413, + [SMALL_STATE(3763)] = 151430, + [SMALL_STATE(3764)] = 151447, + [SMALL_STATE(3765)] = 151464, + [SMALL_STATE(3766)] = 151483, + [SMALL_STATE(3767)] = 151502, + [SMALL_STATE(3768)] = 151521, + [SMALL_STATE(3769)] = 151540, + [SMALL_STATE(3770)] = 151559, + [SMALL_STATE(3771)] = 151576, + [SMALL_STATE(3772)] = 151591, + [SMALL_STATE(3773)] = 151610, + [SMALL_STATE(3774)] = 151627, + [SMALL_STATE(3775)] = 151646, + [SMALL_STATE(3776)] = 151660, + [SMALL_STATE(3777)] = 151676, + [SMALL_STATE(3778)] = 151690, + [SMALL_STATE(3779)] = 151706, + [SMALL_STATE(3780)] = 151722, + [SMALL_STATE(3781)] = 151738, + [SMALL_STATE(3782)] = 151754, + [SMALL_STATE(3783)] = 151768, + [SMALL_STATE(3784)] = 151784, + [SMALL_STATE(3785)] = 151800, + [SMALL_STATE(3786)] = 151814, + [SMALL_STATE(3787)] = 151830, + [SMALL_STATE(3788)] = 151844, + [SMALL_STATE(3789)] = 151858, + [SMALL_STATE(3790)] = 151872, + [SMALL_STATE(3791)] = 151888, + [SMALL_STATE(3792)] = 151904, + [SMALL_STATE(3793)] = 151920, + [SMALL_STATE(3794)] = 151932, + [SMALL_STATE(3795)] = 151948, + [SMALL_STATE(3796)] = 151964, + [SMALL_STATE(3797)] = 151978, + [SMALL_STATE(3798)] = 151994, + [SMALL_STATE(3799)] = 152010, + [SMALL_STATE(3800)] = 152026, + [SMALL_STATE(3801)] = 152040, + [SMALL_STATE(3802)] = 152056, + [SMALL_STATE(3803)] = 152072, + [SMALL_STATE(3804)] = 152088, + [SMALL_STATE(3805)] = 152104, + [SMALL_STATE(3806)] = 152120, + [SMALL_STATE(3807)] = 152136, + [SMALL_STATE(3808)] = 152150, + [SMALL_STATE(3809)] = 152166, + [SMALL_STATE(3810)] = 152180, + [SMALL_STATE(3811)] = 152194, + [SMALL_STATE(3812)] = 152210, + [SMALL_STATE(3813)] = 152224, + [SMALL_STATE(3814)] = 152240, + [SMALL_STATE(3815)] = 152256, + [SMALL_STATE(3816)] = 152270, + [SMALL_STATE(3817)] = 152286, + [SMALL_STATE(3818)] = 152300, + [SMALL_STATE(3819)] = 152316, + [SMALL_STATE(3820)] = 152332, + [SMALL_STATE(3821)] = 152348, + [SMALL_STATE(3822)] = 152362, + [SMALL_STATE(3823)] = 152376, + [SMALL_STATE(3824)] = 152392, + [SMALL_STATE(3825)] = 152408, + [SMALL_STATE(3826)] = 152424, + [SMALL_STATE(3827)] = 152440, + [SMALL_STATE(3828)] = 152456, + [SMALL_STATE(3829)] = 152470, + [SMALL_STATE(3830)] = 152486, + [SMALL_STATE(3831)] = 152500, + [SMALL_STATE(3832)] = 152516, + [SMALL_STATE(3833)] = 152532, + [SMALL_STATE(3834)] = 152548, + [SMALL_STATE(3835)] = 152564, + [SMALL_STATE(3836)] = 152580, + [SMALL_STATE(3837)] = 152596, + [SMALL_STATE(3838)] = 152612, + [SMALL_STATE(3839)] = 152628, + [SMALL_STATE(3840)] = 152644, + [SMALL_STATE(3841)] = 152658, + [SMALL_STATE(3842)] = 152672, + [SMALL_STATE(3843)] = 152686, + [SMALL_STATE(3844)] = 152702, + [SMALL_STATE(3845)] = 152718, + [SMALL_STATE(3846)] = 152734, + [SMALL_STATE(3847)] = 152748, + [SMALL_STATE(3848)] = 152762, + [SMALL_STATE(3849)] = 152776, + [SMALL_STATE(3850)] = 152792, + [SMALL_STATE(3851)] = 152806, + [SMALL_STATE(3852)] = 152822, + [SMALL_STATE(3853)] = 152836, + [SMALL_STATE(3854)] = 152850, + [SMALL_STATE(3855)] = 152866, + [SMALL_STATE(3856)] = 152880, + [SMALL_STATE(3857)] = 152896, + [SMALL_STATE(3858)] = 152910, + [SMALL_STATE(3859)] = 152926, + [SMALL_STATE(3860)] = 152940, + [SMALL_STATE(3861)] = 152956, + [SMALL_STATE(3862)] = 152970, + [SMALL_STATE(3863)] = 152983, + [SMALL_STATE(3864)] = 152996, + [SMALL_STATE(3865)] = 153009, + [SMALL_STATE(3866)] = 153022, + [SMALL_STATE(3867)] = 153035, + [SMALL_STATE(3868)] = 153048, + [SMALL_STATE(3869)] = 153061, + [SMALL_STATE(3870)] = 153072, + [SMALL_STATE(3871)] = 153083, + [SMALL_STATE(3872)] = 153096, + [SMALL_STATE(3873)] = 153107, + [SMALL_STATE(3874)] = 153120, + [SMALL_STATE(3875)] = 153133, + [SMALL_STATE(3876)] = 153146, + [SMALL_STATE(3877)] = 153159, + [SMALL_STATE(3878)] = 153172, + [SMALL_STATE(3879)] = 153185, + [SMALL_STATE(3880)] = 153198, + [SMALL_STATE(3881)] = 153211, + [SMALL_STATE(3882)] = 153224, + [SMALL_STATE(3883)] = 153237, + [SMALL_STATE(3884)] = 153250, + [SMALL_STATE(3885)] = 153263, + [SMALL_STATE(3886)] = 153274, + [SMALL_STATE(3887)] = 153287, + [SMALL_STATE(3888)] = 153298, + [SMALL_STATE(3889)] = 153311, + [SMALL_STATE(3890)] = 153324, + [SMALL_STATE(3891)] = 153337, + [SMALL_STATE(3892)] = 153350, + [SMALL_STATE(3893)] = 153363, + [SMALL_STATE(3894)] = 153376, + [SMALL_STATE(3895)] = 153389, + [SMALL_STATE(3896)] = 153402, + [SMALL_STATE(3897)] = 153415, + [SMALL_STATE(3898)] = 153426, + [SMALL_STATE(3899)] = 153439, + [SMALL_STATE(3900)] = 153452, + [SMALL_STATE(3901)] = 153465, + [SMALL_STATE(3902)] = 153478, + [SMALL_STATE(3903)] = 153491, + [SMALL_STATE(3904)] = 153504, + [SMALL_STATE(3905)] = 153517, + [SMALL_STATE(3906)] = 153530, + [SMALL_STATE(3907)] = 153543, + [SMALL_STATE(3908)] = 153556, + [SMALL_STATE(3909)] = 153569, + [SMALL_STATE(3910)] = 153582, + [SMALL_STATE(3911)] = 153595, + [SMALL_STATE(3912)] = 153608, + [SMALL_STATE(3913)] = 153621, + [SMALL_STATE(3914)] = 153631, + [SMALL_STATE(3915)] = 153641, + [SMALL_STATE(3916)] = 153651, + [SMALL_STATE(3917)] = 153661, + [SMALL_STATE(3918)] = 153671, + [SMALL_STATE(3919)] = 153681, + [SMALL_STATE(3920)] = 153691, + [SMALL_STATE(3921)] = 153701, + [SMALL_STATE(3922)] = 153711, + [SMALL_STATE(3923)] = 153721, + [SMALL_STATE(3924)] = 153731, + [SMALL_STATE(3925)] = 153741, + [SMALL_STATE(3926)] = 153751, + [SMALL_STATE(3927)] = 153761, + [SMALL_STATE(3928)] = 153771, + [SMALL_STATE(3929)] = 153781, + [SMALL_STATE(3930)] = 153791, + [SMALL_STATE(3931)] = 153801, + [SMALL_STATE(3932)] = 153811, + [SMALL_STATE(3933)] = 153821, + [SMALL_STATE(3934)] = 153831, + [SMALL_STATE(3935)] = 153841, + [SMALL_STATE(3936)] = 153851, + [SMALL_STATE(3937)] = 153861, + [SMALL_STATE(3938)] = 153871, + [SMALL_STATE(3939)] = 153881, + [SMALL_STATE(3940)] = 153891, + [SMALL_STATE(3941)] = 153901, + [SMALL_STATE(3942)] = 153911, + [SMALL_STATE(3943)] = 153921, + [SMALL_STATE(3944)] = 153931, + [SMALL_STATE(3945)] = 153941, + [SMALL_STATE(3946)] = 153951, + [SMALL_STATE(3947)] = 153961, + [SMALL_STATE(3948)] = 153971, + [SMALL_STATE(3949)] = 153981, + [SMALL_STATE(3950)] = 153991, + [SMALL_STATE(3951)] = 154001, + [SMALL_STATE(3952)] = 154011, + [SMALL_STATE(3953)] = 154021, + [SMALL_STATE(3954)] = 154031, + [SMALL_STATE(3955)] = 154041, + [SMALL_STATE(3956)] = 154051, + [SMALL_STATE(3957)] = 154061, + [SMALL_STATE(3958)] = 154071, + [SMALL_STATE(3959)] = 154081, + [SMALL_STATE(3960)] = 154091, + [SMALL_STATE(3961)] = 154101, + [SMALL_STATE(3962)] = 154111, + [SMALL_STATE(3963)] = 154121, + [SMALL_STATE(3964)] = 154131, + [SMALL_STATE(3965)] = 154141, + [SMALL_STATE(3966)] = 154151, + [SMALL_STATE(3967)] = 154161, + [SMALL_STATE(3968)] = 154171, + [SMALL_STATE(3969)] = 154181, + [SMALL_STATE(3970)] = 154191, + [SMALL_STATE(3971)] = 154201, + [SMALL_STATE(3972)] = 154211, + [SMALL_STATE(3973)] = 154221, + [SMALL_STATE(3974)] = 154231, + [SMALL_STATE(3975)] = 154241, + [SMALL_STATE(3976)] = 154251, + [SMALL_STATE(3977)] = 154261, + [SMALL_STATE(3978)] = 154271, + [SMALL_STATE(3979)] = 154281, + [SMALL_STATE(3980)] = 154291, + [SMALL_STATE(3981)] = 154301, + [SMALL_STATE(3982)] = 154311, + [SMALL_STATE(3983)] = 154321, + [SMALL_STATE(3984)] = 154331, + [SMALL_STATE(3985)] = 154341, + [SMALL_STATE(3986)] = 154351, + [SMALL_STATE(3987)] = 154361, + [SMALL_STATE(3988)] = 154371, + [SMALL_STATE(3989)] = 154381, + [SMALL_STATE(3990)] = 154391, + [SMALL_STATE(3991)] = 154401, + [SMALL_STATE(3992)] = 154411, + [SMALL_STATE(3993)] = 154421, + [SMALL_STATE(3994)] = 154431, + [SMALL_STATE(3995)] = 154441, + [SMALL_STATE(3996)] = 154451, + [SMALL_STATE(3997)] = 154461, + [SMALL_STATE(3998)] = 154471, + [SMALL_STATE(3999)] = 154481, + [SMALL_STATE(4000)] = 154491, + [SMALL_STATE(4001)] = 154501, + [SMALL_STATE(4002)] = 154511, + [SMALL_STATE(4003)] = 154521, + [SMALL_STATE(4004)] = 154531, + [SMALL_STATE(4005)] = 154541, + [SMALL_STATE(4006)] = 154551, + [SMALL_STATE(4007)] = 154561, + [SMALL_STATE(4008)] = 154571, + [SMALL_STATE(4009)] = 154581, + [SMALL_STATE(4010)] = 154591, + [SMALL_STATE(4011)] = 154601, + [SMALL_STATE(4012)] = 154611, + [SMALL_STATE(4013)] = 154621, + [SMALL_STATE(4014)] = 154631, + [SMALL_STATE(4015)] = 154641, + [SMALL_STATE(4016)] = 154651, + [SMALL_STATE(4017)] = 154661, + [SMALL_STATE(4018)] = 154671, + [SMALL_STATE(4019)] = 154681, + [SMALL_STATE(4020)] = 154691, + [SMALL_STATE(4021)] = 154701, + [SMALL_STATE(4022)] = 154711, + [SMALL_STATE(4023)] = 154721, + [SMALL_STATE(4024)] = 154731, + [SMALL_STATE(4025)] = 154741, + [SMALL_STATE(4026)] = 154751, + [SMALL_STATE(4027)] = 154761, + [SMALL_STATE(4028)] = 154771, + [SMALL_STATE(4029)] = 154781, + [SMALL_STATE(4030)] = 154791, + [SMALL_STATE(4031)] = 154801, + [SMALL_STATE(4032)] = 154811, + [SMALL_STATE(4033)] = 154821, + [SMALL_STATE(4034)] = 154831, + [SMALL_STATE(4035)] = 154841, + [SMALL_STATE(4036)] = 154851, + [SMALL_STATE(4037)] = 154861, + [SMALL_STATE(4038)] = 154871, + [SMALL_STATE(4039)] = 154881, + [SMALL_STATE(4040)] = 154891, + [SMALL_STATE(4041)] = 154901, + [SMALL_STATE(4042)] = 154911, + [SMALL_STATE(4043)] = 154921, + [SMALL_STATE(4044)] = 154931, + [SMALL_STATE(4045)] = 154941, + [SMALL_STATE(4046)] = 154951, + [SMALL_STATE(4047)] = 154961, + [SMALL_STATE(4048)] = 154971, + [SMALL_STATE(4049)] = 154981, + [SMALL_STATE(4050)] = 154991, + [SMALL_STATE(4051)] = 155001, + [SMALL_STATE(4052)] = 155011, + [SMALL_STATE(4053)] = 155021, + [SMALL_STATE(4054)] = 155031, + [SMALL_STATE(4055)] = 155041, + [SMALL_STATE(4056)] = 155051, + [SMALL_STATE(4057)] = 155061, + [SMALL_STATE(4058)] = 155071, + [SMALL_STATE(4059)] = 155081, + [SMALL_STATE(4060)] = 155091, + [SMALL_STATE(4061)] = 155101, + [SMALL_STATE(4062)] = 155111, + [SMALL_STATE(4063)] = 155121, + [SMALL_STATE(4064)] = 155131, + [SMALL_STATE(4065)] = 155141, + [SMALL_STATE(4066)] = 155151, + [SMALL_STATE(4067)] = 155161, + [SMALL_STATE(4068)] = 155171, + [SMALL_STATE(4069)] = 155181, + [SMALL_STATE(4070)] = 155191, + [SMALL_STATE(4071)] = 155201, + [SMALL_STATE(4072)] = 155211, + [SMALL_STATE(4073)] = 155221, + [SMALL_STATE(4074)] = 155231, + [SMALL_STATE(4075)] = 155241, + [SMALL_STATE(4076)] = 155251, + [SMALL_STATE(4077)] = 155261, + [SMALL_STATE(4078)] = 155271, + [SMALL_STATE(4079)] = 155281, + [SMALL_STATE(4080)] = 155291, + [SMALL_STATE(4081)] = 155301, + [SMALL_STATE(4082)] = 155311, + [SMALL_STATE(4083)] = 155321, + [SMALL_STATE(4084)] = 155331, + [SMALL_STATE(4085)] = 155341, + [SMALL_STATE(4086)] = 155351, + [SMALL_STATE(4087)] = 155361, + [SMALL_STATE(4088)] = 155371, + [SMALL_STATE(4089)] = 155381, + [SMALL_STATE(4090)] = 155391, + [SMALL_STATE(4091)] = 155401, + [SMALL_STATE(4092)] = 155411, + [SMALL_STATE(4093)] = 155421, + [SMALL_STATE(4094)] = 155431, }; 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(3726), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1), - [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1), - [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1), + [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2990), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2962), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3047), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3049), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3081), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(751), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3003), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3658), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2970), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2941), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2973), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1260), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(84), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3195), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3717), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3854), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(806), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(809), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2837), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3652), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1487), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2779), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1456), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1542), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2755), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3651), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(416), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3231), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3283), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2985), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3279), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3366), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2719), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2809), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2788), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2788), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2423), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2422), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(116), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(116), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3754), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2423), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3514), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2305), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3156), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3036), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3728), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2978), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2979), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3042), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3040), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3030), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(710), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3003), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3658), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2970), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2941), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2973), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1260), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(84), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3195), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3717), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3854), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(806), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(809), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2837), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3652), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1487), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2779), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1456), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1542), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2755), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3651), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(416), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3231), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3283), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2985), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3279), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3366), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2719), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2809), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2788), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2788), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2423), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2422), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(116), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(116), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3754), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2423), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3514), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2305), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3156), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3036), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3766), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 66), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 66), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, .production_id = 38), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, .production_id = 38), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, .production_id = 55), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, .production_id = 55), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3152), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 93), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 93), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 125), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 125), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 39), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 39), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 81), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 81), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3163), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 116), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 116), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3177), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 23), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 23), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 93), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 93), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 35), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 35), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 79), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 79), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 40), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 40), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 105), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 105), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 40), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 40), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3176), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3177), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3295), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3294), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3293), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(797), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3200), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3877), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3191), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3189), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3201), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1371), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(63), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3421), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3943), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(4079), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(855), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(858), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3066), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3881), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1791), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3007), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1779), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(1790), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3034), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3883), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(426), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3418), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3416), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3210), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3415), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3748), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2942), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2990), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2988), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2988), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2688), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2689), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(118), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(118), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3979), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2688), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3604), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(2486), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3382), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(3240), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 41), SHIFT_REPEAT(4026), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3213), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3214), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3262), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3250), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3246), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(848), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3200), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3877), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3191), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3189), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3201), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1371), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(63), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3421), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3943), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(4079), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(855), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(858), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3066), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3881), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1791), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3007), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1779), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(1790), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3034), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3883), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(426), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3418), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3416), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3210), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3415), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3748), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2942), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2990), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2988), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2988), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2688), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2689), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(118), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(118), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3979), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2688), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3604), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(2486), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3382), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(3240), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 41), SHIFT_REPEAT(4064), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3465), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, .production_id = 38), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, .production_id = 38), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, .production_id = 55), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, .production_id = 55), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 94), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 94), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 126), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 126), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 66), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 66), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 82), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 82), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 39), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 39), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3443), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 23), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 23), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 117), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 117), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3377), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 76), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 76), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 94), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 94), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, .production_id = 38), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, .production_id = 38), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 55), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 55), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 81), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 81), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 76), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 76), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3), [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 4, .production_id = 97), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 4, .production_id = 97), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 76), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 76), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 76), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 76), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 80), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 80), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 55), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 55), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 66), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 66), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, .production_id = 38), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, .production_id = 38), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 114), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 114), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3280), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 125), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 125), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 79), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 79), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 40), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 40), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 40), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 40), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 35), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 35), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 66), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 66), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 115), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 115), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 79), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 79), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 80), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 80), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 106), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 106), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 126), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 126), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3447), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 4, .production_id = 98), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 4, .production_id = 98), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1), [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3157), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3236), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 19), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 19), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 43), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 43), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, .production_id = 30), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, .production_id = 30), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(684), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(697), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 107), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 107), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 107), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 107), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 70), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 70), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(710), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1260), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(84), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3176), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3854), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(806), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(809), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2759), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1459), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1542), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2755), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3643), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1004), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2719), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2809), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2788), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2788), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2423), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2422), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(116), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(116), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3754), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2423), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3514), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2305), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3156), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3036), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3766), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3193), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 70), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 70), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 44), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 44), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(751), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1260), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(84), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3176), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3854), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(806), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(809), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2759), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1459), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1542), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2755), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3643), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1004), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2719), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2809), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2788), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2788), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2423), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2422), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(116), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(116), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3754), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2423), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3514), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2305), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3156), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3036), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3728), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3298), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(700), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(759), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3174), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1293), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(59), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3216), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1720), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2780), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2782), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1761), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1758), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(109), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3774), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3345), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1756), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3297), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3044), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(716), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1754), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1753), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 38), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 38), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 78), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 78), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control, 1, .production_id = 4), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control, 1, .production_id = 4), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 37), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 78), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3252), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1059), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1293), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(59), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3216), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1720), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2780), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2782), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1761), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1758), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(109), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3774), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3345), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1756), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3297), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3044), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(716), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1754), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1753), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(856), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(856), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1259), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(91), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3107), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1755), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2778), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2775), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1822), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1811), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(111), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3720), - [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3342), - [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1796), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3272), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3029), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(763), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1776), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1790), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 106), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 106), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 82), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 82), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 129), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 129), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 98), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 98), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 98), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 98), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 98), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 98), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 47), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 47), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 78), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 78), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 29), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 29), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 28), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 28), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 161), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 161), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 165), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 165), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, .production_id = 4), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 162), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 162), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 26), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 26), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 4), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 157), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 157), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 147), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 147), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 146), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 146), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 27), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 27), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control, 1), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control, 1), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, .production_id = 4), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, .production_id = 4), REDUCE(sym__statement_last, 1, .production_id = 4), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, .production_id = 4), REDUCE(sym__statement_last, 1, .production_id = 4), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, .production_id = 4), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 31), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 31), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 136), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 136), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 131), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 131), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 127), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 127), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 123), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 123), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 122), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 122), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 119), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 119), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 118), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 118), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 48), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 48), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 4), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 96), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 96), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 91), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 91), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 90), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 90), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 84), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 84), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 83), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 83), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 50), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 50), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 72), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 72), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 71), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 71), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, .production_id = 4), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 68), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 68), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 69), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 69), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 30), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 30), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, .production_id = 4), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 85), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 85), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, .production_id = 4), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, .production_id = 4), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 85), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 85), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 86), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 86), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 117), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 117), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 86), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 86), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 121), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 121), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 117), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 117), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, .production_id = 4), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 121), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 121), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, .production_id = 4), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, .production_id = 4), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 42), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 42), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3211), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 42), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 42), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3137), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1283), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(77), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3232), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3855), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2753), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2754), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2757), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2757), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2303), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2304), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(120), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(120), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3759), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3432), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2272), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3200), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3021), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2598), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1282), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(86), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3150), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3841), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2804), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2777), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2820), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2820), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1144), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1145), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(14), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(14), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3748), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1144), - [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3368), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1080), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3109), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3077), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3212), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3121), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 79), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 79), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3450), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3322), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 43), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 43), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, .production_id = 30), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, .production_id = 30), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 19), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 19), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(848), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1371), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(63), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3385), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4079), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(855), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(858), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3039), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1780), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1790), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3034), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3867), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1038), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2942), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2990), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2988), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2988), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2688), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2689), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(118), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(118), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3979), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2688), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3604), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2486), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3382), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3240), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(4064), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 44), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 44), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 70), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 70), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3358), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(751), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(799), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 70), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 70), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 108), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 108), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(797), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1371), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(63), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3385), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4079), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(855), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(858), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3039), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1780), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1790), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3034), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3867), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1038), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2942), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2990), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2988), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2988), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2688), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2689), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(118), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(118), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3979), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2688), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3604), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2486), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3382), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3240), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(4026), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 108), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 108), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(786), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(823), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3514), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1401), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(48), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3314), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1835), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3038), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3043), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1844), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1843), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(108), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3999), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3571), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1867), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3507), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3306), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(789), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1868), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1869), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 38), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 38), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 78), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 78), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3409), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3392), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control, 1, .production_id = 4), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control, 1, .production_id = 4), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 37), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(929), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(929), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1150), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1401), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(48), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3314), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1835), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3038), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3043), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1844), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1843), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(108), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3999), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3571), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1867), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3507), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3306), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(789), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1868), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1869), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 78), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1381), + [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(71), + [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3327), + [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1871), + [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3005), + [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2997), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1936), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1938), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(110), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3946), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3643), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1916), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3411), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(3258), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(845), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1904), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 46), SHIFT_REPEAT(1908), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 59), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 83), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 83), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 99), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 99), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 107), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 107), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 78), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 78), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 99), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 99), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 47), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 47), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 99), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 99), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 130), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 130), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 129), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 129), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 29), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 29), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 28), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 28), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 119), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 119), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 58), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 69), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 69), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 161), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 161), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 30), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 30), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 71), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 71), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 124), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 124), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 31), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 31), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 72), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 72), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 123), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 123), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 27), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 27), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 26), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 26), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 120), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 120), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, .production_id = 4), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 162), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 162), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 147), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 147), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 165), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 165), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, .production_id = 4), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 128), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 128), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 84), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 84), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 166), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 166), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 85), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 85), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 68), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 68), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 57), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 91), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 91), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 50), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 50), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 92), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 92), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 51), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 52), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 132), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 132), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, .production_id = 4), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control, 1), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control, 1), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, .production_id = 4), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, .production_id = 4), REDUCE(sym__statement_last, 1, .production_id = 4), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, .production_id = 4), REDUCE(sym__statement_last, 1, .production_id = 4), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, .production_id = 4), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 148), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 148), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 137), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 137), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 97), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 97), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, .production_id = 4), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 48), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 48), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 144), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 144), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, .production_id = 4), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, .production_id = 4), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 122), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 122), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 42), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 42), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3437), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 87), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 87), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 86), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 86), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, .production_id = 4), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, .production_id = 4), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 122), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 122), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 42), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 42), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 118), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 118), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, .production_id = 4), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 118), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 118), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 87), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 87), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, .production_id = 4), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 86), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 86), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, .production_id = 4), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, .production_id = 4), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3366), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(1399), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(60), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3457), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(4080), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3014), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3031), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3011), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3011), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2446), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2448), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(127), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(127), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3984), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3558), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2410), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3426), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3275), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2723), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1397), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(66), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3376), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(4066), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2974), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3000), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3028), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3028), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1342), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1341), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(15), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(15), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3973), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1342), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3750), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1167), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3333), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(3274), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3319), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3347), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 45), [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 45), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3132), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 22), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3248), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(3713), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(1831), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 95), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 95), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3133), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3302), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(2713), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(2722), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(2721), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3134), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3145), - [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3139), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3135), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3154), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3148), - [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3161), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3169), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3140), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 130), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 130), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3141), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3143), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 87), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3284), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 156), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3138), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 32), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 32), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 140), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 74), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 74), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 154), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 73), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 73), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3199), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 152), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 89), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 140), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3170), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 101), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 101), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3125), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 133), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 133), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 109), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 109), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 110), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 110), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 79), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 79), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 151), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 151), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 149), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 149), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 112), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 112), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 135), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 135), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 145), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 145), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 145), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 145), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 87), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 64), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 64), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(2745), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3797), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3802), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3849), - [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3727), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 154), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 152), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 61), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 61), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 104), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 104), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 89), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 88), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 88), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 61), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 61), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 62), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 62), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 104), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 104), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, .production_id = 102), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, .production_id = 102), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 103), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 103), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 23), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 23), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3360), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 22), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(4008), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(1959), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 96), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 96), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3466), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3361), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 156), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 156), SHIFT_REPEAT(3057), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 156), SHIFT_REPEAT(1957), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 156), SHIFT_REPEAT(1958), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 88), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3308), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3387), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 90), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 155), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3321), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3436), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 153), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), + [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3365), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3508), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3456), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3391), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3448), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3424), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3373), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 32), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 32), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3431), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 131), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 131), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3492), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3406), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 157), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 74), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 74), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 73), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 73), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 141), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3334), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3396), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 141), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3335), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 102), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 102), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 134), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 134), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 136), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 136), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 150), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 150), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 152), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 152), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 113), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 113), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 79), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 79), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 110), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 110), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 111), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 111), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 146), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 146), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 146), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 146), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 53), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(2962), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), + [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3919), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3916), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3931), + [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3920), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 64), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 64), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 105), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 105), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 61), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 61), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 89), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 89), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 88), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 155), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 153), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, .production_id = 103), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, .production_id = 103), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 104), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 104), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 64), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 64), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 65), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 65), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 139), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 139), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 120), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 120), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 104), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 104), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 61), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 61), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 64), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 64), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(3838), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(3368), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1080), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(2829), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 124), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(3538), - [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(3066), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 61), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 61), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 104), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 104), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(2981), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(3418), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(2715), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 64), - [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 64), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 138), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 137), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3210), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, .production_id = 41), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(3713), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 100), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(3713), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, .production_id = 4), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, .production_id = 4), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(88), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(3323), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 138), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 137), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(3023), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(3130), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, .production_id = 41), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 92), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 24), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 148), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 148), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 100), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 101), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 33), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 33), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, .production_id = 4), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), SHIFT(3713), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, .production_id = 4), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(3713), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 138), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 137), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, .production_id = 4), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 92), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 134), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 134), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, .production_id = 41), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), - [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(3713), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1018), - [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1018), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 138), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 137), - [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, .production_id = 4), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 108), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 108), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, .production_id = 41), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, .production_id = 41), - [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 132), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 132), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 111), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 111), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 150), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 150), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, .production_id = 41), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(71), - [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(3582), - [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, .production_id = 4), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, .production_id = 4), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 121), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 121), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), - [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(3574), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 117), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 117), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, .production_id = 38), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, .production_id = 38), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 42), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 42), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 126), SHIFT_REPEAT(1286), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 126), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 86), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 86), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 85), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 42), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 42), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 121), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 121), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 117), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 117), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 115), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 115), SHIFT_REPEAT(3633), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 2), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 86), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 86), - [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 85), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 85), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 3), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), SHIFT_REPEAT(1485), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, .production_id = 4), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, .production_id = 4), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 75), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 94), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 113), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 144), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 144), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 99), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 88), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 8, .production_id = 166), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 9, .production_id = 167), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, .production_id = 4), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6234] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 88), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, .production_id = 38), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 61), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 61), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 65), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 65), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 64), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 64), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 23), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 23), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 90), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 62), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 62), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 105), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 105), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 140), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 140), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 121), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 121), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(4052), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), + [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(3750), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1167), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 64), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 64), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 61), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 61), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 125), SHIFT_REPEAT(3058), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 125), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 125), SHIFT_REPEAT(3773), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 125), SHIFT_REPEAT(3269), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 105), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 105), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 61), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 61), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 64), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 64), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 105), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 105), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 154), SHIFT_REPEAT(3228), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 154), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 154), SHIFT_REPEAT(3659), + [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 154), SHIFT_REPEAT(2941), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3375), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 139), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 138), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, .production_id = 41), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 138), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 139), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 101), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(3296), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(3310), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 93), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, .production_id = 4), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(4008), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(4008), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(68), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(3573), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 77), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, .production_id = 4), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, .production_id = 41), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, .production_id = 41), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 33), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 33), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 102), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), + [5169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1083), + [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(1083), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, .production_id = 4), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 139), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, .production_id = 41), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 138), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, .production_id = 4), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 109), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 109), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(4008), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, .production_id = 41), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, .production_id = 4), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 112), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 112), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 24), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 139), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 138), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 101), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), SHIFT(4008), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(4008), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, .production_id = 4), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 149), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 149), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 151), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 151), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, .production_id = 41), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 133), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 133), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(93), + [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), SHIFT_REPEAT(3812), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 77), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 93), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 135), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 135), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 127), SHIFT_REPEAT(1378), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 127), + [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), + [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 122), + [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 122), + [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 118), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 118), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, .production_id = 38), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, .production_id = 38), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 87), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 87), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 86), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 86), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 42), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 42), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(3857), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, .production_id = 4), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, .production_id = 4), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 42), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 42), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, .production_id = 4), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, .production_id = 4), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 75), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 2), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 118), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 118), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 122), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 122), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 116), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 116), SHIFT_REPEAT(3796), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 3), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), SHIFT_REPEAT(1781), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 87), + [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 87), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 86), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 86), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 95), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 114), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 145), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 9, .production_id = 168), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 8, .production_id = 167), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, .production_id = 4), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6270] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, .production_id = 38), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 89), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 100), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 89), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 145), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus